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

:root {
  --bg-dark: #071630;
  --bg-card: #0d1a30;
  --bg-card2: #101c30;
  --bg-deep: #001c43;
  --accent-cyan: #00e5ff;
  --accent-teal: #00bcd4;
  --accent-green: #12B886;
  --accent-green-dark: #166A65;
  --accent-gold: #f59e0b;
  --accent-red: #ef4444;
  --text-primary: #e8f0fe;
  --text-secondary: #8fafc8;
  --border: rgba(0, 229, 255, 0.12);
  --glow: 0 0 30px rgba(0, 229, 255, 0.15);
  --font: 'Inter', sans-serif;
  --gradient-accent: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
  --z-base: 100;
  --z-sticky: 1000;
  --z-overlay: 2000;
  --z-sidebar: 2500;
  --z-toggle: 3000;
}

html {
  scroll-behavior: smooth;
}

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

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(180deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(18, 184, 134, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  border-radius: 5px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: rgba(18, 184, 134, 0.1);
  transform: translateY(-2px);
}

/* ── NAVBAR ── */
.mobile-toggle {
  display: none;
  position: fixed;
  top: 7px;
  right: 20px;
  z-index: var(--z-toggle);
  width: 45px;
  height: 45px;
  background: rgba(13, 26, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: rgba(7, 22, 48, 0.97);
  backdrop-filter: blur(20px);
  z-index: var(--z-sidebar);
  padding: 10px 13px 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar.open {
  transform: translateX(-300px);
}

.mobile-toggle .line {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-toggle.active .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-toggle.active .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: calc(var(--z-overlay) + 50);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sidebar-header {
  margin-bottom: 40px;
  padding-left: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-links a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 12px 10px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-links a:hover {
  color: #fff;
  padding-left: 20px;
}

.sidebar-links a.active {
  color: #139678;
  font-weight: 700;
  border-left: 3px solid #139678;
  padding-left: 20px;
}

nav:not(.mobile-sidebar) {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 54px;
  background: rgba(13, 26, 48, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-logo-icon {
  width: 51px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon img {
  width: 120%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a.active {
  background: linear-gradient(145deg, #2a3547, #151e2b);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.nav-links a:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-signin {
  background: linear-gradient(180deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-signin:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.mobile-topbar {
  display: contents;
}

.nav-logo-fixed {
  position: fixed;
  top: 25px;
  left: 5%;
  z-index: calc(var(--z-sticky) + 1);
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font);
  font-weight: 700;
  color: #fff;
}

.logo-text {
  font-size: 1.1rem;
}

/* ── URGENCY BANNER ── */
.urgency-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: calc(var(--z-sticky) - 1);
  background: linear-gradient(90deg, #0d1a2e 0%, #0f2a1a 50%, #0d1a2e 100%);
  border-bottom: 1px solid rgba(18, 184, 134, 0.3);
  padding: 9px 20px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.urgency-banner strong {
  color: var(--accent-green);
}

.urgency-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: inline-block;
}

@keyframes pulse {

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

  50% {
    opacity: 0.4;
    transform: scale(0.8)
  }
}

/* ── HERO ── */
.hero {
  min-height: 115vh;
  padding: 160px 5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% 10%, #0a2a6e 0%, #061535 35%, #040d22 65%, #07306a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 100, 255, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 25% 55%, rgba(0, 60, 200, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 75% 55%, rgba(0, 80, 220, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 184, 134, 0.1);
  border: 1px solid rgba(18, 184, 134, 0.25);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 28px;
  font-size: 0.78rem;
  color: var(--accent-green);
  letter-spacing: 0.04em;
}

.hero-badge::before {
  content: '●';
  font-size: 0.5rem;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 780px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 9px;
}

.hero-sub {
  color: rgba(232, 240, 254, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 14px;
}

.hero-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 6px;
  padding: 6px 16px;
  margin-bottom: 32px;
  font-size: 0.78rem;
  color: #fca5a5;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-trust i {
  color: var(--accent-green);
  font-size: 0.7rem;
}

/* ── HERO MOCKUP ── */
.hero-mockup {
  position: relative;
  margin-top: 60px;
  aspect-ratio: 1300 / 800;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 100%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow:clip;
}

@media (min-width: 1440px) {
  .hero-mockup {
    width: 1440px;
    margin-left: calc(-720px + 50%);
    margin-right: calc(-720px + 50%);
  }
}

.screen-wrap {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.15);
  transform-origin: top left;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 100, 255, 0.15);
}

.screen-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-center {
  width: 57.38%;
  height: 52%;
  left: 24.5%;
  top: 33%;
  z-index: 3;
  transform: matrix(0.53, -0.4, 0.82, 0.64, 0, 0) scale(0.9);
}

.screen-left {
  width: 58.07%;
  height: 53.12%;
  left: 24%;
  top: 36.75%;
  z-index: 3;
  transform: matrix(0.76, 0.59, -0.82, 0.57, 0, 0);
}

.screen-right {
  width: 47.69%;
  height: 43.5%;
  left: 71.3%;
  top: 37.75%;
  z-index: 2;
  transform: matrix(0.79, 0.62, -0.79, 0.61, 0, 0);
}

/* ── LOGOS TICKER ── */
.logos-section {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: ticker 20s linear infinite;
  width: max-content;
}

.logos-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  height: 30px;
  width: auto;
  opacity: 1;
  transition: opacity 0.3s, filter 0.3s;
}

.logo-item:hover img {
  opacity: 1;
  filter: grayscale(100%) brightness(300%);
}

/* ── SECTIONS COMMON ── */
section {
  padding: 90px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-pill {
  display: inline-block;
  background: rgba(18, 184, 134, 0.1);
  border: 1px solid rgba(18, 184, 134, 0.25);
  color: var(--accent-green);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 576px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── WHAT IS EPG CRM ── */
.what-section {
  background: var(--bg-deep);
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.what-crm {
  width: 115%;
  border: 1px solid #0fc2a1;
  border-radius: 8px;
}

.what-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.what-text h2 span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.what-text p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.what-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.what-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.what-bullets li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.what-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.what-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}

.what-card:hover {
  border-color: rgba(18, 184, 134, 0.35);
  transform: translateX(4px);
}

.what-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(18, 184, 134, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.what-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.what-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* ── PAIN SECTION ── */
.pain-section {
  background: var(--bg-dark);
}

.pain-intro {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}

.pain-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}

.pain-intro p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.pain-card {
  background: linear-gradient(135deg, #0d1a2e 0%, #0a1525 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(239, 68, 68, 0.08);
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fca5a5;
}

.pain-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── FUNCTIONALITIES ── */
.features-section {
  background: var(--bg-deep);
}

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

.feat-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(18, 184, 134, 0.3);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.feat-card:hover .feat-card-bg {
  transform: scale(1.05);
}

.feat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 22, 48, 0.95) 0%, rgba(7, 22, 48, 0.6) 50%, rgba(7, 22, 48, 0.2) 100%);
  z-index: 1;
}

.feat-card-content {
  position: relative;
  z-index: 2;
}

.feat-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.feat-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--bg-dark);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.how-step {
  text-align: center;
  padding: 0 20px;
}

.how-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(18, 184, 134, 0.08);
  border: 2px solid rgba(18, 184, 134, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.how-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── WHO IT'S FOR ── */
.for-section {
  background: var(--bg-deep);
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.for-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  cursor: default;
}

.for-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 184, 134, 0.4);
  background: rgba(18, 184, 134, 0.05);
}

.for-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.for-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.for-card p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── PRICING ── */
.pricing-section {
  background: var(--bg-dark);
}

.pricing-notice {
  text-align: center;
  background: rgba(18, 184, 134, 0.06);
  border: 1px solid rgba(18, 184, 134, 0.2);
  border-radius: 10px;
  padding: 14px 24px;
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.pricing-notice strong {
  color: var(--accent-green);
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--accent-green);
  background: rgba(18, 184, 134, 0.04);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-5px);
}

.pricing-card:not(.popular):hover {
  transform: translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent-green), #00bcd4);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.pricing-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-price .amount {
  font-size: 2.8rem;
  font-weight: 800;
}

.pricing-price .period {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-primary);
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pricing-features li.dim {
  color: var(--text-secondary);
}

.pricing-features li.dim::before {
  content: '—';
  color: #3a4a60;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ── NEW PRICING LAYOUT ── */
.pricing-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 850px;
  margin: 0 auto;
}

.pricing-price-split {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.pricing-price-split>div {
  flex: 1;
}

.price-label-small {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  display: block;
}

.addons-container {
  max-width: 850px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.addon-card {
  background: rgba(13, 26, 48, 0.6);
  padding: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.addon-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.addon-price {
  color: var(--accent-green);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.addon-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .pricing-grid-2 {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .pricing-price-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ── DEMO / VISUAL SECTION ── */
.demo-section {
  background: var(--bg-deep);
}

.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.demo-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}

.demo-tab.active,
.demo-tab:hover {
  background: rgba(18, 184, 134, 0.12);
  border-color: rgba(18, 184, 134, 0.4);
  color: var(--accent-green);
}

.demo-window {
  max-width: 900px;
  margin: 0 auto;
  background: #0a1525;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 100, 255, 0.1);
}

.demo-window-bar {
  background: #0d1a2e;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.demo-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.demo-dot.red {
  background: #ef4444;
}

.demo-dot.yellow {
  background: #f59e0b;
}

.demo-dot.green {
  background: #22c55e;
}

.demo-window-title {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.demo-pane {
  display: none;
}

.demo-pane.active {
  display: block;
}

.demo-pane img {
  width: 100%;
  display: block;
}

.demo-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d1a2e 0%, #0a1f3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.demo-placeholder-icon {
  font-size: 3rem;
  opacity: 0.3;
}

/* ── FINAL CTA ── */
.cta-final {
  position: relative;
  background: #071630;
  overflow: hidden;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  max-width: 700px;
}

.cta-inner h2 em {
  font-style: normal;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-inner p {
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 10px;
  line-height: 1.7;
}

.cta-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.8rem;
  color: #fca5a5;
  margin-bottom: 32px;
}

.cta-inner .btn-primary {
  font-size: 1rem;
  padding: 16px 40px;
}

/* ── CONTACT (SVG BG) ── */
.contact-section {
  position: relative;
  width: 100%;
  min-height: 863px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #071630;
  overflow: hidden;
}

.contact-bg-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
}

.contact-pill {
  background: rgba(18, 184, 134, 0.15);
  color: #12B886;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(18, 184, 134, 0.3);
  font-family: var(--font);
}

.contact-heading {
  font-family: var(--font);
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

.btn-cta-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #3b4b66;
  color: #fff;
  font-family: var(--font);
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 10px 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-cta-submit:hover {
  background: #4a5c7c;
  transform: translateY(-2px);
}

.cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #12B886;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: bold;
}

/* ── FOOTER ── */
footer {
  background: #001c43;
  border-top: 1px solid var(--border);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.83rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: var(--text-secondary);
  font-size: 0.83rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--accent-green);
}

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

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
}

.social-btn i {
  font-size: 1rem;
}

.social-btn:hover {
  background: rgba(18, 184, 134, 0.15);
  color: var(--accent-green);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 15px;
  font-size: small;
  color: var(--text-secondary);
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SOCIAL PROOF BAR ── */
.social-proof {
  background: rgba(18, 184, 134, 0.04);
  border-top: 1px solid rgba(18, 184, 134, 0.12);
  border-bottom: 1px solid rgba(18, 184, 134, 0.12);
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.proof-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.proof-label {
  font-size: 0.75rem;
  line-height: 1.3;
}

/* ── COUNTDOWN TIMER ── */
.countdown-bar {
  background: linear-gradient(90deg, #0f1f10, #0d1a2e, #0f1f10);
  border: 1px solid rgba(18, 184, 134, 0.25);
  border-radius: 12px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 580px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.countdown-digits {
  display: flex;
  gap: 8px;
  align-items: center;
}

.countdown-unit {
  background: #0d1a2e;
  border: 1px solid rgba(18, 184, 134, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  min-width: 52px;
}

.countdown-unit .num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-green);
  display: block;
  line-height: 1;
}

.countdown-unit .unit-label {
  font-size: 0.62rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 3px;
}

.countdown-colon {
  color: var(--accent-green);
  font-size: 1.2rem;
  font-weight: 700;
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  position: fixed;
  top: 25px;
  right: 5%;
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 26, 48, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: border-color 0.3s;
}

.lang-switcher:hover {
  border-color: rgba(18, 184, 134, 0.4);
}

.lang-switcher > i {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.04em;
}

.lang-chevron {
  font-size: 0.65rem;
  color: var(--text-secondary);
  transition: transform 0.25s ease;
}

.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 140px;
  background: rgba(13, 26, 48, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  list-style: none;
  padding: 6px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li {
  padding: 9px 14px;
  border-radius: 9px;
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lang-dropdown li:hover {
  background: rgba(18, 184, 134, 0.12);
  color: #fff;
}

.lang-dropdown li[aria-selected="true"] {
  color: var(--accent-green);
  font-weight: 700;
}

@media (max-width: 600px) {
  .mobile-topbar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 58px;
    padding: 0 14px;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 26, 48, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: var(--z-sticky);
  }

  .mobile-topbar .nav-logo-fixed {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
  }

  .mobile-topbar .lang-switcher {
    position: relative;
    top: auto;
    right: auto;
    margin-left: auto;
    margin-right: 10px;
    padding: 4px 10px;
  }

  .mobile-topbar .mobile-toggle {
    display: flex;
    position: static;
    top: auto;
    right: auto;
  }
}

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
}

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

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

  .features-big-grid {
    grid-template-columns: 1fr 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 768px) {
  section {
    padding: 60px 5%;
  }

  .hero {
    padding-top: 130px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-mockup {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .features-big-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand p {
    margin: 14px auto 0;
  }

  .footer-contact {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .social-proof {
    gap: 24px;
  }

  .what-crm {
    width: 100%;
  }
}

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

  nav:not(.mobile-sidebar) {
    display: none;
  }

  .hero {
    padding-top: 78px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
  }

  .hero-ctas a {
    width: 100%;
    justify-content: center;
  }

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

  .demo-tabs {
    gap: 6px;
  }

  .demo-tab {
    padding: 6px 12px;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
