:root {
  --navy: #0d1f3c;
  --navy-mid: #122447;
  --teal: #0e7e70;
  --teal-light: #14a88f;
  --orange: #e8601a;
  --orange-light: #f07838;
  --white: #ffffff;
  --gray-light: #f4f6f9;
  --gray-mid: #e2e8f0;
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--navy); color: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; font-size: 16px; line-height: 1.6; }

/* ── NAV ─────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(13,31,60,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-dl {
  background: #fff; border-radius: 8px; padding: 5px 12px;
  display: flex; align-items: center; text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo-dl:hover { opacity: 0.85; }
.nav-logo-dl img { height: 32px; width: auto; display: block; }
.nav-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.nav-yodeck-logo { height: 36px; width: auto; display: block; }
.nav-badge { font-size: 12px; color: var(--teal-light); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.nav-cta {
  background: var(--orange); color: #fff; border: none;
  padding: 10px 26px; border-radius: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  letter-spacing: 0.02em; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s; white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────────────── */
#hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 120px 60px 80px; position: relative; overflow: hidden; text-align: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 60% 70% at 80% 40%, rgba(14,126,112,0.18) 0%, transparent 70%), radial-gradient(ellipse 40% 50% at 10% 80%, rgba(232,96,26,0.12) 0%, transparent 60%), var(--navy); }
.hero-grid { position: absolute; inset: 0; z-index: 0; opacity: 0.04; background-image: linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(14,126,112,0.2); border: 1px solid rgba(20,168,143,0.4); border-radius: 100px; padding: 7px 18px; font-size: 12px; font-weight: 600; color: var(--teal-light); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 36px; animation: fadeUp 0.6s ease both; }
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); display: inline-block; }
h1 { font-family: var(--font-head); font-size: clamp(44px, 5.5vw, 78px); font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 28px; animation: fadeUp 0.7s 0.1s ease both; }
h1 em { font-style: normal; color: var(--teal-light); }
h1 .accent { color: var(--orange); }
.hero-sub { font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 560px; margin: 0 auto 44px; animation: fadeUp 0.7s 0.2s ease both; }
.hero-actions { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
.btn-primary { background: var(--orange); color: #fff; border: none; padding: 15px 34px; border-radius: 10px; font-family: var(--font-body); font-size: 15px; font-weight: 600; letter-spacing: 0.02em; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,96,26,0.4); }
.btn-secondary { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.2); padding: 14px 26px; border-radius: 10px; font-family: var(--font-body); font-size: 15px; font-weight: 400; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero-stats { display: flex; gap: 0; margin-top: 72px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; animation: fadeUp 0.7s 0.4s ease both; justify-content: center; }
.stat { flex: 1; padding-right: 40px; }
.stat + .stat { padding-left: 40px; border-left: 1px solid rgba(255,255,255,0.1); }
.stat-num { font-family: var(--font-head); font-size: 38px; font-weight: 700; color: var(--orange); line-height: 1.1; letter-spacing: -0.01em; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 7px; font-weight: 400; letter-spacing: 0.02em; line-height: 1.4; }

/* ── SECTIONS ────────────────────────────────────────────────── */
section { padding: 100px 60px; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 18px; }
h2 { font-family: var(--font-head); font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; }

/* ── WHAT ────────────────────────────────────────────────────── */
#what { background: #fff; color: var(--navy); }
.what-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.what-text .section-label { color: var(--teal); }
.what-text h2 { color: var(--navy); margin-bottom: 20px; }
.what-text p { font-size: 16px; font-weight: 400; color: #4a5568; line-height: 1.75; }
.what-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.what-card { background: var(--gray-light); border-radius: 14px; padding: 24px; border-left: 3px solid var(--teal-light); }
.what-card:nth-child(2) { border-color: var(--orange); }
.what-card:nth-child(3) { border-color: var(--navy); }
.what-card:nth-child(4) { border-color: var(--teal); }
.what-card-title {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px; letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 10px;
}
.what-card-title i { color: var(--teal); font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; }
.what-card:nth-child(2) .what-card-title i { color: var(--orange); }
.what-card:nth-child(3) .what-card-title i { color: var(--navy); }
.what-card:nth-child(4) .what-card-title i { color: var(--teal-light); }
.what-card ul { list-style: none; }
.what-card ul li { font-size: 14px; color: #666; padding: 4px 0 4px 16px; position: relative; line-height: 1.5; }
.what-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-size: 11px; top: 5px; }

/* ── INDUSTRIES ──────────────────────────────────────────────── */
#industries { background: var(--navy-mid); }
.industries-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.industry-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 28px 22px; transition: all 0.3s; cursor: default; }
.industry-card:hover { background: rgba(20,168,143,0.1); border-color: rgba(20,168,143,0.3); transform: translateY(-4px); }
.industry-icon { font-size: 28px; margin-bottom: 14px; color: var(--teal-light); }
.industry-icon i { display: block; }
.industry-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 10px; color: #fff; letter-spacing: 0.01em; line-height: 1.3; }
.industry-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── WHY ─────────────────────────────────────────────────────── */
#why { background: var(--navy); }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-header { max-width: 560px; margin-bottom: 64px; }
.why-header h2 { margin-bottom: 16px; }
.why-header p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 32px 28px; transition: all 0.3s; }
.feature-card:hover { background: rgba(20,168,143,0.1); border-color: rgba(20,168,143,0.3); transform: translateY(-4px); }
.feature-icon { width: 46px; height: 46px; background: rgba(14,126,112,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 20px; color: var(--teal-light); }
.feature-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 10px; letter-spacing: 0.01em; }
.feature-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; margin-top: 60px; }
.stat-box { background: rgba(255,255,255,0.03); padding: 32px 28px; text-align: center; }
.stat-box-num { font-family: var(--font-head); font-size: 34px; font-weight: 700; color: var(--teal-light); letter-spacing: -0.01em; line-height: 1.1; }
.stat-box-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 8px; line-height: 1.4; }

/* ── PRICING ─────────────────────────────────────────────────── */
#pricing { background: #fff; color: var(--navy); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header .section-label { color: var(--teal); }
.pricing-header h2 { color: var(--navy); margin-bottom: 12px; }
.pricing-header p { font-size: 14px; color: #6b7280; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card { border-radius: 20px; padding: 36px 32px; position: relative; border: 2px solid var(--gray-mid); background: #fff; transition: transform 0.2s; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { background: var(--navy); color: #fff; border-color: var(--teal-light); transform: scale(1.04); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 18px; border-radius: 100px; white-space: nowrap; }
.pricing-tier { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.pricing-price { font-family: var(--font-head); font-size: 52px; font-weight: 700; color: var(--orange); line-height: 1; margin: 20px 0 4px; letter-spacing: -0.02em; }
.pricing-per { font-size: 13px; color: #9ca3af; margin-bottom: 8px; line-height: 1.4; }
.pricing-card.featured .pricing-per { color: rgba(255,255,255,0.5); }
.pricing-hw { display: inline-flex; align-items: center; gap: 7px; background: rgba(14,126,112,0.12); color: var(--teal); border-radius: 6px; padding: 5px 12px; font-size: 13px; font-weight: 600; margin-bottom: 24px; }
.pricing-card.featured .pricing-hw { background: rgba(20,168,143,0.2); color: var(--teal-light); }
.pricing-divider { height: 1px; background: var(--gray-mid); margin-bottom: 20px; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.12); }
.pricing-features { list-style: none; }
.pricing-features li { font-size: 13px; color: #4a5568; padding: 8px 0 8px 24px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.04); line-height: 1.45; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.07); }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; font-size: 13px; top: 8px; }
.pricing-card.featured .pricing-features li::before { color: var(--teal-light); }
.pricing-cta { display: block; text-align: center; margin-top: 28px; padding: 14px; border-radius: 10px; font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; background: var(--gray-light); color: var(--navy); }
.pricing-card.featured .pricing-cta { background: var(--orange); color: #fff; }
.pricing-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ── HARDWARE ────────────────────────────────────────────────── */
#hardware { background: var(--navy-mid); }
.hardware-inner { max-width: 1100px; margin: 0 auto; }
.hardware-header { max-width: 560px; margin-bottom: 56px; }
.hardware-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hw-card { border-radius: 20px; overflow: hidden; }
.hw-card-header { padding: 32px 32px 24px; background: var(--navy); border: 1px solid rgba(255,255,255,0.08); border-bottom: none; border-radius: 20px 20px 0 0; }
.hw-card:last-child .hw-card-header { background: var(--teal); }
.hw-free-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 14px; border-radius: 6px; margin-bottom: 14px; }
.hw-name { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -0.01em; }
.hw-ram { display: inline-block; background: var(--orange); color: #fff; font-weight: 700; font-size: 13px; padding: 4px 14px; border-radius: 6px; margin-bottom: 12px; letter-spacing: 0.04em; }
.hw-spec { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.4; }
.hw-card-body { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-top: none; border-radius: 0 0 20px 20px; padding: 24px 32px 28px; }
.hw-plan-badge { font-size: 13px; font-weight: 600; color: var(--orange); letter-spacing: 0.02em; margin-bottom: 16px; display: block; }
.hw-features { list-style: none; }
.hw-features li { font-size: 13px; color: rgba(255,255,255,0.65); padding: 9px 0 9px 22px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.5; }
.hw-features li::before { content: '✓'; position: absolute; left: 0; color: var(--teal-light); font-weight: 700; top: 9px; }
.hw-steps { display: flex; gap: 0; margin-top: 40px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; }
.hw-step { flex: 1; padding: 24px 16px; text-align: center; position: relative; }
.hw-step + .hw-step::before { content: '→'; position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.35); font-size: 16px; }
.hw-step-icon { font-size: 22px; margin-bottom: 10px; color: rgba(255,255,255,0.75); }
.hw-step-label { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.01em; }
.hw-step-sub { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 5px; line-height: 1.4; }

/* ── TICKER ──────────────────────────────────────────────────── */
#brands { background: var(--navy); padding: 60px 0; overflow: hidden; }
.brands-label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 30px; }
.ticker-wrap { overflow: hidden; position: relative; }
.ticker-wrap::before, .ticker-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; }
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--navy), transparent); }
.ticker { display: flex; align-items: center; animation: ticker 28s linear infinite; width: max-content; }
.ticker-item { padding: 0 28px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.ticker-logo { width: auto; max-width: 120px; display: block; filter: grayscale(1) brightness(0) invert(1); opacity: 0.4; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── DUAL ────────────────────────────────────────────────────── */
#dual { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); }
.dual-inner { max-width: 1200px; margin: 0 auto; }
.dual-header { max-width: 640px; margin-bottom: 60px; }
.dual-header h2 span { color: var(--teal-light); }
.dual-header p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-top: 16px; }
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.dual-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px; display: flex; gap: 20px; transition: all 0.3s; }
.dual-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(20,168,143,0.25); transform: translateY(-2px); }
.dual-card-icon { width: 50px; height: 50px; flex-shrink: 0; background: rgba(232,96,26,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--orange); }
.dual-card-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: 0.01em; }
.dual-card-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }
.integrations-bar { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px 28px; display: flex; gap: 0; align-items: center; overflow: hidden; }
.int-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); white-space: nowrap; margin-right: 24px; flex-shrink: 0; }
.int-items { display: flex; overflow: hidden; }
.int-item { padding: 0 20px; font-size: 13px; color: rgba(255,255,255,0.4); white-space: nowrap; border-left: 1px solid rgba(255,255,255,0.08); }
.int-item:first-child { border-left: none; padding-left: 0; }
.int-item::before { content: '⚡ '; }

/* ── CTA ─────────────────────────────────────────────────────── */
#cta { background: var(--teal); padding: 100px 60px; text-align: center; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 70%); }
.cta-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.cta-steps { display: flex; gap: 16px; justify-content: center; margin-bottom: 56px; }
.cta-step {
  display: flex; align-items: flex-start; gap: 18px; text-align: left;
  flex: 1; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 16px; padding: 24px 22px;
}
.cta-step-num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,0.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 18px; font-weight: 800; color: #fff;
}
.cta-step-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cta-step-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.55; }
#cta h2 { font-family: var(--font-head); font-size: clamp(30px, 3.8vw, 50px); font-weight: 700; color: #fff; margin-bottom: 18px; letter-spacing: -0.01em; max-width: 700px; margin-left: auto; margin-right: auto; }
#cta p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 44px; line-height: 1.65; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.btn-white { background: #fff; color: var(--teal); border: none; padding: 15px 34px; border-radius: 10px; font-family: var(--font-body); font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); padding: 13px 28px; border-radius: 10px; font-family: var(--font-body); font-size: 15px; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.contact-info { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.8); text-decoration: none; line-height: 1.4; }
.contact-item i { font-size: 15px; opacity: 0.85; }
.contact-item strong { font-weight: 700; color: #fff; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: #080f1e; padding: 32px 60px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-pill { background: #fff; border-radius: 6px; padding: 4px 10px; }
.footer-logo-pill img { height: 24px; width: auto; display: block; }
.footer-yodeck-logo { height: 22px; width: auto; display: block; }
.footer-text { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-text a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-text a:hover { color: rgba(255,255,255,0.8); }
.footer-badge { font-size: 13px; font-weight: 600; color: var(--orange); letter-spacing: 0.04em; }

/* ── VIDEO ───────────────────────────────────────────────────── */
#video { background: var(--navy); padding: 100px 60px; position: relative; overflow: hidden; }
#video::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(14,126,112,0.1) 0%, transparent 70%); pointer-events: none; }
.video-inner { max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.video-header { text-align: center; margin-bottom: 48px; }
.video-header h2 { margin-bottom: 14px; }
.video-header p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.video-frame-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(14,126,112,0.15); }
.video-frame-wrap::before { content: ''; position: absolute; inset: 0; z-index: 2; border-radius: 20px; background: linear-gradient(135deg, rgba(20,168,143,0.25) 0%, transparent 30%), linear-gradient(315deg, rgba(232,96,26,0.15) 0%, transparent 30%); pointer-events: none; }
.video-thumbnail { position: relative; cursor: pointer; display: block; aspect-ratio: 16/9; background: #000; }
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease, filter 0.4s ease; filter: brightness(0.75); }
.video-thumbnail:hover img { transform: scale(1.03); filter: brightness(0.55); }
.video-iframe-wrap { display: none; position: relative; aspect-ratio: 16/9; background: #000; }
.video-iframe-wrap iframe { width: 100%; height: 100%; border: none; }
.play-btn { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; justify-content: center; }
.play-btn-inner { width: 86px; height: 86px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.25s, background 0.2s; animation: pulse-ring 2.2s ease-out infinite; }
.video-thumbnail:hover .play-btn-inner { transform: scale(1.1); background: var(--orange-light); box-shadow: 0 12px 40px rgba(232,96,26,0.55); }
.play-btn-inner svg { width: 30px; height: 30px; fill: #fff; margin-left: 4px; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(232,96,26,0.55); } 70% { box-shadow: 0 0 0 22px rgba(232,96,26,0); } 100% { box-shadow: 0 0 0 0 rgba(232,96,26,0); } }
@keyframes pulse-ring-teal { 0% { box-shadow: 0 0 0 0 rgba(14,126,112,0.6); } 70% { box-shadow: 0 0 0 22px rgba(14,126,112,0); } 100% { box-shadow: 0 0 0 0 rgba(14,126,112,0); } }
.video-caption { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 22px; font-size: 13px; color: rgba(255,255,255,0.35); }
.video-caption span { color: var(--teal-light); font-weight: 600; }
.vc-sep { color: rgba(255,255,255,0.25); font-weight: 400; }
.vc-link { color: var(--teal-light); font-weight: 700; text-decoration: none; }
.vc-link:hover { text-decoration: underline; }
.two-video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 24px; }
.video-card { display: flex; flex-direction: column; gap: 16px; }
.video-card-label { display: flex; align-items: center; gap: 14px; }
.vc-num { width: 36px; height: 36px; flex-shrink: 0; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #fff; }
.vc-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #fff; line-height: 1.25; letter-spacing: 0.01em; }
.vc-sub { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* ── INTEGRATIONS TICKER (mobile) ───────────────────────────── */
@keyframes intScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MODAL ───────────────────────────────────────────────────── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(5,12,28,0.82); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; animation: modalFadeIn 0.25s ease; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal { background: #fff; border-radius: 20px; width: 100%; max-width: 520px; overflow: hidden; animation: modalSlideUp 0.3s ease; position: relative; }
@keyframes modalSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.modal-header { background: var(--navy); padding: 32px 36px 28px; position: relative; }
.modal-header-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(20,168,143,0.2); border: 1px solid rgba(20,168,143,0.35); border-radius: 100px; padding: 5px 14px; font-size: 12px; font-weight: 700; color: var(--teal-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.modal-header-badge span { width: 5px; height: 5px; border-radius: 50%; background: var(--teal-light); display: inline-block; }
.modal-title { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 8px; }
.modal-subtitle { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.modal-close { position: absolute; top: 20px; right: 20px; width: 34px; height: 34px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1; transition: background 0.2s; font-family: var(--font-body); }
.modal-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
.modal-body { padding: 28px 36px 36px; }
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: #374151; letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input, .form-group select { padding: 11px 14px; border: 1.5px solid #e5e7eb; border-radius: 8px; font-family: var(--font-body); font-size: 14px; color: #111827; background: #f9fafb; outline: none; transition: border-color 0.2s, background 0.2s; -webkit-appearance: none; }
.form-group input::placeholder { color: #9ca3af; }
.form-group input:focus, .form-group select:focus { border-color: var(--teal-light); background: #fff; box-shadow: 0 0 0 3px rgba(20,168,143,0.12); }
.form-group select { cursor: pointer; }
.modal-submit { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--orange); color: #fff; border: none; padding: 15px 28px; border-radius: 10px; font-family: var(--font-body); font-size: 15px; font-weight: 700; letter-spacing: 0.02em; cursor: pointer; width: 100%; margin-top: 4px; transition: background 0.2s, transform 0.15s; }
.modal-submit:hover { background: var(--orange-light); transform: translateY(-1px); }
.modal-fine { text-align: center; font-size: 13px; color: #9ca3af; margin-top: 12px; line-height: 1.5; }
.captcha-row { display: flex; align-items: center; gap: 12px; }
.captcha-question { background: #f3f4f6; border: 1.5px solid #e5e7eb; border-radius: 8px; padding: 10px 16px; font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy); white-space: nowrap; flex-shrink: 0; letter-spacing: 0.04em; }
.captcha-eq { font-size: 18px; color: #9ca3af; flex-shrink: 0; }
.captcha-input { width: 80px !important; text-align: center; font-size: 18px !important; font-weight: 700 !important; }
.captcha-refresh { background: none; border: 1.5px solid #e5e7eb; border-radius: 8px; width: 36px; height: 36px; cursor: pointer; font-size: 16px; color: #6b7280; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s; flex-shrink: 0; }
.captcha-refresh:hover { border-color: var(--teal-light); color: var(--teal); }
.modal-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 48px 36px; gap: 16px; }
.modal-success.show { display: flex; animation: modalFadeIn 0.3s ease; }
.success-icon { width: 64px; height: 64px; background: rgba(14,126,112,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.success-icon i { font-size: 28px; color: var(--teal); }
.success-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.success-desc { font-size: 14px; color: #6b7280; line-height: 1.65; max-width: 340px; }
.success-close { background: var(--navy); color: #fff; border: none; padding: 13px 32px; border-radius: 10px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; margin-top: 8px; transition: opacity 0.2s; }
.success-close:hover { opacity: 0.85; }

/* ── RESPONSIVE: tablet (≤900px) ────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  section, #hero { padding: 72px 24px; }
  .what-inner { grid-template-columns: 1fr; gap: 40px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .hardware-grid { grid-template-columns: 1fr; }
  .dual-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; min-width: unset; padding: 20px 28px; }
  .stat + .stat { border-left: none; padding-left: 28px; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-child(1), .stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
  .hw-step + .hw-step::before { display: none; }
  .two-video-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 28px 24px; }
  .footer-logo { justify-content: center; }
  .cta-steps { flex-direction: column; }
  .modal { max-width: 100%; border-radius: 16px; }
  .modal-header, .modal-body { padding-left: 24px; padding-right: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE: mobile (≤640px) ────────────────────────────── */
@media (max-width: 640px) {
  .integrations-bar { flex-direction: column; gap: 10px; padding: 16px 20px; overflow: hidden; position: relative; }
  .integrations-bar::after { content: ''; position: absolute; right: 0; bottom: 0; height: 38px; width: 56px; background: linear-gradient(to left, rgba(13,31,60,0.95), transparent); pointer-events: none; z-index: 1; }
  .int-label { margin-right: 0; }
  .int-items { display: flex; width: max-content; animation: intScroll 18s linear infinite; }
  .int-item { white-space: nowrap; }
  nav { padding: 14px 20px; }
  .nav-badge { display: none; }
  .nav-yodeck-logo { height: 26px; }
  .nav-logo-dl img { height: 26px; }
  .nav-cta { padding: 8px 18px; font-size: 13px; }
  section, #hero { padding: 60px 20px; }
  #hero { padding-top: 80px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; flex-wrap: unset; }
  .stat { flex: unset; padding: 16px 14px; }
  .stat + .stat { border-left: none; padding-left: 14px; }
  .features-grid { grid-template-columns: 1fr; }
  .hw-steps { flex-wrap: wrap; }
  .hw-step { min-width: 50%; }
  footer { padding: 24px 20px; }
  #cta { padding: 60px 20px; }
  .video-caption { flex-direction: column; gap: 5px; text-align: center; }
  .vc-sep { display: none; }
}

/* ── RESPONSIVE: small mobile (≤480px) ──────────────────────── */
@media (max-width: 480px) {
  .what-cards { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE: tiny (≤400px) ──────────────────────────────── */
@media (max-width: 400px) {
  .nav-divider { display: none; }
  .nav-yodeck-logo { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
}
