: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;
  --zoho-green: #00d166;
  --zoho-dark: #0f172a;
  /* Same as --dark */
  --zoho-grey: #f8fafc;
}

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');

* {
  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:
    linear-gradient(135deg, rgba(0, 0, 0, 0.80) 0%, rgba(8, 8, 16, 0.90) 100%),
    url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(14, 14, 14, 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(-15px);
  box-shadow: 0 25px 50px rgba(0, 102, 255, 0.15);
}

.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: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
}

.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: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  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: rgba(0, 102, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
}

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

.use-case-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 102, 255, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
}

.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);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.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;
  }
}



/* 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 {
  /* YOUR EXISTING STYLES (colors, border, etc.) ARE HERE */

  /* --- CRITICAL FIXES FOR ANCHOR TAGS --- */
  display: inline-block;
  /* Essential! Converts link to a block element */
  text-align: center;
  /* Essential! Centers text inside the wider block */
  box-sizing: border-box;
  /* Precaution: Include padding/border in width */
  vertical-align: middle;
  /* Precaution: Keep icons aligned with text */
  text-decoration: none !important;
  /* Ensure underlining is fully killed */
}

.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;
  }
}


/* --- Section Container --- */
.framer-theme-cta {
  background-color: #000000;
  /* Pure black background */
  position: relative;
  overflow: hidden;
  padding: 120px 5%;
  font-family: "Inter", system-ui, sans-serif;
  color: #ffffff;
}

/* --- The Intense Bottom Blue Glow --- */
.bottom-blue-glow {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(ellipse at bottom,
      rgba(0, 102, 255, 0.6) 0%,
      rgba(0, 0, 0, 0) 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  /* So it doesn't block clicks */
}

/* --- Layout Grid --- */
.framer-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 2;
  /* Keeps content above the glow */
}

/* --- Left Column: Content --- */
.framer-cta-content {
  flex: 1;
  max-width: 480px;
  text-align: left;
}

.framer-cta-content h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.framer-cta-content p {
  font-size: 1.15rem;
  color: #a1a1aa;
  /* Light slate gray */
  line-height: 1.6;
  margin-bottom: 40px;
}

/* --- Buttons --- */
/* --- Buttons --- */
.framer-cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
  /* Required for z-index to take effect */
  z-index: 10;
  /* You can increase this number (e.g., 50 or 99) if it's still hidden behind something else */
}

/* Primary White Pill */
.framer-btn-primary {
  background-color: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.framer-btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Secondary Dark Pill */
.framer-btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  /* Translucent dark fill */
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.framer-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* --- Right Column: Visual & Mockup --- */
.framer-cta-visual {
  flex: 1.2;
  position: relative;
}

.dashboard-mockup-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  /* Slightly fades out the right edge like the screenshot */
  mask-image: linear-gradient(to right, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
}

/* --- Floating Collaborative Cursors --- */
.floating-cursor {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.cursor-label {
  background-color: #0066ff;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Position them to mimic the screenshot */
.cursor-claudia {
  top: 15%;
  left: -10%;
  animation: float1 6s ease-in-out infinite;
}

.cursor-alex {
  top: 45%;
  left: -5%;
  animation: float2 5s ease-in-out infinite reverse;
}

/* Subtle floating animation */
@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .framer-cta-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .framer-cta-content {
    max-width: 100%;
    text-align: center;
  }

  .framer-cta-content h2 {
    font-size: 3rem;
  }

  .framer-cta-buttons {
    justify-content: center;
    z-index: 999;
    position: relative;
  }

  .dashboard-mockup-img {
    mask-image: none;
    /* Remove fade on mobile */
    -webkit-mask-image: none;
  }

  .cursor-claudia {
    top: -20px;
    left: 10%;
  }

  .cursor-alex {
    top: 50%;
    left: -10px;
  }
}

@media (max-width: 480px) {
  .framer-cta-content h2 {
    font-size: 2.2rem;
  }

  .framer-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

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

/* --- The 20% Bottom Blue Overlay --- */
.bottom-blue-glow {
  position: absolute;
  bottom: 0;
  /* Locks it to the very bottom edge */
  left: 0;
  width: 100%;
  height: 30%;
  /* Exactly 20% of the CTA section's height */

  /* Smooth gradient: Solid vibrant blue at the bottom fading to transparent at the top */
  background: linear-gradient(to top,
      rgba(0, 102, 255, 0.8) 0%,
      rgba(0, 102, 255, 0) 100%);

  z-index: 1;
  /* Increased z-index so it overlays on top of the bottom of the dashboard image */
  pointer-events: none;
  /* Ensures users can still click buttons underneath it */
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}


/* Zoho-inspired Features Page Layout */
.features-hero {
  padding: 8rem 2rem 4rem;
  /* Premium Dark Blue Theme Gradient over a theme-related background image */
  background: linear-gradient(135deg, rgba(10, 15, 29, 0.85), rgba(0, 51, 153, 0.85)), url('../Assets/mystoreimg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Optional: Add a subtle glow/overlay effect */
.features-hero::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.features-hero .product-label {
  margin: 0 auto 1.5rem;
  color: #e5f0ff;
  /* Light primary color */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.features-hero h1 {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  position: relative;
}

.features-hero .highlight {
  color: #4da6ff;
  /* Lighter, glowing blue for contrast against dark background */
}

.category-nav-wrapper {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: rgba(240, 247, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1.5px solid #dbeafe;
}

.category-nav-wrapper h2 {
  margin: 0 auto 1rem;
  display: block;
  text-align: center;
  max-width: 900px;
  font-size: 1.9rem;
  color: #0066ff;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.category-nav {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1300px) {
  .category-nav {
    justify-content: center;
  }
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-link {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0052cc;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 1.5px solid #dbeafe;
  background: #ffffff;
}

.category-link:hover {
  color: #ffffff;
  border-color: #0066ff;
  background: #0066ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.25);
}

.category-link.active {
  background: linear-gradient(135deg, #0066ff, #0052cc);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.35);
  transform: translateY(-1px);
}

.category-link.active:hover {
  background: linear-gradient(135deg, #0052cc, #003d99);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 102, 255, 0.45);
  transform: translateY(-3px);
}

.feature-section {
  padding: 6rem 2rem;
}

.feature-section:nth-child(even) {
  background: var(--gray-100);
}

.feature-section:nth-child(even) .feature-visual {
  order: -1;
}

.feature-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.feature-content {
  flex: 1;
}

.feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-visual img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: float-img 6s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}

.feature-visual img.switching {
  opacity: 0;
  transform: scale(0.95);
}

@keyframes float-img {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.feature-header {
  margin: 0 auto 3rem auto;
  text-align: center;
  max-width: 1200px;
}

.feature-header .script-font {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.feature-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.feature-item:hover h3 i,
.feature-item:hover h3 {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.feature-item:hover {
  transform: translateY(-20px);
  box-shadow: 0 40px 80px rgba(0, 102, 255, 0.15);
  border-color: var(--primary);
}

.feature-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dark);
}

.feature-item p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
}

.feature-sublist {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-sublist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.accordion-item:hover {
  border-color: #0066ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.06);
}

.accordion-header {
  padding: 0.875rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  width: 100%;
}

.accordion-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: all 0.3s ease;
}

.accordion-item:hover .accordion-title {
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accordion-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gray-400);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s ease;
  flex-shrink: 0;
}

.accordion-item:hover .accordion-arrow {
  stroke: #0066ff;
}

.accordion-item.active {
  border-color: #0066ff;
  background: #fcfdfe;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.08);
}

.accordion-item.active .accordion-title {
  background: linear-gradient(135deg, #0052cc 0%, #0033aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  stroke: #0052cc;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.25rem;
}

.accordion-item.active .accordion-content {
  max-height: 800px;
  opacity: 1;
  padding-bottom: 1rem;
}

.accordion-content p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

/* --- Flip Card Redesign (Main Features Page) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  perspective: 1500px;
  max-width: 1250px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.feature-card {
  background: transparent;
  width: 100%;
  height: 420px;
  /* Slightly taller for better proportions */
  perspective: 1500px;
  cursor: pointer;
  border: none !important;
  padding: 0 !important;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.feature-card:hover .flip-card-inner,
.feature-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
  /* Centered content */
  align-items: center;
  /* Center horizontally */
}

.flip-card-front {
  z-index: 2;
  justify-content: center;
}

.flip-card-back {
  background: #ffffff;
  transform: rotateY(180deg);
  justify-content: center;
}

/* --- Professional Feature Styling & Theme Sync --- */
.card-gif-wrapper {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s ease;
}

.card-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* Clean shadow for professional depth */
  filter: drop-shadow(0 4px 10px rgba(0, 102, 255, 0.15));
}

/* Sophisticated Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

.feature-card .card-gif {
  animation: float 6s ease-in-out infinite;
}

/* Hover Interaction */
.feature-card:hover .card-gif {
  transform: scale(1.1) translateY(-5px);
  filter: drop-shadow(0 15px 30px rgba(0, 102, 255, 0.3));
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  text-align: center !important;
}

.feature-card:hover h3 {
  color: var(--primary);
  transform: scale(1.02);
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 90%;
  text-align: center !important;
}

/* Back Styling */
.flip-card-back h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.5rem;
  text-align: center !important;
  width: 100%;
}

.feature-card ul {
  list-style: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.feature-card ul li {
  padding: 0.6rem 0 !important;
  font-size: 0.92rem !important;
  color: #444 !important;
  text-align: center !important;
  width: 100% !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  display: block !important;
}

/* Remove bullets for the clean centered look */
.feature-card ul li::before {
  display: none !important;
}

/* Hover Effect */
.feature-card:hover .flip-card-inner {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px) rotateY(0deg);
  /* Slight lift-up on hover before flip if needed, but keeping it simple */
}

.feature-card:hover .flip-card-inner {
  transform: rotateY(180deg) translateY(-10px);
}

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

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-card {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-item {
    height: auto;
    padding: 1.75rem;
  }
}

@media (max-width: 1024px) {
  .feature-container {
    flex-direction: column;
    gap: 3rem;
  }

  .feature-header {
    text-align: center;
  }

  .feature-header h2 {
    font-size: 2.2rem;
  }

  .feature-visual {
    display: none !important;
  }

  .feature-section:nth-child(odd) .feature-visual {
    display: none !important;
  }
}

.mobile-accordion-img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  margin: 1.2rem auto 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  animation: fadeInImg 0.4s ease forwards;
}

@keyframes fadeInImg {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1025px) {
  .row-reverse-desktop {
    flex-direction: row-reverse;
  }
}

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

/* SEO Grid */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.seo-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.seo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-light);
}

.seo-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

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

/* =============================================
   PERFECT FOR — Image Cards with Slide-In Panel
   ============================================= */

.use-cases {
  padding: 6rem 2rem;
  background: linear-gradient(160deg, #0a0f1e 0%, #0d1b3e 50%, #071428 100%);
  position: relative;
  overflow: hidden;
}

.use-cases::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.use-cases::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 208, 132, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.use-cases .section-header {
  position: relative;
  z-index: 2;
}

.use-cases .section-label {
  background: rgba(0, 102, 255, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(0, 102, 255, 0.3);
}

.use-cases .section-title {
  color: #ffffff;
}

.use-cases .section-description {
  color: rgba(255, 255, 255, 0.6);
}

/* Grid */
.pf-grid {
  max-width: 1400px;
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Card wrapper */
.pf-card {
  position: relative;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Image layer — always visible */
.pf-image-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.pf-card:hover .pf-image-layer,
.pf-card.active-touch .pf-image-layer {
  transform: scale(1.06);
}

/* Dark gradient overlay on image */
.pf-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(6, 14, 38, 0.85) 0%,
      rgba(6, 14, 38, 0.5) 50%,
      rgba(6, 14, 38, 0.2) 100%);
  transition: opacity 0.4s ease;
}

.pf-card:hover .pf-image-overlay,
.pf-card.active-touch .pf-image-overlay {
  opacity: 0.6;
}

/* Text content on top of image */
.pf-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  z-index: 2;
  transition: transform 0.4s ease, opacity 0.35s ease;
}

.pf-card:hover .pf-image-content,
.pf-card.active-touch .pf-image-content {
  transform: translateX(-20px);
  opacity: 0;
  pointer-events: none;
}

/* Industry badge pill */
.pf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.pf-image-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
}

.pf-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

/* Hover hint row */
.pf-hover-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 500;
  animation: pfHintPulse 2.2s ease-in-out infinite;
}

@keyframes pfHintPulse {

  0%,
  100% {
    opacity: 0.55;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}

/* ── Reveal Panel (slides in from right) ── */
.pf-reveal-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #0e1e4a 0%, #091530 100%);
  border-left: 1px solid rgba(0, 102, 255, 0.3);
  transform: translateX(100%);
  transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pf-reveal-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pf-card:hover .pf-reveal-panel,
.pf-card.active-touch .pf-reveal-panel {
  transform: translateX(0);
}

.pf-panel-inner {
  padding: 1.25rem 1.5rem;
  width: 100%;
}

/* Panel icon */
.pf-panel-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  animation: none;
}

.pf-panel-inner h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.3px;
}

.pf-panel-inner>p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

/* Feature list */
.pf-feature-list {
  list-style: none;
  margin-bottom: 1rem;
}

.pf-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.25rem 0;
  font-weight: 500;
}

.pf-feature-list li::before {
  content: '✓';
  color: #00d084;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* CTA button inside panel */
.pf-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.3rem;
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
  margin-top: 0.25rem;
}

.pf-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.55);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pf-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .pf-card {
    height: 340px;
  }
}

@media (max-width: 720px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }

  .pf-card {
    height: 320px;
  }

  .pf-image-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .pf-card {
    height: 320px;
  }

  .pf-panel-inner {
    padding: 1rem 1.25rem;
  }

  .pf-panel-icon {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .pf-panel-inner h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .pf-panel-inner>p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .pf-feature-list {
    margin-bottom: 0.75rem;
  }

  .pf-feature-list li {
    font-size: 0.75rem;
    padding: 0.2rem 0;
  }

  .pf-cta-btn {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }
}

/* -- Global Feature Cards (HD Image Wrapper) -- */
.card-hd-wrapper {
  width: 90px !important;
  height: 90px !important;
  min-width: 90px;
  min-height: 90px;
  max-width: 90px;
  max-height: 90px;
  margin: 0 auto 1.5rem auto !important;
  position: relative;
  perspective: 1000px;
  flex-shrink: 0;
  display: block;
}

.card-hd-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: floatImage 4s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

/* Hover effects for devices that support hover */
@media (hover: hover) {

  .feature-card:hover .card-hd-image,
  .use-case-card:hover .card-hd-image,
  .benefit-item:hover .card-hd-image {
    transform: scale(1.15) rotateY(10deg) rotateX(5deg) translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.4) !important;
    animation-play-state: paused !important;
  }
}

/* Fallback/Active effects for touch devices (Mobile) */
@media (max-width: 768px) {
  .card-hd-image {
    /* Slightly smaller shadow on mobile */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  }

  .feature-card:active .card-hd-image,
  .use-case-card:active .card-hd-image,
  .benefit-item:active .card-hd-image {
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3) !important;
    animation-play-state: paused !important;
  }
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* =============================================
   REFINED MOBILE LAYOUTS FOR DETAIL FEATURES
   ============================================= */
@media (max-width: 768px) {
  .feature-section {
    padding: 4rem 1.25rem;
  }

  .feature-container {
    gap: 2rem;
  }

  .feature-visual img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .category-nav-wrapper {
    top: 70px;
    padding: 0.75rem 0;
  }

  .category-nav-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 30px;
    background: linear-gradient(to left, rgba(240, 247, 255, 0.95), transparent);
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  .features-hero {
    padding: 5rem 1rem 3rem;
  }

  .features-hero h1 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
  }

  .features-hero .hero-description {
    font-size: 1.05rem !important;
    line-height: 1.5;
  }

  .feature-header h2 {
    font-size: 1.8rem;
  }

  .feature-header .script-font {
    font-size: 1.5rem;
  }

  .feature-item {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .feature-item h3 {
    font-size: 1.2rem;
  }

  .feature-sublist li {
    font-size: 0.88rem;
  }

  .category-link {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
  }
}

/* mycode*/
/* ===== Desktop Only Hover ===== */
@media (hover: hover) and (pointer: fine) {

  .accordion-item:hover .accordion-content {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    margin-top: 12px;
  }

  .accordion-item:hover .accordion-arrow {
    transform: rotate(180deg);
  }
}

/* ===== Mobile & Tablet ===== */
@media (hover: none),
(pointer: coarse) {

  /* Disable hover behavior */
  .accordion-item:hover .accordion-content {
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    margin-top: 0 !important;
  }

  .accordion-item.active .accordion-content {
    max-height: 1000px !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 12px !important;
  }

  .accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
  }
}
/* ===== Accessibility Focus Styles ===== */

.accordion-item:focus-within .accordion-content {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  margin-top: 12px;
}
.accordion-item:focus-within .accordion-arrow {
  transform: rotate(180deg);
}
.pos-dropdown {
  position: relative;
  display: inline-block;
  margin-top: 1.2rem;
}

.pos-dropdown-btn {
  background: #0066f5;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.dropdown-icon {
  margin-left: 8px;
}

.pos-dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  border: 1px solid #d8e6ff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 99;
  overflow: hidden;
}

.pos-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #005bd8;
  text-decoration: none;
  font-weight: 600;
}

.pos-dropdown-menu a:hover {
  background: #eef6ff;
}

.pos-dropdown:hover .pos-dropdown-menu {
  display: block;
}

@media (min-width: 1024px) {
  .category-nav {
    overflow: visible !important;
  }
}

/* POS SaaS Showcase Section Layout styling */
.pos-showcase-wrapper {
  padding: 4rem 0 6rem 0;
  background: var(--white);
}

.pos-showcase-section {
  padding: 6rem 2rem;
  width: 100%;
}

.pos-showcase-section:nth-child(even) {
  background: var(--gray-100);
}

.pos-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6rem;
}

.pos-showcase-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pos-showcase-visual {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pos-showcase-visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease;
}

.pos-showcase-visual img:hover {
  transform: translateY(-8px);
}

/* Alternating layout order */
.pos-showcase-section.content-right .pos-showcase-container {
  flex-direction: row-reverse;
}

.showcase-label {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.showcase-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.showcase-description {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.showcase-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2rem;
  margin-top: 2rem;
}

.showcase-features li {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.showcase-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
}

/* Responsive layout adjustments */
@media (max-width: 1024px) {
  .pos-showcase-container {
    gap: 4rem;
  }
  .showcase-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .pos-showcase-section {
    padding: 4rem 1.5rem;
  }
  .pos-showcase-container {
    flex-direction: column !important;
    gap: 3rem;
  }
  .pos-showcase-visual {
    width: 100%;
  }
  .showcase-heading {
    font-size: 2.0rem;
  }
  .showcase-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}