/* ===================================================
   SELLXPERT CRM – PREMIUM LANDING PAGE STYLES
   Color palette extracted from logo:
   Primary Blue:   #0073CF
   Dark Navy:      #0B2545
   Accent Red:     #E63946
   Sky Blue:       #1A8FE3
   White:          #FFFFFF
   Light BG:       #F4F8FC
   =================================================== */

:root {
  --primary: #0073CF;
  --primary-dark: #0055A5;
  --navy: #0B2545;
  --accent: #E63946;
  --sky: #1A8FE3;
  --white: #FFFFFF;
  --light: #F4F8FC;
  --gray: #6B7280;
  --border: #E2EAF4;
  --gradient: linear-gradient(135deg, #0073CF 0%, #1A8FE3 50%, #00B4D8 100%);
  --gradient-dark: linear-gradient(135deg, #0B2545 0%, #0073CF 100%);
  --shadow-sm: 0 2px 12px rgba(0,115,207,0.08);
  --shadow-md: 0 8px 32px rgba(0,115,207,0.14);
  --shadow-lg: 0 20px 60px rgba(0,115,207,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  background: rgba(0,115,207,0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,115,207,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,115,207,0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.full-width { width: 100%; justify-content: center; }

.glow-btn {
  animation: glow 2.5s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 4px 20px rgba(0,115,207,0.35); }
  to   { box-shadow: 0 6px 30px rgba(0,180,216,0.6), 0 0 0 4px rgba(0,115,207,0.1); }
}

.pulse-btn {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.mt-20 { margin-top: 20px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,115,207,0.1);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo { height: 44px; width: auto; object-fit: contain; }
.footer-logo { height: 50px; width: auto; object-fit: contain; /*filter: brightness(0) invert(1);*/ }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--primary); }

.header-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  /* flex-wrap: wrap; */
  align-self: center;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1.5px solid;
  transition: var(--transition);
  cursor: pointer;
}

.btn-call {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-call:hover { background: var(--primary); color: #fff; }

.btn-whatsapp {
  border-color: #25D366;
  color: #25D366;
}

.btn-whatsapp:hover { background: #25D366; color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 80px 0 80px;
  background: linear-gradient(135deg, #EAF4FF 0%, #F8FBFF 50%, #EAF9FF 100%);
  position: relative;
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 500px; height: 500px;
  background: var(--gradient);
  top: -150px; right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px; height: 300px;
  background: linear-gradient(135deg, #00B4D8, #0073CF);
  bottom: -80px; left: -80px;
  animation-delay: 2s;
}

.shape-3 {
  width: 200px; height: 200px;
  background: var(--accent);
  top: 40%; left: 45%;
  opacity: 0.06;
  animation-delay: 4s;
}

.shape-4 {
  width: 150px; height: 150px;
  background: var(--gradient);
  top: 10%; left: 30%;
  opacity: 0.08;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,115,207,0.1);
  border: 1px solid rgba(0,115,207,0.2);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

.bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray);
}

.hero-trust strong { color: var(--navy); }

/* Form Card */
.glass-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,115,207,0.15);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  /*color: var(--navy);*/
  margin-bottom: 6px;
}

.form-header p {
  font-size: 0.88rem;
  /*color: var(--gray);*/
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: #fff;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,115,207,0.1);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 12px;
}

/* ===== STATS ===== */
.stats-section {
  padding: 60px 0;
  background: var(--gradient-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}

.stat-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  display: inline;
  line-height: 1;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 900;
  color: #00B4D8;
  display: inline;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  font-weight: 500;
}

/* ===== CLIENTS MARQUEE ===== */
.clients-section {
  padding: 72px 0 48px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.marquee-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(0,115,207,0.08) 0%, transparent 100%);
  pointer-events: none;
}

.clients-section .section-title { margin-bottom: 40px; }

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 40s linear infinite;
  padding: 20px 0;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-logo-img {
  height: 90px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.client-logo-item {
  display: flex;
  align-items: center;
  padding: 8px 24px;
}

.client-logo-item:hover .client-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-6px) scale(1.1);
  filter: drop-shadow(0 10px 28px rgba(0,115,207,0.35));
}

/* ===== CITY SECTION ===== */
.city-section {
  padding: 80px 0;
  background: var(--light);
  text-align: center;
}

.city-section .section-title { text-align: center; }

.city-layout {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}

.city-map-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0,115,207,0.18);
  transition: var(--transition);
}

.city-map-wrap:hover {
  box-shadow: 0 32px 72px rgba(0,115,207,0.25);
}

.city-content-wrap {
  animation: fadeInRight 0.8s ease-out both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.city-info-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.city-info-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.city-info-text {
  display: none;
}

.city-growth-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px !important;
  max-width: 100%;
}

/* ===== PROBLEM + SOLUTION COMBINED ===== */
.ps-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #0b2239);
  color: #fff;
}

/* ===== BACKGROUND ANIMATION ===== */
.ps-section::before,
.ps-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,115,207,0.15), transparent);
  filter: blur(100px);
  animation: floatBg 10s infinite alternate ease-in-out;
}

.ps-section::before {
  top: -150px;
  left: -150px;
}

.ps-section::after {
  bottom: -150px;
  right: -150px;
  animation-delay: 3s;
}

@keyframes floatBg {
  from { transform: translateY(0); }
  to { transform: translateY(60px); }
}

/* ===== TITLE ===== */
.ps-section .section-title {
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}

/* ===== GRID ===== */
.ps-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ===== ROW ===== */
.ps-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 20px;
}

/* ===== PROBLEM CARD ===== */
.ps-problem {
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.3);
  padding: 18px 22px;
  border-radius: 14px;
  font-weight: 600;
  color: #ff6b6b;
  transition: 0.3s;
}

/* ===== SOLUTION CARD ===== */
.ps-solution {
  background: rgba(0, 200, 150, 0.1);
  border: 1px solid rgba(0, 200, 150, 0.3);
  padding: 18px 22px;
  border-radius: 14px;
  font-weight: 600;
  color: #2ecc71;
  transition: 0.3s;
}

/* ===== ARROW ===== */
.ps-arrow {
  text-align: center;
  font-size: 26px;
  color: #4da3ff;
  animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
  0% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(8px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.6; }
}

/* ===== HOVER EFFECT ===== */
.ps-item:hover .ps-problem {
  transform: translateX(-6px);
  box-shadow: 0 10px 30px rgba(255,77,77,0.2);
}

.ps-item:hover .ps-solution {
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(0,200,150,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ps-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ps-arrow {
    transform: rotate(90deg);
  }
}
/* ===== PROCESS ===== */
.process-section {
  padding: 20px 0;
  text-align: center;
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
  position: relative;
  justify-content: center;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  max-width: 260px;
}

.process-connector {
  flex: 0 0 60px;
  height: 2px;
  background: var(--gradient);
  margin-top: 48px;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -5px;
  border: 6px solid transparent;
  border-left-color: #1A8FE3;
}

.step-number {
  width: 64px; height: 64px;
  background: var(--gradient);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0,115,207,0.35);
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== FEATURES SECTION — fts-* ===== */
.features-section {
  position: relative;
  padding: 0 0 110px 0 !important;
  background: linear-gradient(150deg, #F0F6FF 0%, #F8F5FF 50%, #EEF9F5 100%);
  overflow: hidden;
}

/* ── Background decoration ── */
.fts-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fts-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.5;
}
.fts-blob-a {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #C7E2FF 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: ftsBlobFloat 16s ease-in-out infinite;
}
.fts-blob-b {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #DDD6FE 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation: ftsBlobFloat 20s ease-in-out infinite reverse;
}
.fts-blob-c {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #BBF7D0 0%, transparent 70%);
  top: 50%; left: 55%;
  animation: ftsBlobFloat 13s ease-in-out infinite 3s;
}
@keyframes ftsBlobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,20px) scale(1.06); }
}
.fts-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── Section title ── */
.features-section .section-title {
  text-align: center;
  margin-bottom: 60px;
  color:#fff !important;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.features-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}

/* ── Mockup column container ── */
.fts-mockup-col {
  position: relative;
}

/* ── The stage that holds all 3 devices ── */
.fts-devices-stage {
  position: relative;
  width: 100%;
  /* Height is determined by laptop height + tablet/phone overflow */
  padding-bottom: 90px;   /* room for tablet & phone peeking below */
  padding-top: 12px;
  margin-left:72px !important;
}

/* ══════════════════════════════════════════
   SHARED DEVICE BASE — BLACK THEME
══════════════════════════════════════════ */
.fts-device {
  position: absolute;
}

/* macOS-style menu bar chrome */
.fts-chrome-dots { display: flex; gap: 5px; flex-shrink: 0; }
.fts-dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
  box-shadow: inset 0 -1px 1px rgba(0,0,0,0.35);
}
.fts-dot-r { background: radial-gradient(circle at 35% 35%, #FF6E63, #E0352A); }
.fts-dot-y { background: radial-gradient(circle at 35% 35%, #FFCF52, #E09B00); }
.fts-dot-g { background: radial-gradient(circle at 35% 35%, #4CD87B, #19A84A); }
.fts-chrome-bar {
  flex: 1; height: 14px; border-radius: 20px;
  background: rgba(255,255,255,0.06);
  max-width: 260px;
  position: relative; overflow: hidden;
}
.fts-chrome-bar::before {
  content: '';
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  width: 55%; height: 6px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
}
.fts-screen-content { overflow: hidden; flex: 1; }
.fts-screen-img { width: 100%; display: block; }

/* ══════════════════════════════════════════
   💻 LAPTOP — MacBook Pro (Space Black)
══════════════════════════════════════════ */
.fts-laptop {
  position: relative;
  z-index: 1;
  width: 100%;
  animation: ftsSlideUp 0.9s cubic-bezier(.22,.68,0,1.1) both,
             ftsFloatLaptop 7s ease-in-out 0.9s infinite;
  perspective: 1400px;
}
.fts-laptop:hover .fts-laptop-outer {
  transform: scale(1.026) translateY(-8px) rotateX(1.5deg);
  filter:
    drop-shadow(0 50px 80px rgba(0,0,0,0.55))
    drop-shadow(0 0 50px rgba(80,110,255,0.14));
}

.fts-laptop-outer {
  display: flex; flex-direction: column; align-items: center;
  filter:
    drop-shadow(0 36px 56px rgba(0,0,0,0.45))
    drop-shadow(0 0 36px rgba(80,110,255,0.10));
  transition: transform 0.5s cubic-bezier(.22,.68,0,1.2), filter 0.5s ease;
  transform: rotateX(2.5deg);
  transform-origin: bottom center;
}

/* Lid — matte space black anodised aluminium */
.fts-laptop-lid {
  width: 100%;
  background: linear-gradient(170deg,
    #2A2A2C 0%,
    #1E1E20 25%,
    #161618 55%,
    #111113 80%,
    #0D0D0F 100%);
  border-radius: 16px 16px 4px 4px;
  padding: 10px 10px 6px;
  border: 1.5px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.6),
    inset 1px 0 0 rgba(255,255,255,0.06),
    inset -1px 0 0 rgba(255,255,255,0.06);
}

/* Subtle diagonal sheen on lid */
.fts-laptop-lid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.01) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Apple logo (very subtle glow on black) */
.fts-laptop-lid::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 22px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.fts-laptop-cam {
  width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #3A3A40, #0A0A0C);
  border: 1px solid rgba(255,255,255,0.10);
  margin: 0 auto 8px;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.04);
}

.fts-laptop-screen {
  border-radius: 7px; overflow: hidden;
  background: #050507;
  border: 1.5px solid rgba(0,0,0,0.8);
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; flex-direction: column;
  position: relative;
}

/* Glass glare on screen — diagonal highlight */
.fts-laptop-screen::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(130deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.02) 30%,
    transparent 55%);
  pointer-events: none;
  z-index: 10;
  border-radius: 7px;
}

/* Base / keyboard — matte black with key-grid texture */
.fts-laptop-base {
  width: 108%;
  background: linear-gradient(180deg,
    #252527 0%,
    #1A1A1C 40%,
    #141416 70%,
    #0F0F11 100%);
  border-radius: 0 0 10px 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.03);
  position: relative;
  margin-top: -1px;
  padding: 6px 0 9px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -2px 6px rgba(0,0,0,0.6),
    0 10px 28px rgba(0,0,0,0.55),
    0 3px 6px rgba(0,0,0,0.4);
}

/* Keyboard grid texture */
.fts-laptop-base::before {
  content: '';
  position: absolute;
  top: 5px; left: 10%; right: 10%; height: calc(100% - 22px);
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 10px 8px;
  border-radius: 2px;
  opacity: 0.8;
}

.fts-laptop-hinge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 28%; height: 4px;
  background: linear-gradient(180deg, #1A1A1C 0%, #2A2A2E 100%);
  border-radius: 0 0 5px 5px;
}

.fts-laptop-trackpad {
  width: 70px; height: 40px; border-radius: 8px;
  background: linear-gradient(150deg,
    rgba(255,255,255,0.07) 0%,
    rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 2px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.4);
}

.fts-laptop-foot {
  position: absolute; bottom: -5px;
  width: 50px; height: 5px; border-radius: 0 0 4px 4px;
  background: linear-gradient(180deg, #1C1C1E, #141416);
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
}
.fts-laptop-foot-l { left: 10%; }
.fts-laptop-foot-r { right: 10%; }

/* Soft radial glow behind laptop */
.fts-laptop-outer::after {
  content: '';
  position: absolute;
  bottom: -24px; left: 8%; right: 8%; height: 24px;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(80,100,255,0.20) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

@keyframes ftsFloatLaptop {
  0%,100% { transform: translateY(0) rotateX(2.5deg); }
  50%      { transform: translateY(-12px) rotateX(2.5deg); }
}

/* ══════════════════════════════════════════
   📲 TABLET — iPad Pro (Space Black)
══════════════════════════════════════════ */
.fts-tablet {
  bottom: 92px;
  left: -12px;
  z-index: 3;
  animation: ftsSlideUpLeft 0.9s cubic-bezier(.22,.68,0,1.1) 0.28s both,
             ftsFloatTablet 6s ease-in-out 1.3s infinite;
}
.fts-tablet:hover .fts-tablet-outer {
  transform: scale(1.05) translateY(-9px) rotate(-2deg);
  filter:
    drop-shadow(0 30px 50px rgba(0,0,0,0.55))
    drop-shadow(0 0 28px rgba(80,110,255,0.16));
}

.fts-tablet-outer {
  display: flex; flex-direction: column; align-items: center;
  filter:
    drop-shadow(0 18px 36px rgba(0,0,0,0.50))
    drop-shadow(0 0 18px rgba(80,110,255,0.08));
  transition: transform 0.45s cubic-bezier(.22,.68,0,1.2), filter 0.45s ease;
  transform: rotate(-3deg);
}

.fts-tablet-cam {
  width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #3A3A40, #0A0A0C);
  border: 1px solid rgba(255,255,255,0.08);
  margin: 0 auto 5px;
}

/* iPad frame — uniform thin bezels, flat edges, matte black */
.fts-tablet-screen {
  width: 200px;
  background: linear-gradient(155deg,
    #252527 0%,
    #1C1C1E 40%,
    #141416 70%,
    #0F0F11 100%);
  border-radius: 14px;
  padding: 9px 8px;
  border: 1.5px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.7),
    0 18px 44px rgba(0,0,0,0.50);
  display: flex; flex-direction: column;
  position: relative;
}

/* Subtle top sheen on bezel */
.fts-tablet-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 40%;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.07) 0%,
    rgba(255,255,255,0.01) 100%);
  pointer-events: none;
  z-index: 1;
}

.fts-tablet-screen .fts-screen-content {
  border-radius: 6px; overflow: hidden;
  background: #050507;
  flex: 1;
  position: relative;
}

/* Screen diagonal glare */
.fts-tablet-screen .fts-screen-content::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(130deg,
    rgba(255,255,255,0.06) 0%,
    transparent 45%);
  pointer-events: none;
  z-index: 5;
}

/* iPad home indicator bar */
.fts-tablet-home {
  width: 28px; height: 4px; border-radius: 3px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0.05) 100%);
  margin: 6px auto 0;
}

@keyframes ftsFloatTablet {
  0%,100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-14px); }
}

/* ══════════════════════════════════════════
   📱 MOBILE — Android Flagship (Phantom Black)
   Samsung Galaxy S / Pixel Ultra inspired
══════════════════════════════════════════ */
.fts-mobile {
  bottom: 0;
  right: 0px;
  z-index: 4;
  animation: ftsSlideUpRight 0.9s cubic-bezier(.22,.68,0,1.1) 0.45s both,
             ftsFloatPhone 5.4s ease-in-out 1.6s infinite;
}
.fts-mobile:hover .fts-phone-outer {
  transform: scale(1.05) translateY(-11px) rotate(2deg);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 40px 70px rgba(0,0,0,0.65),
    0 0 40px rgba(80,110,255,0.18);
}

.fts-phone-outer {
  position: relative;
  width: 110px;
  /* Phantom Black — deep gloss with micro-shimmer edges */
  background: linear-gradient(165deg,
    #1C1C20 0%,
    #141418 30%,
    #0E0E12 60%,
    #080808 100%);
  border-radius: 26px;
  padding: 12px 7px 18px;
  border: 1.5px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(255,255,255,0.04),
    inset 1px 0 0 rgba(255,255,255,0.07),
    inset -1px 0 0 rgba(255,255,255,0.07),
    0 32px 64px rgba(0,0,0,0.60),
    0 0 28px rgba(60,80,200,0.10);
  transition: transform 0.45s cubic-bezier(.22,.68,0,1.2), box-shadow 0.45s ease;
  transform: rotate(3deg);
}

/* Edge shimmer — glossy frame reflection */
.fts-phone-outer::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 26px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.09) 0%,
    rgba(255,255,255,0.02) 25%,
    transparent 55%,
    rgba(255,255,255,0.03) 100%);
  pointer-events: none;
}

/* Punch-hole status bar */
/* Center punch-hole camera */
.fts-phone-cam {
  width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1E2028, #050508);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 0 0 2px rgba(0,0,0,0.9),
    0 0 0 3px rgba(255,255,255,0.06),
    inset 0 1px 1px rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
}

.fts-phone-speaker { display: none; }

.fts-phone-screen {
  border-radius: 16px; overflow: hidden;
  background: #050507;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

/* Glass diagonal glare */
.fts-phone-screen::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(130deg,
    rgba(255,255,255,0.07) 0%,
    rgba(255,255,255,0.02) 30%,
    transparent 55%);
  pointer-events: none;
  z-index: 5;
  border-radius: 16px;
}

.fts-screen-img--mobile { display: block; width: 100%; }

/* Android gesture pill */
.fts-phone-home {
  width: 38px; height: 4px; border-radius: 3px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.20) 50%,
    rgba(255,255,255,0.05) 100%);
  margin: 9px auto 0;
}

/* Side hardware buttons — dark metallic */
.fts-phone-btn {
  position: absolute;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.09) 0%,
    rgba(255,255,255,0.04) 50%,
    rgba(255,255,255,0.10) 100%);
  border-radius: 2px; width: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.fts-phone-btn-vol-up { height: 22px; left: -3px; top: 52px; border-radius: 2px 0 0 2px; }
.fts-phone-btn-vol-dn { height: 22px; left: -3px; top: 80px; border-radius: 2px 0 0 2px; }
.fts-phone-btn-power  { height: 30px; right: -3px; top: 62px; border-radius: 0 2px 2px 0; }

@keyframes ftsFloatPhone {
  0%,100% { transform: rotate(3deg) translateY(0); }
  50%      { transform: rotate(3deg) translateY(-16px); }
}

/* ══════════════════════════════════════════
   ENTRANCE ANIMATIONS
══════════════════════════════════════════ */
@keyframes ftsSlideUp {
  from { opacity: 0; transform: translateY(42px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ftsSlideUpLeft {
  from { opacity: 0; transform: translateY(42px) translateX(-24px); }
  to   { opacity: 1; transform: translateY(0) translateX(0); }
}
@keyframes ftsSlideUpRight {
  from { opacity: 0; transform: translateY(42px) translateX(24px); }
  to   { opacity: 1; transform: translateY(0) translateX(0); }
}

/* Ambient radial glow behind device group */
.fts-devices-stage::before {
  content: '';
  position: absolute;
  top: 5%; left: 5%; right: 5%; bottom: -8%;
  background: radial-gradient(ellipse at 50% 45%,
    rgba(80,110,255,0.13) 0%,
    rgba(60,140,220,0.06) 40%,
    transparent 70%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════════
   RIGHT — Girl + CTA
══════════════════════════════════════════ */
.features-image {
  text-align: center;
  position: relative;
  transform: translateX(60px);
}
.girl-image {
  width: 100%; max-width: 460px;
  border-radius: 24px;
  filter: drop-shadow(0 25px 60px rgba(0,115,207,0.22));
  animation: floatY 4s ease-in-out infinite;
}
.features-image .btn-primary { margin-top: 25px; display: inline-block; }

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes slideInLeft {
  from { transform: translateX(-40px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slideInRight {
  from { transform: translateX(40px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slideInUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* Tablet layout (641–1024) */
@media (max-width: 1024px) {
  .features-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .features-image {
    transform: translateX(0);
    order: 2;
  }
  .fts-mockup-col { order: 1; }
  .girl-image { max-width: 320px; }

  .fts-devices-stage { padding-bottom: 80px; }

  .fts-tablet-screen { width: 180px; }
  .fts-phone-outer   { width: 96px; }
  .fts-tablet { left: -8px; }
  .fts-mobile { right: -4px; }
}

/* Mobile layout (≤640) */
@media (max-width: 640px) {
  .features-section { padding: 72px 0 88px; }

  .fts-devices-stage { padding-bottom: 70px; }

  .fts-laptop-lid { padding: 10px 10px 6px; }
  .fts-tablet-screen { width: 140px; }
  .fts-phone-outer   { width: 80px; border-radius: 18px; }
  .fts-phone-btn-vol-up { height: 16px; top: 44px; }
  .fts-phone-btn-vol-dn { height: 16px; top: 66px; }
  .fts-phone-btn-power  { height: 22px; top: 52px; }
  .fts-tablet { left: -4px; }
  .fts-mobile { right: -2px; }

  .girl-image { max-width: 260px; }
}

@media (max-width: 400px) {
  .fts-tablet-screen { width: 120px; }
  .fts-phone-outer   { width: 68px; border-radius: 16px; }
}




@media (max-width: 576px) {
  .girl-image {
    max-width: 260px;
  }
}
/* ===== INTEGRATIONS SECTION ===== */
.integrations-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fdfbff, #f3f8ff);
}

/* Grid */
.integrations-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.integration-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #eef2f7;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* pastel hover glow */
.integration-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #e0f2ff, #fce7ff);
  opacity: 0;
  transition: 0.4s;
}

.integration-card:hover::before {
  opacity: 0.4;
}

.integration-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0,115,207,0.15);
}

/* Logo */
.integration-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* Title */
.integration-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 10px;
}

/* Tags */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 600;
}

/* pastel tags */
.tag.essential {
  background: #e0f7ec;
  color: #16a34a;
}

.tag.premium {
  background: #ede9fe;
  color: #7c3aed;
}

.tag.auto {
  background: #fff4e6;
  color: #ea580c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .integrations-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CASE STUDY ===== */
.casestudy-section {
  padding: 20px 0;
  background: var(--light);
  text-align: center;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.case-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  text-align: left;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,115,207,0.2);
  border-color: var(--primary);
}

.btn-case-detail {
  margin-top: 24px;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-case-detail:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,115,207,0.3);
  transform: translateX(4px);
}

/* Case Study Modal */
.case-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.case-modal.open { display: flex; }

.case-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,37,69,0.75);
  backdrop-filter: blur(6px);
}

.case-modal-content {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  max-width: 680px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  animation: modalSlideIn 0.4s cubic-bezier(0.4,0,0.2,1);
}

@keyframes modalSlideIn {
  from { transform: translateY(30px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.case-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--light);
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.case-modal-close:hover { background: var(--primary); color: #fff; }

.case-detail-title { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.case-detail-company { color: var(--primary); font-weight: 700; font-size: 0.9rem; margin-bottom: 28px; }
.case-detail-section { margin-bottom: 24px; }
.case-detail-section h4 { font-size: 0.8rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.case-detail-section p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
.case-detail-stats { display: flex; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.case-detail-stat { background: var(--light); border-radius: 16px; padding: 20px 24px; text-align: center; flex: 1; min-width: 100px; }
.case-detail-stat strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--primary); }
.case-detail-stat span { font-size: 0.78rem; color: var(--gray); }

.case-company {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.case-desc {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.7;
}

.case-metrics {
  display: flex;
  gap: 24px;
}

.metric { text-align: center; }

.metric-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.metric span:last-child {
  font-size: 1.4rem;
  font-weight: 800;
  color: #00B4D8;
}

.metric p {
  font-size: 0.76rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

/* ===== VIDEO TESTIMONIAL ===== */
.testimonial-video {
  max-width: 720px;
  margin: 40px auto 60px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,115,207,0.2);
  position: relative;
}

.testimonial-video video {
  width: 100%;
  display: block;
  border-radius: 24px;
}

/* optional play glow effect */
.testimonial-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,115,207,0.15), transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

.testimonial-video:hover::after {
  opacity: 1;
}

/* ===== SLIDER ===== */
.testimonial-slider {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

/* TRACK */
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 👇 FIXED: EXACT 2 CARDS */
.testimonial-card {
  flex: 0 0 calc(50% - 12px);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* background glow */
.testi-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,115,207,0.05), rgba(26,143,227,0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

/* hover */
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,115,207,0.18);
  border-color: var(--primary);
}

.testimonial-card:hover .testi-card-bg {
  opacity: 1;
}

/* stars */
.testi-stars {
  font-size: 1rem;
  margin-bottom: 16px;
}

/* text */
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

/* author */
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 700;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ===== CONTROLS ===== */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--navy);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
}

/* dots */
.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 100%; /* 👈 1 card on tablet/mobile */
  }
}

/* ===== INFOGRAPHIC ===== */
.infographic-section {
  padding: 80px 0;
  background: var(--light);
  text-align: center;
}

.info-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 48px 0 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  min-width: 180px;
}

.info-box.highlight {
  background: var(--gradient);
  border: none;
  box-shadow: var(--shadow-lg);
}

.info-box.highlight h4,
.info-box.highlight p { color: #fff; }

.info-arrow {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 900;
}

.info-icon { font-size: 2rem; margin-bottom: 12px; }

.info-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.info-box p {
  font-size: 0.82rem;
  color: var(--gray);
}

.benefits-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.benefit-pill {
  background: var(--white);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  transition: var(--transition);
}

.benefit-pill:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 40px 0;
  text-align: center;
}
.faq-list {
  max-width: 80%;
  margin: 48px auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-item.open { border-color: var(--primary); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-arrow {
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta-section {
  padding: 100px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-shape-1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.cta-shape-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; }

.final-cta-inner { position: relative; z-index: 2; }

.final-cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.final-cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto 20px;
  align-items: stretch;
}

.cta-form-group {
  flex: 1;
  min-width: 200px;
}

.cta-form input {
  width: 100%;
  padding: 16px 22px;
  border-radius: 12px;
  /* border: 1.5px solid rgba(255,255,255,0.2); */
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  outline: none;
  background: rgba(255, 255, 255, 1);
  color: #000000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* .cta-form input::placeholder { color: rgba(255,255,255,0.55); } */
.cta-form input::placeholder { color: rgba(0, 0, 0, 1); }
.cta-form input:focus { 
  background: rgba(255, 255, 255, 1); 
  /* border-color: #00B4D8; */
  box-shadow: 0 0 0 3px rgba(0,180,216,0.2);
}

.cta-submit-btn {
  padding: 16px 32px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #0073CF, #00B4D8) !important;
  white-space: nowrap;
}

.final-cta-section .form-note {
  color: rgba(255,255,255,0.6);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.75);
  position: relative;
  overflow: hidden;
}

.footer-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 18px 0 24px;
}

.footer-logo-wrapper {
  height: 50px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  color: rgba(255,255,255,0.7);
}

.social-icon:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  transform: translateY(-3px);
}

.social-icon.facebook-icon:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.social-icon.twitter-icon:hover {
  background: #000;
  border-color: #000;
}

.social-icon.instagram-icon:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
}

.social-icon.youtube-icon:hover {
  background: #FF0000;
  border-color: #FF0000;
}

.social-icon.whatsapp-icon:hover {
  background: #25D366;
  border-color: #25D366;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links-col ul { list-style: none; }

.footer-links-col ul li { margin-bottom: 10px; }

.footer-links-col ul li a,
.footer-contact-item a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-links-col ul li a:hover,
.footer-contact-item a:hover {
  color: var(--sky);
  transform: translateX(2px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item span { font-size: 1rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: #fff; }

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.floating-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(37,211,102,0.6);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 28px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0.12); }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-timeline { flex-wrap: wrap; gap: 24px; }
  .process-connector { display: none; }
  .solution-cards-grid { grid-template-columns: 1fr; }
  .tablet-mockup { display: none; }
  .city-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .btn-call, .btn-whatsapp { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 100px 0 60px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: 1fr; }
  .solution-cards-grid { grid-template-columns: 1fr; }
  .features-inner { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-form { flex-direction: column; align-items: stretch; }
  .cta-form-group { min-width: unset; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-timeline { flex-direction: column; align-items: center; }
  .info-flow { flex-direction: column; align-items: center; }
  .info-arrow { transform: rotate(90deg); }
  .case-metrics { flex-direction: column; gap: 16px; }
  .city-layout { grid-template-columns: 1fr; }
  .mobile-mockup { right: -12px; bottom: -10px; }
  .tablet-mockup { display: none; }
  .crm-web-frame { transform: none !important; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .hero-headline { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-number { font-size: 2rem; }
  .glass-card { padding: 24px 20px; }
  .integrations-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .solution-cards-grid { grid-template-columns: 1fr; }
  .case-modal-content { padding: 32px 24px; }
}

/* ── Plain device images (frames removed) ── */
.fts-plain-img {
  display: block;
  width: 100%;
  border-radius: 10px;
  /* box-shadow: 0 18px 48px rgba(0,0,0,0.40); */
}
.fts-plain-img--laptop {
  width: 100%;
  border-radius: 12px;
}
.fts-plain-img--tablet {
  width: 200px;
  border-radius: 10px;
}
.fts-plain-img--mobile {
  width: 110px;
  border-radius: 10px;
}


/* =============================================================
   ██████╗  ██████╗  ██████╗ ██╗  ██╗    ██████╗ ███████╗███╗   ███╗ ██████╗
   ██╔══██╗██╔═══██╗██╔═══██╗██║ ██╔╝    ██╔══██╗██╔════╝████╗ ████║██╔═══██╗
   ██████╔╝██║   ██║██║   ██║█████╔╝     ██║  ██║█████╗  ██╔████╔██║██║   ██║
   ██╔══██╗██║   ██║██║   ██║██╔═██╗     ██║  ██║██╔══╝  ██║╚██╔╝██║██║   ██║
   ██████╔╝╚██████╔╝╚██████╔╝██║  ██╗    ██████╔╝███████╗██║ ╚═╝ ██║╚██████╔╝
   ╚═════╝  ╚═════╝  ╚═════╝ ╚═╝  ╚═╝    ╚═════╝ ╚══════╝╚═╝     ╚═╝ ╚═════╝
   BOOK DEMO SECTION
   ============================================================= */

/* ── Section Base ── */
.book-demo-section {
  position: relative;
  padding: 110px 0 120px;
  background: linear-gradient(135deg, #04103b 0%, #071a52 40%, #0b2780 65%, #0a1f60 100%);
  overflow: hidden;
}

/* ── Decorative BG elements ── */
.bd-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bd-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.bd-bg-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1a4fd8 0%, transparent 70%);
  top: -180px; left: -120px;
  animation: bdOrbFloat 18s ease-in-out infinite;
}
.bd-bg-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #00b4d8 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation: bdOrbFloat 24s ease-in-out infinite reverse;
}
@keyframes bdOrbFloat {
  0%,100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(25px, 20px) scale(1.08); }
}

.bd-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── Container Layout ── */
.bd-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Left Info Panel ── */
.bd-info-panel {
  color: #fff;
}

.bd-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.bd-info-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}

.bd-gradient-text {
  background: linear-gradient(135deg, #60a5fa, #00b4d8, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bd-info-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 32px;
}

.bd-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.bd-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.bd-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34,197,94,0.4);
}

/* Trust strip */
.bd-trust-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 18px 24px;
  backdrop-filter: blur(12px);
}

.bd-trust-item { text-align: center; flex: 1; }
.bd-trust-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #60a5fa;
  line-height: 1;
  margin-bottom: 4px;
}
.bd-trust-lbl {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bd-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── Glassmorphism Form Card ── */
.bd-form-wrap {
  position: relative;
}

.bd-glass-form {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 1px 0 rgba(255,255,255,0.18) inset;
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer line at top */
.bd-glass-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #60a5fa, #00b4d8, #4ade80, transparent);
  opacity: 0.8;
}

.bd-form-top {
  text-align: center;
  margin-bottom: 28px;
}

.bd-form-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.bd-form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.bd-form-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
}

/* ── Form Field Groups ── 
.bd-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bd-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bd-field-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

.bd-req {
  color: #f87171;
  margin-left: 2px;
}*/

/* ── Input Wrap ── */
.bd-field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.bd-field-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

.bd-field-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-appearance: none;
  appearance: none;
}

.bd-field-input::placeholder {
  color: #fff;
  font-weight: 400;
}

.bd-field-input option {
  background: #071a52;
  color: #fff;
}

.bd-field-input:focus {
  border-color: #60a5fa;
  background: rgba(96,165,250,0.1);
  box-shadow: 0 0 0 3px rgba(96,165,250,0.18), 0 4px 16px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

.bd-field-input:hover:not(:focus) {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.11);
}

/* Focus underline animation */
.bd-field-focus-line {
  position: absolute;
  bottom: 0; left: 8px; right: 8px;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #00b4d8);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.bd-field-wrap:focus-within .bd-field-focus-line {
  transform: scaleX(1);
}

/* Select specific */
.bd-select-wrap .bd-select-arrow {
  position: absolute;
  right: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.25s ease;
}

.bd-field-select {
  cursor: pointer;
  padding-right: 40px;
}

/* ── Radio Options ── */
.bd-radio-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bd-radio-opt {
  position: relative;
  cursor: pointer;
}

.bd-radio-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bd-radio-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  user-select: none;
}

.bd-radio-opt:hover .bd-radio-pill {
  border-color: #60a5fa;
  background: rgba(96,165,250,0.12);
  color: #fff;
}

.bd-radio-opt input[type="radio"]:checked + .bd-radio-pill {
  border-color: #60a5fa;
  background: linear-gradient(135deg, rgba(96,165,250,0.25), rgba(0,180,216,0.2));
  color: #60a5fa;
  box-shadow: 0 0 0 2px rgba(96,165,250,0.2), 0 4px 12px rgba(0,0,0,0.2);
}

/* ── Terms & Conditions ── */
.bd-tnc-group {
  margin-top: -4px;
}

.bd-tnc-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.bd-tnc-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bd-tnc-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 5px;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: all 0.25s ease;
  position: relative;
  cursor: pointer;
}

.bd-tnc-row input:checked + .bd-tnc-custom {
  background: linear-gradient(135deg, #60a5fa, #00b4d8);
  border-color: #60a5fa;
}

.bd-tnc-row input:checked + .bd-tnc-custom::after {
  content: '✓';
  font-size: 0.72rem;
  color: #fff;
  font-weight: 800;
}

.bd-tnc-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
}

.bd-tnc-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.bd-tnc-link:hover { color: #93c5fd; }

/* ── Submit Button ── */
.bd-submit-btn {
  position: relative;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #0073CF 0%, #1a8fe3 50%, #00b4d8 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0,115,207,0.5);
  margin-top: 4px;
}

.bd-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,180,216,0.55), 0 0 0 2px rgba(96,165,250,0.25);
  background: linear-gradient(135deg, #0055a5 0%, #0073CF 50%, #00b4d8 100%);
}

.bd-submit-btn:active {
  transform: translateY(0px);
  box-shadow: 0 4px 12px rgba(0,115,207,0.4);
}

.bd-btn-label { position: relative; z-index: 1; }

/* Shimmer animation */
.bd-btn-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  animation: bdBtnShimmer 3s ease-in-out infinite;
}

@keyframes bdBtnShimmer {
  0%   { left: -100%; }
  50%  { left: 150%; }
  100% { left: 150%; }
}

.bd-form-footer-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bd-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bd-info-title { font-size: 2.2rem; }
}

@media (max-width: 640px) {
  .book-demo-section { padding: 80px 0 90px; }
  .bd-glass-form { padding: 28px 20px; }
  .bd-info-title { font-size: 1.8rem; }
  .bd-trust-strip { gap: 16px; padding: 14px 16px; }
  .bd-radio-row { gap: 8px; }
  .bd-radio-pill { padding: 8px 14px; font-size: 0.8rem; }
}


/* =============================================================
   PARALLAX SCROLL ANIMATION — GSAP / ScrollTrigger
   Features Section: Girl (left) ↕ Devices (right) opposing motion
   ============================================================= */

/* Ensure both elements allow transform without layout breaking */
#parallax-girl,
#parallax-devices {
  will-change: transform;
}

/* Floating animation for devices (CSS fallback / decorative) */
@keyframes bdDeviceFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* GSAP will override these; these are just initial states */
#parallax-girl { transform-origin: center bottom; }
#parallax-devices { transform-origin: center top; }

/* ── Mobile: disable heavy GSAP, stack vertically ── */
@media (max-width: 768px) {
  /* Kill transform to avoid layout issues on mobile */
  #parallax-girl,
  #parallax-devices {
    will-change: auto;
    transform: none !important;
  }
}
