:root {
  --primary: #8b5cf6;
  --primary-dark: #7c3aed;
  --primary-light: #f3e8ff;
  --accent: #ec4899;
  --accent-dark: #db2777;
  --green: #10b981;
  --blue: #3b82f6;

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

  --brand-blue: #0066ff;
  --brand-green: #00d084;
}

* {
  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;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

nav {
  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;
  padding: 1.25rem 0;
  transition: box-shadow 0.25s ease;
}

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

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

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

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

.brand-n2n {
  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;
}

.brand-commerce {
  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-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--gray-800);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s;
}

.nav-links a:hover::after {
  width: 100%;
}

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

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

.btn-nav {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  text-decoration: none;
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

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

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

.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-links a.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--gray-100);
}

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

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

.hero {
  margin-top: 80px;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #e0ecff 0%, #f8e8ff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 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-visual {
  position: relative;
}

.visual-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.visual-ctas {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.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);
  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: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--dark);
  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: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 14px;
  font-weight: 800;
  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(139, 92, 246, 0.35);
}

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

.btn-secondary {
  background: white;
  color: var(--gray-800);
  padding: 1.25rem 2.5rem;
  border-radius: 14px;
  font-weight: 800;
  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: 800;
  color: var(--primary);
  line-height: 1;
}

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

.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);
  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: 800;
  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);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 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: 800;
  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(--green);
  font-weight: 800;
  flex-shrink: 0;
}

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

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

.benefit-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

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

.benefit-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.benefit-content p {
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 1.1rem;
}

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

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

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

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

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

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

.use-case-card p {
  color: var(--gray-700);
  line-height: 1.7;
}

.integration-section {
  padding: 6rem 2rem;
  background: linear-gradient(90deg, #07122a 0%, #0b1426 100%);
  color: white;
}
.integration-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  padding: 2.25rem;
  border-radius: 18px;
}

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

.integration-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.integration-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0;
  justify-items: stretch;
  grid-column: 2;
}

.integration-logo {
  background: white;
  color: var(--dark);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  min-height: 84px;
  box-shadow: 0 12px 30px rgba(3, 7, 18, 0.5);
}

.integration-logo:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(3, 7, 18, 0.6);
}

/* Responsive: stack columns on smaller screens */
@media (max-width: 900px) {
  .integration-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }

  .integration-logos {
    grid-column: 1;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .integration-content .btn-white {
    margin: 0 auto;
  }
}

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

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

.pricing-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.4s;
}

.pricing-card.featured {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.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: white;
  color: var(--primary);
}

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

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

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

.pricing-card.featured .pricing-price span {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-description {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-card.featured .pricing-description {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.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(--green);
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
  color: white;
}

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

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

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

.pricing-card.featured .btn-pricing:hover {
  background: var(--gray-100);
}

.testimonials {
  padding: 6rem 2rem;
  background: white;
}

.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: #f59e0b;
  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: 800;
  color: white;
  font-size: 1.2rem;
}

.author-info h4 {
  font-weight: 800;
  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: 800;
  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: 900;
  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,
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

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

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

  .features-grid,
  .testimonials-grid,
  .use-cases-grid,
  .integration-content {
    grid-template-columns: 1fr;
  }

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

  .pricing-card.featured {
    transform: none;
  }
}
/* ==========================================================
   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;
  }
}


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