:root {
  --blue: #29B6F6;
  --pink: #FF3D87;
  --navy: #0D1B2A;
  --dark: #1A2332;
  --gray: #6B7A8D;
  --light-gray: #F4F7FA;
  --white: #FFFFFF;
  --blue-light: rgba(41, 182, 246, 0.08);
  --pink-light: rgba(255, 61, 135, 0.08);
  --shadow: 0 4px 24px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 12px 48px rgba(13, 27, 42, 0.14);
  --radius: 14px;
  --radius-lg: 24px;
  --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; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── Background Graphics ─────────────────────────────── */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.bg-blob-blue  { background: rgba(41, 182, 246, 0.12); }
.bg-blob-pink  { background: rgba(255, 61, 135, 0.09); }
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(41,182,246,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Utility ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; position: relative; overflow: hidden; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); color: var(--blue);
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.tag-pink { background: var(--pink-light); color: var(--pink); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15;
  color: var(--navy); margin-bottom: 16px;
}
.section-sub {
  font-size: 1.125rem; color: var(--gray);
  max-width: 560px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; outline: none;
  transition: var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #0EA5E9 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(41,182,246,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(41,182,246,0.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid rgba(13,27,42,0.12);
  box-shadow: var(--shadow);
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41,182,246,0.15);
}
.btn-pink {
  background: linear-gradient(135deg, var(--pink) 0%, #FF6BB0 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,61,135,0.35);
}
.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,61,135,0.45);
}
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ─── Navbar ──────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(41,182,246,0.10);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(13,27,42,0.09);
}
.nav-inner {
  display: flex; align-items: center;
  height: 68px; gap: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-img { height: 38px; width: auto; }
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-name {
  font-size: 16px; font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -0.02em;
}
.nav-logo-sub { font-size: 9px; color: var(--gray); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0 auto;
}
.nav-links a {
  display: block; padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--gray); text-decoration: none;
  border-radius: 8px; transition: var(--transition);
}
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none;
  background: none; border-radius: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}

/* ─── Mobile Nav ──────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  flex-direction: column; padding: 90px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul a {
  display: block; padding: 14px 16px;
  font-size: 17px; font-weight: 500;
  color: var(--dark); text-decoration: none;
  border-radius: 12px; transition: var(--transition);
}
.mobile-menu ul a:hover { background: var(--blue-light); color: var(--blue); }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.mobile-menu-actions .btn { justify-content: center; }

/* ─── Hero ────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 68px; position: relative;
  background: linear-gradient(170deg, #F8FBFF 0%, #FFFFFF 50%, #FFF5FA 100%);
  overflow: hidden;
}
.hero-blob-1 { width: 600px; height: 600px; top: -100px; right: -200px; }
.hero-blob-2 { width: 400px; height: 400px; bottom: -80px; left: -100px; }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid rgba(41,182,246,0.25);
  padding: 7px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--gray);
  margin-bottom: 28px; box-shadow: 0 2px 12px rgba(41,182,246,0.12);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(41,182,246,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(41,182,246,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(41,182,246,0.08); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  color: var(--navy); margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-title span {
  background: linear-gradient(135deg, var(--blue) 0%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.125rem; color: var(--gray);
  line-height: 1.75; margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(13,27,42,0.07);
}
.stat-item { }
.stat-value {
  font-size: 1.6rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; font-weight: 500; }

.hero-visual {
  position: relative; z-index: 1;
}
.hero-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(41,182,246,0.1);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.hero-mockup:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.mockup-bar {
  background: var(--light-gray);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mockup-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }
.mockup-url {
  flex: 1; background: var(--white);
  border-radius: 6px; padding: 5px 12px;
  font-size: 12px; color: var(--gray);
  border: 1px solid rgba(0,0,0,0.08);
  margin: 0 8px;
}
.mockup-body {
  display: grid; grid-template-columns: 200px 1fr;
  height: 320px;
}
.mockup-sidebar {
  background: var(--navy);
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.sidebar-logo {
  display: flex; align-items: center; gap: 8px;
  padding: 8px; margin-bottom: 16px;
}
.sidebar-logo-icon {
  width: 28px; height: 28px;
}
.sidebar-logo-text { font-size: 12px; font-weight: 700; color: var(--white); }
.sidebar-item {
  padding: 9px 10px; border-radius: 8px;
  font-size: 11px; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; transition: var(--transition);
}
.sidebar-item.active { background: rgba(41,182,246,0.2); color: var(--blue); }
.sidebar-item:hover:not(.active) { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }
.mockup-content { padding: 16px; background: #F8FBFF; overflow: hidden; }
.mockup-header-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.mockup-title-sm { font-size: 13px; font-weight: 700; color: var(--navy); }
.mockup-add-btn {
  background: var(--blue); color: var(--white);
  border: none; border-radius: 6px; font-size: 10px;
  padding: 5px 10px; cursor: pointer; font-weight: 600;
}
.mockup-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.mockup-card {
  background: var(--white);
  border-radius: 10px; padding: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}
.mockup-card-label { font-size: 9px; color: var(--gray); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .05em; }
.mockup-card-value { font-size: 18px; font-weight: 800; color: var(--navy); }
.mockup-card-sub { font-size: 9px; color: var(--gray); margin-top: 2px; }
.mockup-bar-chart { display: flex; align-items: flex-end; gap: 4px; height: 50px; margin-top: 4px; }
.bar { border-radius: 3px 3px 0 0; flex: 1; background: var(--blue); opacity: 0.7; }
.bar.pink { background: var(--pink); }

/* ─── Screenshots Slider ──────────────────────────────── */
#screenshots { background: var(--light-gray); }
.slider-wrapper { position: relative; margin-top: 60px; }
.slider-track {
  display: flex; gap: 24px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.slide {
  flex: 0 0 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: none;
}
.slide.active { display: block; }
.slide-inner {
  display: grid; grid-template-columns: 220px 1fr;
  min-height: 440px;
}
.slide-sidebar {
  background: var(--navy); padding: 24px 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.slide-sidebar-head {
  padding: 12px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.slide-sidebar-head span { font-size: 13px; font-weight: 700; color: var(--white); }
.slide-nav-item {
  padding: 10px 12px; border-radius: 8px;
  font-size: 12px; display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); cursor: pointer;
}
.slide-nav-item.act { background: rgba(41,182,246,0.18); color: var(--blue); font-weight: 600; }
.slide-nav-item svg { flex-shrink: 0; }
.slide-content-area { padding: 28px; background: #F8FBFF; }
.slide-page-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.slide-stat-row { display: flex; gap: 16px; margin-bottom: 20px; }
.slide-stat {
  flex: 1; background: var(--white); border-radius: 12px;
  padding: 16px; border: 1px solid rgba(0,0,0,0.05);
}
.slide-stat-icon { width: 32px; height: 32px; border-radius: 8px; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; }
.icon-blue { background: rgba(41,182,246,0.12); }
.icon-pink { background: rgba(255,61,135,0.12); }
.icon-green { background: rgba(34,197,94,0.12); }
.icon-orange { background: rgba(249,115,22,0.12); }
.slide-stat-val { font-size: 22px; font-weight: 800; color: var(--navy); }
.slide-stat-label { font-size: 11px; color: var(--gray); margin-top: 2px; }
.slide-table {
  background: var(--white); border-radius: 12px;
  overflow: hidden; border: 1px solid rgba(0,0,0,0.05);
}
.table-head {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 12px 16px;
  background: var(--light-gray);
  font-size: 11px; color: var(--gray);
  font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
}
.table-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 12px 16px; font-size: 12px;
  border-top: 1px solid rgba(0,0,0,0.04);
  align-items: center;
}
.status-pill {
  display: inline-flex; padding: 3px 10px; border-radius: 100px;
  font-size: 10px; font-weight: 600;
}
.status-running { background: rgba(34,197,94,0.12); color: #16A34A; }
.status-stopped { background: rgba(239,68,68,0.10); color: #DC2626; }

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 28px;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1.5px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow);
}
.slider-btn:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 4px 16px rgba(41,182,246,0.2); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 100px;
  background: rgba(0,0,0,0.15); cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { width: 28px; background: var(--blue); }
.slide-label {
  font-size: 13px; color: var(--gray); font-weight: 500;
  text-align: center; margin-top: 12px;
}

/* ─── Features ────────────────────────────────────────── */
#features { background: var(--white); }
.features-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  margin-top: 60px;
}
.feature-list { display: flex; flex-direction: column; gap: 0; }
.feature-item {
  border-left: 3px solid transparent;
  padding: 24px 24px 24px 28px;
  cursor: pointer; transition: var(--transition);
  border-radius: 0 12px 12px 0;
  position: relative;
}
.feature-item.active {
  border-left-color: var(--blue);
  background: var(--blue-light);
}
.feature-item-header {
  display: flex; align-items: center; gap: 14px;
}
.feature-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px;
  background: var(--light-gray);
  transition: var(--transition);
}
.feature-item.active .feature-icon { background: rgba(41,182,246,0.15); }
.feature-item-title {
  font-size: 16px; font-weight: 600; color: var(--navy);
}
.feature-item-sub {
  font-size: 14px; color: var(--gray);
  margin-top: 10px; margin-left: 56px;
  line-height: 1.65;
  display: none;
}
.feature-item.active .feature-item-sub { display: block; }
.feature-arrow {
  margin-left: auto; color: var(--gray);
  transition: var(--transition);
  flex-shrink: 0;
}
.feature-item.active .feature-arrow { color: var(--blue); transform: rotate(90deg); }

.feature-preview {
  position: sticky; top: 90px;
}
.feature-preview-card {
  background: linear-gradient(145deg, var(--navy) 0%, #162032 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  display: flex; flex-direction: column;
}
.preview-panel { flex: 1; display: none; flex-direction: column; gap: 20px; }
.preview-panel.active { display: flex; }
.preview-panel-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.preview-panel-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.preview-metric-row { display: flex; gap: 14px; }
.preview-metric {
  flex: 1; background: rgba(255,255,255,0.06);
  border-radius: 12px; padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.preview-metric-val { font-size: 24px; font-weight: 800; color: var(--blue); }
.preview-metric-val.pink { color: var(--pink); }
.preview-metric-label { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.preview-list { display: flex; flex-direction: column; gap: 10px; }
.preview-list-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05);
  padding: 11px 14px; border-radius: 10px;
}
.preview-list-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}
.dot-blue { background: var(--blue); }
.dot-pink { background: var(--pink); }
.dot-green { background: #22C55E; }
.dot-orange { background: #F97316; }
.preview-progress-row { display: flex; flex-direction: column; gap: 12px; }
.preview-progress-item label {
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.progress-bar-bg {
  height: 6px; background: rgba(255,255,255,0.1);
  border-radius: 100px; overflow: hidden;
}
.progress-bar-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
}

/* ─── Video Section ───────────────────────────────────── */
#videos { background: var(--light-gray); }
.video-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 24px; margin-top: 60px;
}
.video-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); cursor: pointer;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-thumb {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A5F 100%);
  display: flex; align-items: center; justify-content: center;
}
.video-card.main .video-thumb { height: 260px; }
.video-card.side .video-thumb { height: 140px; }
.video-play {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.video-card:hover .video-play { transform: scale(1.1); background: var(--blue); }
.video-card:hover .video-play svg path { fill: var(--white); }
.video-play svg { margin-left: 4px; }
.video-card.main .video-play { width: 72px; height: 72px; }
.video-duration {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.7); color: var(--white);
  font-size: 11px; padding: 3px 8px; border-radius: 4px;
}
.video-meta { padding: 16px 20px; }
.video-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.video-card.main .video-title { font-size: 18px; }
.video-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }
.side-videos { display: flex; flex-direction: column; gap: 24px; }
.video-accent { background: linear-gradient(135deg, #0A1929 0%, #0D2744 100%); }
.video-accent-2 { background: linear-gradient(135deg, #1A0A29 0%, #2D0D44 100%); }

/* ─── Trusted / Highlights ────────────────────────────── */
#highlights { background: var(--white); }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.highlight-card {
  background: var(--light-gray); border-radius: var(--radius-lg);
  padding: 32px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  opacity: 0; transition: var(--transition);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--white); }
.highlight-card:hover::before { opacity: 1; }
.highlight-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.icon-bg-blue { background: rgba(41,182,246,0.12); }
.icon-bg-pink { background: rgba(255,61,135,0.1); }
.icon-bg-green { background: rgba(34,197,94,0.1); }
.icon-bg-purple { background: rgba(139,92,246,0.1); }
.icon-bg-orange { background: rgba(249,115,22,0.1); }
.icon-bg-teal { background: rgba(20,184,166,0.1); }
.highlight-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.highlight-desc { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ─── CTA Banner ──────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2744 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta-blob-1 { background: rgba(41,182,246,0.15); width: 500px; height: 500px; top: -150px; right: -150px; }
.cta-blob-2 { background: rgba(255,61,135,0.1); width: 400px; height: 400px; bottom: -100px; left: -100px; }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 16px; line-height: 1.15;
}
.cta-title span {
  background: linear-gradient(135deg, var(--blue), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 40px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── Footer ──────────────────────────────────────────── */
footer {
  background: #060D15;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-img { height: 34px; }
.footer-logo-name {
  font-size: 15px; font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 280px; margin-bottom: 24px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--blue); }
.footer-col-title {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: var(--transition);
}
.footer-links a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-copy a { color: var(--blue); text-decoration: none; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none; transition: var(--transition);
}
.social-btn:hover { background: rgba(41,182,246,0.2); color: var(--blue); }

/* ─── Animations ──────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-layout { grid-template-columns: 1fr; gap: 48px; }
  .feature-preview { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .video-grid { grid-template-columns: 1fr; }
  .side-videos { flex-direction: row; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .highlight-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .slide-inner { grid-template-columns: 1fr; }
  .slide-sidebar { display: none; }
  .side-videos { flex-direction: column; }
  .preview-metric-row { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
