/* ===== SPLASH SCREEN ===== */
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: all;
}

#splash-bg {
  position: absolute;
  inset: 0;
  background: #0a0010;
  transition: opacity 0.6s ease;
}

/* Radial glow that pulses behind the letters */
#splash-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center,
      rgba(160, 0, 120, 0.35) 0%,
      rgba(229, 106, 28, 0.12) 50%,
      transparent 75%);
  animation: splashPulse 2.4s ease-in-out infinite;
}

@keyframes splashPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

#splash-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#splash-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform-origin: center center;
}

/* The row of individual letters */
#splash-letters {
  display: flex;
  align-items: center;
  gap: 0px;
  line-height: 1;
}

.sl {
  font-family: 'Inter', sans-serif;
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 900;
  letter-spacing: -4px;
  /* Individual brand gradient per letter via hue shift */
  background: linear-gradient(135deg, #7b00a8, #e056a0, #fd6e1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(60px) scale(0.6);
  display: inline-block;
  user-select: none;
  filter: drop-shadow(0 0 18px rgba(220, 60, 150, 0.5));
}

/* Stagger each letter's gradient slightly for a rainbow wave effect */
.sl[data-i="0"] {
  background: linear-gradient(135deg, #6a008a, #a020c0);
  -webkit-background-clip: text;
  background-clip: text;
}

.sl[data-i="1"] {
  background: linear-gradient(135deg, #850098, #c030b8);
  -webkit-background-clip: text;
  background-clip: text;
}

.sl[data-i="2"] {
  background: linear-gradient(135deg, #a0009c, #d040b0);
  -webkit-background-clip: text;
  background-clip: text;
}

.sl[data-i="3"] {
  background: linear-gradient(135deg, #b80090, #e050a0);
  -webkit-background-clip: text;
  background-clip: text;
}

.sl[data-i="4"] {
  background: linear-gradient(135deg, #cc0070, #f05880);
  -webkit-background-clip: text;
  background-clip: text;
}

.sl[data-i="5"] {
  background: linear-gradient(135deg, #da2040, #f87050);
  -webkit-background-clip: text;
  background-clip: text;
}

.sl[data-i="6"] {
  background: linear-gradient(135deg, #e03010, #fd8020);
  -webkit-background-clip: text;
  background-clip: text;
}

#splash-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 3.5vw, 18px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(16px);
}

/* Loading bar at bottom */
#splash-screen::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #7b00a8, #e056a0, #fd6e1c);
  z-index: 3;
  transition: none;
}

/* When splash is exiting: zoom out entire screen */
#splash-screen.splash-exit {
  pointer-events: none;
  animation: splashZoomOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes splashZoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  60% {
    opacity: 1;
    transform: scale(0.92);
  }

  100% {
    opacity: 0;
    transform: scale(0.82);
  }
}

/* Hide body scroll during splash */
body.splash-active {
  overflow: hidden;
}

/* ===== DESIGN SYSTEM ===== */
:root {
  --primary: #e56a1c;
  --primary-light: #fd922a;
  --primary-dark: #be3708;
  --secondary: #fd922a;
  --cta: #be3708;
  --bg-main: #fffefa;
  --text-main: #111111;
  --black: #0f172a;
  --dark: #1e293b;
  --gray: #4b5563;
  --soft-gray: #f3f4f6;
  --white: #ffffff;
  --border: rgba(229, 106, 28, 0.1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow: 0 20px 40px rgba(229, 106, 28, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== UTILS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mt-60 {
  margin-top: 60px;
}

.section {
  padding: 100px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ... (skipping some existing lines) ... */

/* ===== INDUSTRIES DETAILED ===== */
.industries-detailed {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.industry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.industry-row-rev {
  direction: rtl;
}

.industry-row-rev>* {
  direction: ltr;
}

.industry-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  font-size: 13px;
  backdrop-filter: blur(5px);
}

.industry-content h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
}

.industry-content p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 24px;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-main);
}

.section-sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-sub {
  color: #94a3b8;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  box-shadow: 0 4px 14px rgba(190, 55, 8, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(190, 55, 8, 0.35);
  background: var(--primary);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-main);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--soft-gray);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-block {
  display: block;
  text-align: center;
  margin-top: 24px;
  width: 100%;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: white;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 254, 250, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 106, 28, 0.05);
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(255, 254, 250, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.logo-dot {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #475569;
  transition: color 0.2s;
}

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

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  padding: 10px 0;
  font-weight: 500;
  color: #475569;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-menu .btn-primary {
  margin-top: 8px;
  justify-content: center;
}

.mobile-menu.open {
  display: flex;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
}

.blob1 {
  width: 600px;
  height: 600px;
  background: var(--white);
  top: -200px;
  right: -200px;
}

.blob2 {
  width: 400px;
  height: 400px;
  background: var(--cta);
  bottom: -100px;
  left: -100px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-text h1 .gradient-text {
  background: rgba(255, 255, 255, 0.15);
  padding: 0 15px;
  border-radius: 12px;
  display: inline-block;
  -webkit-text-fill-color: var(--white);
  -webkit-background-clip: initial;
  background-clip: initial;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-text p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.dashboard-frame {
  background: var(--dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease;
}

.dashboard-frame:hover {
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.dashboard-bar {
  background: #1E293B;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot.r {
  background: #FF5F57;
}

.dot.y {
  background: #FFBD2E;
}

.dot.g {
  background: #28C840;
}

.db-title {
  margin-left: 8px;
  font-size: 13px;
  color: #94A3B8;
  font-weight: 500;
}

.dashboard-img {
  width: 100%;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(240, 34, 124, 0.1);
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.card-sales {
  bottom: 30px;
  left: -40px;
  animation-delay: 0s;
}

.card-stock {
  top: 40px;
  right: -30px;
  animation-delay: 2s;
}

@keyframes float {

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

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

.fc-icon {
  font-size: 28px;
}

.fc-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}

.fc-label {
  font-size: 12px;
  color: var(--gray);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

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

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

/* ===== INDUSTRIES ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  cursor: default;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-sm);
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.ic-icon {
  font-size: 40px;
  margin-bottom: 12px;
  color: var(--primary);
}

.ic-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

/* ===== WHY ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(240, 34, 124, 0.1);
  border-color: rgba(240, 34, 124, 0.3);
  transform: translateY(-4px);
}

.wc-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.why-card p {
  color: #94A3B8;
  line-height: 1.7;
  font-size: 15px;
}

/* ===== FEATURES ===== */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 64px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-row-rev {
  direction: rtl;
}

.feature-row-rev>* {
  direction: ltr;
}

.feat-tag {
  display: inline-block;
  background: rgba(240, 34, 124, 0.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feature-content h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
}

.feature-content p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 24px;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feat-list li {
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
}

.feature-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-img {
  width: 100%;
  border-radius: var(--radius);
}

/* Feature mocks */
.feature-mock,
.feature-chart {
  background: var(--dark);
  color: white;
  border-radius: var(--radius);
  padding: 24px;
  font-family: var(--font);
  box-shadow: var(--shadow);
}

.mock-header,
.chart-header {
  font-size: 14px;
  font-weight: 600;
  color: #94A3B8;
  margin-bottom: 16px;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

.mock-row:last-child {
  border-bottom: none;
}

.stock-ok {
  color: #22C55E;
  font-weight: 600;
}

.stock-low {
  color: #F59E0B;
  font-weight: 600;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 160px;
  padding-top: 16px;
}

.chart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.chart-bar::before {
  content: '';
  display: block;
  width: 100%;
  height: var(--h);
  background: rgba(240, 34, 124, 0.4);
  border-radius: 6px 6px 0 0;
  transition: height 1s ease;
}

.chart-bar.active::before {
  background: var(--primary-light);
}

.chart-bar span {
  font-size: 11px;
  color: #64748B;
}

/* ===== MORE GRID ===== */
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.more-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.more-card:hover {
  background: rgba(240, 34, 124, 0.1);
  border-color: rgba(240, 34, 124, 0.3);
  transform: translateY(-4px);
}

.mc-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.more-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.more-card p {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.pricing-popular {
  border: 2px solid var(--primary);
  box-shadow: 0 12px 40px rgba(229, 106, 28, 0.15);
  transform: scale(1.04);
}

.pricing-popular:hover {
  transform: scale(1.04) translateY(-6px);
}

.pc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.pc-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.pc-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
}

.pc-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
}

.pc-setup {
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--soft-gray);
}

.pc-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  margin-bottom: 16px;
}

.pc-features li {
  font-size: 15px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.addons-section {
  margin-top: 56px;
  text-align: center;
}

.addons-section h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.addons-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.addon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.addon-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.addon-card span {
  color: var(--primary);
  font-weight: 800;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.testi-stars {
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--primary-light);
}

.testi-card p {
  color: #CBD5E1;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  color: white;
}

.testi-author small {
  font-size: 12px;
  color: #64748B;
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 760px;
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
  transition: background 0.2s ease;
}

.faq-q:hover {
  background: var(--soft-gray);
}

.faq-q.active {
  color: var(--primary);
  background: var(--soft-gray);
}

.faq-arrow {
  font-size: 14px;
  color: var(--gray);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-q.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-a.open {
  max-height: 500px;
}

.faq-a p {
  padding: 0 24px 24px;
  color: var(--gray);
  line-height: 1.7;
  font-size: 15px;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 106, 28, 0.2), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 19px;
  color: #94a3b8;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Ensure CTA buttons are always reachable and visible */
.cta-actions {
  margin-top: 48px !important;
  display: flex !important;
  justify-content: center !important;
  gap: 16px !important;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cta-actions.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .cta-actions {
    flex-direction: column !important;
    align-items: center !important;
  }

  .cta-actions a {
    width: 100%;
    max-width: 320px;
  }
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo {
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  font-size: 15px;
  color: #94a3b8;
  transition: color 0.2s;
}

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

.footer-links p {
  font-size: 15px;
  color: #94a3b8;
}

.footer-bottom {
  text-align: center;
  padding: 30px 24px;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
  font-size: 13px;
  color: #64748b;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.blog-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateY(-6px);
}

.blog-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  width: fit-content;
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: white;
}

.blog-card p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
}

.blog-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-light);
  transition: gap 0.3s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-link:hover {
  gap: 8px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .industry-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .industry-row-rev {
    direction: ltr;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dashboard-frame {
    transform: none !important;
  }

  .floating-card {
    display: none;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row,
  .feature-row-rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

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

  .pricing-popular {
    transform: none;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px !important;
  }

  .hero-text h1 {
    font-size: 32px !important;
  }

  #hero {
    padding: 120px 0 60px;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
  }

  .more-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .cta-actions .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* ===== WHATSAPP FLOATING WIDGET ===== */
#wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8888;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

/* ---- Floating Bubble ---- */
#wa-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

#wa-bubble:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}

#wa-bubble:focus-visible {
  outline: 3px solid #25D366;
  outline-offset: 4px;
}

/* Pulse ring animation */
#wa-bubble::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2.2s ease-out infinite;
}

#wa-bubble::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.2);
  animation: waPulse 2.2s ease-out infinite 0.6s;
}

@keyframes waPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  80% {
    opacity: 0;
    transform: scale(1.5);
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

/* Stop pulse while open */
#wa-bubble.open::before,
#wa-bubble.open::after {
  animation: none;
  opacity: 0;
}

#wa-bubble-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Notification badge */
#wa-notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes badgePop {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

#wa-notification-badge.hidden {
  display: none;
}

/* ---- Popup Panel ---- */
#wa-popup {
  width: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.06);
  background: #f0f2f5;
  /* Hidden by default */
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#wa-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Header */
#wa-popup-header {
  background: linear-gradient(135deg, #075E54, #128C7E);
  padding: 18px 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

#wa-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

#wa-popup-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

#wa-agent-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#wa-agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

#wa-agent-name {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

#wa-agent-status {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

#wa-status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* Chat body — WhatsApp background pattern */
#wa-chat-body {
  padding: 20px 16px;
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M0 0h100v100H0z' fill='none'/%3E%3Cpath d='M10 10l5 5-5 5 5-5-5-5zm20 0l5 5-5 5 5-5-5-5zm20 0l5 5-5 5 5-5-5-5zm20 0l5 5-5 5 5-5-5-5zm20 0l5 5-5 5 5-5-5-5zM0 30l5 5-5 5 5-5-5-5zm20 0l5 5-5 5 5-5-5-5zm20 0l5 5-5 5 5-5-5-5zm20 0l5 5-5 5 5-5-5-5zm20 0l5 5-5 5 5-5-5-5zm20 0l5 5-5 5 5-5-5-5z' fill='rgba(0,0,0,0.03)'/%3E%3C/svg%3E");
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#wa-chat-time {
  text-align: center;
  font-size: 11px;
  color: #8a9099;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 3px 10px;
  width: fit-content;
  margin: 0 auto 4px;
  font-weight: 500;
}

/* Message bubble */
#wa-msg-bubble {
  background: white;
  border-radius: 12px 12px 12px 2px;
  padding: 14px 16px 10px;
  position: relative;
  max-width: 92%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  animation: msgSlideIn 0.4s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  animation-delay: 0.15s;
}

@keyframes msgSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }

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

/* Bubble tail */
#wa-msg-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent transparent white;
  transform: rotate(180deg) scaleX(-1);
  filter: drop-shadow(-1px 0 1px rgba(0, 0, 0, 0.05));
}

#wa-msg-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #111;
  font-family: 'Inter', sans-serif;
}

#wa-msg-time {
  font-size: 11px;
  color: #8a9099;
  text-align: right;
  margin-top: 6px;
}

/* Footer */
#wa-popup-footer {
  background: white;
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

#wa-start-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

#wa-start-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

#wa-footer-note {
  text-align: center;
  font-size: 11.5px;
  color: #8a9099;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  #wa-widget {
    bottom: 18px;
    right: 16px;
  }

  #wa-popup {
    width: calc(100vw - 32px);
  }

  #wa-bubble {
    width: 54px;
    height: 54px;
  }
}