:root {
  --primary: #0066ff;
  --primary-dark: #0052cc;
  --primary-light: #e6f0ff;
  --accent: #00d084;
  --accent-dark: #00b872;
  --orange: #ff6b35;
  --purple: #8b5cf6;

  --dark: #0f172a;
  --gray-900: #1e293b;
  --gray-800: #334155;
  --gray-700: #475569;
  --gray-600: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --white: #ffffff;
}

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

body {
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.hero {
  margin-top: 80px;
  padding: 5rem 2rem;
  background: #061b3d;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 208, 132, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-content {
  max-width: 700px;
  margin-bottom: 3rem;
}

.product-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-label::before {
  content: "🛍️";
}

.hero h1 {
  font-family: "Inter", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: -2px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-stats {
  margin-top: 0;
}

.hero-stats .stat-number {
  color: var(--white);
}

.hero-stats .stat-label {
  color: rgba(255, 255, 255, 0.75);
}

.hero-visual {
  position: relative;
}

.visual-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.hero-store-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.45);
}

.btn-secondary {
  background: white;
  color: var(--gray-800);
  padding: 1.25rem 2.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
  border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
}

.hero .stat-number {
  color: var(--white);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

.hero .stat-label {
  color: rgba(255, 255, 255, 0.75);
}

.features-section {
  padding: 6rem 2rem;
  background: white;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-blue);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--dark);
  letter-spacing: -1.5px;
}

.section-description {
  font-size: 1.25rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid var(--gray-200);
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.12);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 1.05rem;
}

.feature-card ul {
  list-style: none;
  margin-top: 1rem;
}

.feature-card ul li {
  padding: 0.5rem 0;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-card ul li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.how-it-works {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--gray-100) 0%, white 100%);
}

.steps-container {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-300);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: white;
  border: 4px solid var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.step h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.step p {
  color: var(--gray-700);
  line-height: 1.6;
}

.use-cases {
  padding: 6rem 2rem;
  background: white;
}

.use-cases-grid {
  max-width: 1400px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.use-case-card {
  background: linear-gradient(135deg, var(--gray-100) 0%, white 100%);
  border-radius: 24px;
  padding: 3rem;
  border: 2px solid transparent;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.use-case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-blue) 0%,
    var(--accent) 100%
  );
  transform: scaleX(0);
  transition: transform 0.4s;
}

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

.use-case-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.use-case-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.use-case-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--accent) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.use-case-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.use-case-description {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.use-case-features {
  list-style: none;
}

.use-case-features li {
  padding: 0.75rem 0;
  color: var(--gray-800);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-weight: 500;
}

.use-case-features li::before {
  content: "→";
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.use-case-cta {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: absolute;
  right: 1.75rem;
  bottom: 2.5rem;
  margin: 0;
}

.use-case-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.12);
}

@media (max-width: 820px) {
  .use-case-cta {
    position: static;
    margin-top: 1.25rem;
    display: inline-block;
  }
}

/* Slightly inset specific CTA (e.g. Fashion card) so it doesn't overlap rounded corner */
.use-case-cta--inset {
  right: 2.6rem;
  bottom: 2.6rem;
}

@media (max-width: 820px) {
  .use-case-cta--inset {
    right: auto;
    bottom: auto;
  }
}



.pricing-section {
  padding: 6rem 2rem;
  background: var(--dark);
  color: white;
}

.pricing-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.4s;
}

.pricing-card.featured {
  background: white;
  color: var(--dark);
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 208, 132, 0.3);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-badge {
  background: var(--primary-blue);
}

.pricing-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price span {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gray-400);
}

.pricing-card.featured .pricing-price span {
  color: var(--gray-600);
}

.pricing-description {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.featured .pricing-description {
  border-bottom-color: var(--gray-200);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
  color: var(--primary);
}

.btn-pricing {
  width: 100%;
  background: white;
  color: var(--primary);
  padding: 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.btn-pricing:hover {
  background: var(--primary);
  color: white;
  border-color: white;
}

.pricing-card.featured .btn-pricing {
  background: var(--primary);
  color: white;
}

.pricing-card.featured .btn-pricing:hover {
  background: var(--primary-dark);
}

.testimonials {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, white 0%, var(--gray-100) 100%);
}

.testimonials-grid {
  max-width: 1400px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
  color: var(--orange);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.2rem;
}

.author-info h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.final-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.final-cta p {
  font-size: 1.35rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--primary);
  padding: 1.25rem 3rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-cases-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 0;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .features-grid,
  .testimonials-grid,
  .steps-container {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
  }
  .cta-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .pricing-card.featured {
    transform: none;
  }

  .visual-card {
    padding: 1rem;
  }

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

  .cta-buttons .btn-white,
  .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 4rem 1.25rem;
  }

  .hero-description {
    font-size: 1.15rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-white {
    width: 100%;
    justify-content: center;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .final-cta h2 {
    font-size: 2.5rem;
  }
}

/* ==========================================================
   NAVBAR STYLES (Exact Match to Home Page)
   ========================================================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-text {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: baseline;
}

.brand-logo {
  display: inline-block;
  background: linear-gradient(135deg, #8be9ff 0%, #1a73ff 45%, #0037ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
/* 1. Base state for the navigation links */
.nav-menu a {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative; /* CRITICAL: This allows the underline to position itself correctly */
}

/* 2. Text color changes to light blue on hover */
.nav-menu a:hover {
  color: var(--primary); /* This pulls the #0066FF blue from your variables */
}

/* 3. The invisible underline (starts at width: 0) */
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px; /* Positions the line just below the text */
  left: 0;
  width: 0; /* Starts hidden */
  height: 2px; /* Thickness of the underline */
  background-color: var(--primary); /* Color of the underline */
  transition: width 0.3s ease; /* Smoothly animates the width */
}

/* 4. The underline expands to 100% when you hover over the link */
.nav-menu a:hover::after {
  width: 100%;
}
/* --- Gradient Hover Button --- */
.btn-gradient-hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition:
    color 0.4s ease,
    transform 0.2s ease;
}

.btn-gradient-hover.primary {
  background: linear-gradient(
    90deg,
    rgba(0, 8, 144, 1) 0%,
    rgba(16, 0, 255, 1) 22%,
    rgba(86, 255, 247, 1) 100%
  );
  box-shadow: 0 4px 15px rgba(16, 0, 255, 0.2);
}

.btn-gradient-hover::after {
  content: "";
  background: white;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s ease;
}

.btn-gradient-hover:hover {
  color: rgb(0, 0, 0);
  transform: translateY(-2px);
}

.btn-gradient-hover:hover::after {
  transform: skewX(-45deg) scale(1, 1);
}

/* --- Mobile Toggle Button --- */
.nav-toggle {
  display: none;
  border: 1px solid var(--gray-200);
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-lines span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
}
/* 5. The Active State (Stays highlighted on the current page) */
.nav-menu a.active {
  color: #0066ff;
}

.nav-menu a.active::after {
  width: 100%;
}

/* --- Mobile Menu Panel --- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(92vw, 420px);
  height: 100%;
  background: white;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-nav-close {
  border: none;
  background: transparent;
  font-size: 44px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-800);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  padding: 0;
}

.mobile-nav-links a {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  color: var(--gray-900);
  border: 1px solid var(--gray-200);
}

.mobile-nav-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.mobile-nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-cta .btn-gradient-hover {
  width: 100%;
}

/* --- JavaScript Toggle Classes --- */
body.nav-open {
  overflow: hidden;
}
body.nav-open .mobile-nav {
  pointer-events: auto;
}
body.nav-open .mobile-nav-overlay {
  opacity: 1;
}
body.nav-open .mobile-nav-panel {
  transform: translateX(0);
}

/* --- Media Queries for Responsive Nav --- */
@media (max-width: 968px) {
  .nav-menu {
    display: none;
  }
  .hide-on-mobile {
    display: none !important;
  }
  .nav-toggle {
    display: flex;
  }
}

/* Build Manage Marketing Phase */

/* ==========================================================
   NEXT-GEN SCROLLING ECOSYSTEM
   ========================================================== */
.nextgen-lifecycle-section {
  position: relative;
  padding: 8rem 2rem;
  background-color: #f8fafc;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

/* Ambient Background Glows */
.nextgen-bg-glows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float-orb 10s infinite alternate ease-in-out;
}
.orb-blue {
  top: 10%;
  left: -10%;
  background: rgba(0, 102, 255, 0.15);
}
.orb-purple {
  bottom: 10%;
  right: -10%;
  background: rgba(139, 92, 246, 0.15);
  animation-delay: -5s;
}

@keyframes float-orb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.nextgen-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 6rem;
}

/* --- The Card Stack --- */
.nextgen-card-stack {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem; /* Large spacing for clean scrolling */
}

.ng-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  padding: 4rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 3rem;
  transition:
    transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.5s;

  /* 3D Perspective Setup */
  transform: perspective(1000px) rotateX(2deg);
}

.ng-card:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(0, 102, 255, 0.15);
}

/* --- Card Content --- */
.ng-card-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.ng-stage-pill {
  display: inline-block;
  padding: 6px 16px;
  background: #e0e7ff;
  color: #4338ca;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.ng-stage-pill.purple {
  background: #f3e8ff;
  color: #7e22ce;
}
.ng-stage-pill.green {
  background: #dcfce7;
  color: #15803d;
}

.ng-card-content h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.ng-card-content p {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.6;
}

/* --- macOS Style UI Windows --- */
.ng-card-visual {
  width: 100%;
  display: flex;
  justify-content: center;
}

.mac-window {
  width: 100%;
  max-width: 800px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.glow-shadow-purple {
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
  border-color: #ddd6fe;
}

.mac-header {
  background: #f1f5f9;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}
.mac-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.mac-dot.red {
  background: #ff5f56;
}
.mac-dot.yellow {
  background: #ffbd2e;
}
.mac-dot.green {
  background: #27c93f;
}
.mac-title {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  pointer-events: none;
}

.mac-body {
  padding: 2rem;
  height: 350px;
  background: #fafafa;
  position: relative;
}

/* --- THE GIF INTEGRATION --- */
.gif-container {
  padding: 0 !important;
  background: #000;
  height: auto;
  display: flex;
}
.dashboard-gif {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- Animated Visuals for Build & Market --- */
.wire-nav {
  height: 30px;
  background: #e2e8f0;
  border-radius: 6px;
  margin-bottom: 20px;
  width: 100%;
}
.wire-hero {
  height: 120px;
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  border-radius: 12px;
  margin-bottom: 20px;
}
.pulse-bg {
  animation: pulse-opacity 3s infinite;
}
.wire-grid {
  display: flex;
  gap: 15px;
}
.wire-item {
  height: 100px;
  background: #f1f5f9;
  border-radius: 8px;
  flex: 1;
  border: 2px dashed #cbd5e1;
}

.float-up-1 {
  animation: float-card 4s infinite ease-in-out;
}
.float-up-2 {
  animation: float-card 4s infinite ease-in-out 1s;
}
.float-up-3 {
  animation: float-card 4s infinite ease-in-out 2s;
}

.chart-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 100%;
  padding-top: 50px;
}
.chart-bar {
  width: 15%;
  background: linear-gradient(to top, #00d084, #0066ff);
  border-radius: 8px 8px 0 0;
}

.grow-1 {
  height: 30%;
  animation: grow-bar 3s infinite alternate;
}
.grow-2 {
  height: 50%;
  animation: grow-bar 3s infinite alternate 0.5s;
}
.grow-3 {
  height: 40%;
  animation: grow-bar 3s infinite alternate 1s;
}
.grow-4 {
  height: 80%;
  animation: grow-bar 3s infinite alternate 1.5s;
}
.grow-5 {
  height: 100%;
  animation: grow-bar 3s infinite alternate 2s;
}

/* Keyframes */
@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse-opacity {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
@keyframes grow-bar {
  0% {
    transform: scaleY(0.8);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(1.1);
    transform-origin: bottom;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ng-card {
    padding: 2rem;
  }
  .ng-card-content h3 {
    font-size: 1.8rem;
  }
  .mac-body {
    height: 250px;
  }
}

/* ==========================================================
   CUSTOM ANIMATED CIRCUIT (MANAGE SECTION)
   ========================================================== */

/* Remove the GIF container styles from the previous version if they exist */
.circuit-container {
  padding: 0;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

/* --- Center Text Styling --- */
.circuit-center-text {
  position: absolute;
  top: 15%;
  text-align: center;
  z-index: 10;
}
.center-subtitle {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a855f7;
  display: block;
  margin-bottom: 5px;
}
.center-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
.text-gradient-purple {
  background: linear-gradient(to right, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- The Track Layout --- */
.circuit-track {
  width: 100%;
  max-width: 700px;
  position: relative;
  margin-top: 40px; /* Push down to make room for center text */
}

/* SVG Path Animation */
.circuit-path {
  width: 100%;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

/* The flowing energy line */
.track-energy {
  stroke-dasharray: 400; /* Total length of the path (approx) */
  stroke-dashoffset: 400; /* Start hidden */
  animation: flow-energy 5s linear infinite;
}

@keyframes flow-energy {
  0% {
    stroke-dashoffset: 400;
  }
  100% {
    stroke-dashoffset: -400;
  } /* Move completely through and out */
}

/* --- The Nodes (Steps) --- */
.circuit-nodes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 80%; /* Bring nodes in slightly from the edges */
  margin: 0 auto;
  height: 200px; /* Match SVG height */
}

.node-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* The actual circle */
.c-node {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 3px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  z-index: 3;
  /* Base animation state */
  transform: scale(0.9);
  opacity: 0.6;
}
.c-icon {
  font-size: 1.5rem;
}

/* The text below the circle */
.node-label {
  margin-top: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  top: 100%;
  width: 120px;
  /* Base animation state */
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

/* --- Node Pulse Animations --- */
/* Each node pulses as the energy line passes it. Total cycle is 5s. */
.node-wrapper {
  animation: pulse-sequence 5s linear infinite;
}

.node-1 {
  animation-delay: 0s;
}
.node-2 {
  animation-delay: 1s;
}
.node-3 {
  animation-delay: 2s;
}
.node-4 {
  animation-delay: 3s;
}
.node-5 {
  animation-delay: 4s;
}

/* The animation targets the wrapper, but we style the children 
  based on the animation state using CSS variables (simulated here with keyframes) 
*/
@keyframes pulse-sequence {
  0%,
  20%,
  100% {
    /* Inactive State */
  }
  5%,
  15% {
    /* Active State (Spikes quickly then fades) */
  }
}

/* Because animating children inside a parent's keyframe is tricky in pure CSS without preprocessors, 
  we apply specific keyframes to the node and label directly for precise control.
*/

.node-1 .c-node {
  animation: node-activate 5s linear infinite 0s;
}
.node-1 .node-label {
  animation: label-activate 5s linear infinite 0s;
}

.node-2 .c-node {
  animation: node-activate 5s linear infinite 0.8s;
}
.node-2 .node-label {
  animation: label-activate 5s linear infinite 0.8s;
}

.node-3 .c-node {
  animation: node-activate 5s linear infinite 1.6s;
}
.node-3 .node-label {
  animation: label-activate 5s linear infinite 1.6s;
}

.node-4 .c-node {
  animation: node-activate 5s linear infinite 2.4s;
}
.node-4 .node-label {
  animation: label-activate 5s linear infinite 2.4s;
}

.node-5 .c-node {
  animation: node-activate 5s linear infinite 3.2s;
}
.node-5 .node-label {
  animation: label-activate 5s linear infinite 3.2s;
}

@keyframes node-activate {
  0%,
  20%,
  100% {
    transform: scale(0.9);
    border-color: #e2e8f0;
    opacity: 0.6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  5%,
  10% {
    transform: scale(1.15);
    border-color: #a855f7;
    opacity: 1;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
  }
}

@keyframes label-activate {
  0%,
  20%,
  100% {
    opacity: 0.5;
    color: #64748b;
  }
  5%,
  10% {
    opacity: 1;
    color: #0f172a;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .circuit-nodes {
    width: 95%;
  }
  .c-node {
    width: 45px;
    height: 45px;
  }
  .c-icon {
    font-size: 1.2rem;
  }
  .node-label {
    font-size: 0.7rem;
    width: 80px;
  }
  .center-title {
    font-size: 1.2rem;
  }
}
/* ==========================================================
   ULTRA-CLEAN SAAS BUILDER & TEMPLATE GALLERY (LIGHT THEME)
   ========================================================== */

.lux-templates-section {
  background-color: #f8fafc; /* Very soft, clean slate background */
  padding: 8rem 2rem;
  font-family: "Inter", sans-serif;
  color: #0f172a;
  border-top: 1px solid #e2e8f0;
}

.lux-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* --- Clean Header Styling --- */
.lux-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.lux-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0066ff;
  margin-bottom: 20px;
  background: #e6f0ff;
  padding: 6px 16px;
  border-radius: 50px;
}

.lux-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

.lux-gradient-text {
  background: linear-gradient(135deg, #0066ff 0%, #00d084 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lux-description {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.7;
}

/* --- LIGHT MODE SOFTWARE MOCKUP --- */
.builder-preview-container {
  margin-bottom: 6rem;
}

.software-mockup-window {
  background: #ffffff !important;
  border-radius: 16px;
  border: 1px solid #e2e8f0 !important;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.02) !important;
  overflow: hidden;
}

.sw-header {
  background: #ffffff !important;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e2e8f0 !important;
}
.sw-dots {
  display: flex;
  gap: 8px;
  flex: 1;
}
.sw-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.sw-dots .red {
  background: #ff5f56;
}
.sw-dots .yellow {
  background: #ffbd2e;
}
.sw-dots .green {
  background: #27c93f;
}
.sw-title {
  flex: 2;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.sw-body {
  display: flex;
  height: 600px;
  background: #f8fafc;
}

/* Light Sidebar Controls */
.sw-sidebar {
  width: 300px;
  background: #ffffff !important;
  border-right: 1px solid #e2e8f0 !important;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: #0f172a !important;
  border-bottom: 1px solid #e2e8f0 !important;
  padding-bottom: 15px;
}

.control-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569 !important;
  margin-bottom: 12px;
}

.color-picker-row {
  display: flex;
  gap: 12px;
}
.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
  border: 1px solid #cbd5e1 !important;
}
.color-swatch:hover {
  transform: scale(1.1);
}
.color-swatch.active {
  box-shadow:
    0 0 0 3px #ffffff,
    0 0 0 5px #0066ff !important;
  border: none !important;
}

.toggle-switch {
  width: 44px;
  height: 24px;
  background: #0066ff !important;
  border-radius: 12px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.toggle-knob {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  right: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.toggle-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a !important;
  margin-left: 10px;
}

.dropdown-fake {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0f172a !important;
  cursor: pointer;
}

.sidebar-action {
  margin-top: auto;
}
.publish-btn {
  width: 100%;
  padding: 14px;
  background: #0066ff !important;
  color: #ffffff !important;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}
.publish-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
}

/* Light Canvas */
.sw-canvas {
  flex: 1;
  background: #f1f5f9 !important;
  padding: 25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.canvas-website-preview {
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1599643478524-fb66f70d00f8?q=80&w=1200&auto=format&fit=crop")
    center/cover no-repeat;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.canvas-website-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.canvas-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  color: white;
}
.c-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 4px;
  font-weight: 700;
}
.c-links {
  display: flex;
  gap: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.c-cart {
  font-size: 1.2rem;
}

.canvas-hero {
  position: relative;
  z-index: 2;
  margin: auto;
  text-align: center;
  color: white;
}
.c-hero-text {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.c-hero-sub {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #f8fafc;
}
.c-hero-btn {
  background: #ffffff;
  color: #0f172a;
  border: none;
  padding: 14px 36px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s;
  border-radius: 50px;
}
.c-hero-btn:hover {
  transform: scale(1.05);
}

/* --- Industry Filter Bar (Light) --- */
.lux-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 4rem;
}
.lux-filter-btn {
  background: #ffffff;
  color: #64748b;
  border: 1px solid #cbd5e1;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.lux-filter-btn:hover {
  border-color: #0066ff;
  color: #0066ff;
}
.lux-filter-btn.active {
  background: #0066ff;
  color: #ffffff;
  border-color: #0066ff;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.2);
}

/* --- The Frosted Glass Gallery --- */
.lux-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* --- The Cards --- */
.lux-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}
.lux-card-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.lux-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lux-card:hover .lux-card-image img {
  transform: scale(1.06);
}

/* --- The Hover Overlay (Frosted White Glass) --- */
.lux-card-overlay {
  position: absolute;
  inset: auto 0 0 0; /* Bottom only */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lux-card:hover .lux-card-overlay {
  transform: translateY(0);
}

.lux-industry-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0066ff;
  margin-bottom: 8px;
  display: block;
}
.lux-theme-name {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.5px;
}
.lux-badge {
  font-size: 0.65rem;
  background: #e6f0ff;
  color: #0066ff;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}

.lux-preview-btn {
  background: #0f172a;
  color: #ffffff;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.lux-preview-btn:hover {
  background: #0066ff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
  transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
  .sw-body {
    flex-direction: column;
    height: auto;
  }
  .sw-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e2e8f0 !important;
  }
  .sw-canvas {
    height: 400px;
    padding: 15px;
  }
  .c-links {
    display: none;
  }
  .c-hero-text {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .lux-title {
    font-size: 2.5rem;
  }
  .lux-gallery {
    grid-template-columns: 1fr;
  }
  .lux-card-overlay {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.95);
  } /* Always visible on mobile */
}

/* --- THE BROWSER WINDOW EFFECT FOR CARDS --- */

.lux-card-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  padding-top: 28px; /* Creates space for the browser bar */
}

.mini-browser-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 28px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  z-index: 2;
}

.mini-browser-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mini-browser-header .red {
  background: #ff5f56;
}
.mini-browser-header .yellow {
  background: #ffbd2e;
}
.mini-browser-header .green {
  background: #27c93f;
}

/* Forces the image to look like a website hero section */
.lux-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* Anchors the image to the top like a webpage */
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lux-card:hover .lux-card-image img {
  transform: scale(1.06);
}

footer {
  background: var(--gray-900);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--secondary-green);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

@media (max-width: 1200px) {
  .hero-container,
  .integration-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-description {
    max-width: 100%;
  }
  .hero-ctas {
    justify-content: center;
  }
  .trust-stats {
    justify-content: center;
  }
}

@media (max-width: 968px) {
  .products-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }
  .integration-visual {
    margin-left: 0; /* This removes the giant margin on small screens */
    margin: 0 auto; /* This perfectly centers the container instead */
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .nav-menu {
    display: none;
  }
  .cta-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3.75rem 1.25rem 3.25rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1.15rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .product-title {
    font-size: 2rem;
  }
  .btn-primary,
  .btn-secondary,
  .btn-white {
    width: 100%;
    justify-content: center;
  }
  .hero-ctas,
  .final-cta-buttons {
    flex-direction: column;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap");

/* Root Container - Deep Dark Theme */
.n2n-footer-wrapper {
  background-color: #080808;
  color: #ffffff;
  padding: 60px 0 30px 0;
  font-family: "Inter", sans-serif;
  border-top: 1px solid #1a1a1a;
  line-height: 1.5;
}

.f-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo & Branding */
.f-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-n2n {
  font-weight: 800;
  font-size: 1.8rem;
  color: #ffffff;
  letter-spacing: -1px;
}
.logo-commerce {
  font-weight: 800;
  font-size: 1.8rem;
  color: #007bff;
}
.f-branding p {
  color: #666;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* App Buttons */
.f-app-group {
  display: flex;
  gap: 12px;
}
.app-btn {
  display: flex;
  align-items: center;
  background: #141414;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #222;
  text-decoration: none;
  transition: 0.3s;
}
.app-btn:hover {
  border-color: #007bff;
  background: #1a1a1a;
}
.app-ico {
  font-size: 1.4rem;
  margin-right: 10px;
}
.app-info span {
  display: block;
  font-size: 0.6rem;
  color: #777;
  text-transform: uppercase;
}
.app-info strong {
  font-size: 0.85rem;
  color: #eee;
}

/* Navigation Grid */
.f-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 40px 0;
}
.nav-col h5 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.nav-col a {
  display: block;
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: 0.2s;
}
.nav-col a:hover {
  color: #007bff;
  padding-left: 5px;
}
.f-email {
  color: #fff !important;
  font-weight: 600;
  text-decoration: underline !important;
}

/* Bottom Bar */
.f-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
/* Base text color */
.f-legal-info p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
}

/* Base link state (Makinus) */
.f-legal-info p a {
  color: #888; /* Slightly lighter than the text */
  transition: color 0.3s ease;
  font-weight: 600;
}

/* Hover state - This will now work */
.f-legal-info p a:hover {
  color: #ffffff !important;
}
.legal-links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.legal-links a {
  color: #777;
  text-decoration: none;
  font-size: 0.8rem;
}
.legal-links a:hover {
  color: #fff;
}
.dot {
  width: 3px;
  height: 3px;
  background: #333;
  border-radius: 50%;
}

/* Social Icons - CENTERED WHITE ICONS */
.f-socials {
  display: flex;
  gap: 10px;
}
.s-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.s-circle svg {
  width: 20px;
  height: 20px;
  fill: white;
} /* Forces white center icons */

.fb {
  background: #1877f2;
}
.ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.yt {
  background: #ff0000;
}
.li {
  background: #0077b5;
}
.s-circle:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}

/* --- Professional Enterprise WhatsApp Float --- */
.wa-pro-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex; /* Ensures perfect SVG centering */
  align-items: center;
  justify-content: center;
  opacity: 0.9;

  /* Smooth easing curve for high-end feel */
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Natural depth shadowing */
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1))
    drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.wa-pro-float:hover {
  opacity: 1;
  /* Restrained lift—no cartoonish bouncing */
  transform: translateY(-4px) scale(1.03);

  /* Expanding shadow on hover to simulate floating */
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.15))
    drop-shadow(0 20px 25px rgba(0, 0, 0, 0.2));
}
/* Mobile Fix */
@media (max-width: 768px) {
  .f-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .f-header,
  .f-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .f-app-group,
  .f-socials {
    justify-content: center;
  }
}
