/* ===== LANDING PAGE — JobDiary ===== */
:root {
  --bg: #050a18;
  --bg-card: #0c1225;
  --bg-card-hover: #111a33;
  --border: rgba(255,255,255,0.06);
  --accent: #f97316;
  --accent-glow: rgba(249,115,22,0.12);
  --accent-hover: #fb923c;
  --purple: #8b5cf6;
  --purple-glow: rgba(139,92,246,0.10);
  --green: #10b981;
  --text: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --font: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

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

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5,10,24,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  transition: var(--transition);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.5px;
  text-transform: lowercase;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--accent); color: #000; font-weight: 700;
  padding: 10px 24px; border-radius: 8px; font-size: 0.82rem;
  border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

.nav-mobile-btn {
  display: none; background: none; border: none; color: #fff;
  cursor: pointer; padding: 4px;
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, rgba(139,92,246,0.05) 40%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-glow); border: 1px solid rgba(249,115,22,0.2);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.72rem; font-weight: 600; color: var(--accent);
  margin-bottom: 20px;
}
.hero-badge::before { content: '⚡'; }
.hero h1 {
  font-size: 3.2rem; font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 20px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 32px; max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #000; font-weight: 700;
  padding: 14px 32px; border-radius: 10px; font-size: 0.9rem;
  border: none; cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,115,22,0.3); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border); font-weight: 600;
  padding: 14px 32px; border-radius: 10px; font-size: 0.9rem;
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-image img {
  width: 100%; max-width: 420px; border-radius: 20px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat-num { font-size: 1.8rem; font-weight: 900; color: #fff; }
.hero-stat-label { font-size: 0.75rem; color: var(--text-dim); margin-top: 2px; }

/* ===== MARQUEE TICKERS ===== */
.logos-marquee-section {
  padding: 40px 0 20px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-wrapper {
  margin-bottom: 24px;
  position: relative;
}
.marquee-wrapper:last-child {
  margin-bottom: 0;
}
.marquee-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
  opacity: 0.8;
}
.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 30px;
  position: relative;
  width: 100%;
}
.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  min-width: 100%;
  gap: 30px;
  animation: scroll-marquee 25s linear infinite;
}
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 30px)); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 980px;
  transition: all 0.2s ease;
}
.marquee-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}
.brand-logo {
  flex-shrink: 0;
}
.brand-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

/* Partnerships Ticker Custom Colors */
.steel-marquee {
  background: #1c4573;
}
.steel-marquee .marquee-container::before {
  background: linear-gradient(to right, #1c4573 0%, transparent 100%);
}
.steel-marquee .marquee-container::after {
  background: linear-gradient(to left, #1c4573 0%, transparent 100%);
}
.steel-marquee .marquee-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}
.steel-marquee .marquee-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}
.steel-marquee .partner-logo text,
.steel-marquee .partner-logo tspan {
  fill: #ffffff;
}

/* ===== SECTION COMMON ===== */
.section { padding: 100px 0; }
.section-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent); margin-bottom: 12px;
  display: block; text-align: center;
}
.section-title {
  font-size: 2.4rem; font-weight: 900; text-align: center;
  letter-spacing: -1px; margin-bottom: 16px; line-height: 1.15;
}
.section-subtitle {
  text-align: center; font-size: 0.95rem; color: var(--text-muted);
  max-width: 580px; margin: 0 auto 56px; line-height: 1.6;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card:hover {
  border-color: rgba(249,115,22,0.2);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.feature-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.icon-wrap-purple { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.icon-wrap-blue { background: rgba(59,130,246,0.1); color: #3b82f6; }
.icon-wrap-red { background: rgba(239,68,68,0.1); color: #ef4444; }
.icon-wrap-cyan { background: rgba(6,182,212,0.1); color: #06b6d4; }
.icon-wrap-green { background: rgba(16,185,129,0.1); color: #10b981; }
.icon-wrap-gold { background: rgba(245,166,35,0.1); color: #f5a623; }
.icon-wrap-indigo { background: rgba(99,102,241,0.1); color: #6366f1; }
.icon-wrap-orange { background: rgba(249,115,22,0.1); color: #f97316; }

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1);
}
.feature-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; counter-reset: step;
}
.how-step {
  text-align: center; padding: 0 16px; position: relative;
}
.how-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: #000; font-weight: 900; font-size: 1.2rem;
  margin: 0 auto 20px;
}
.how-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.how-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ===== APP PREVIEW ===== */
.preview-section { position: relative; }
.preview-img-wrap {
  display: flex; justify-content: center;
  position: relative;
}
.preview-img-wrap img {
  width: 100%; max-width: 820px; border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.preview-img-wrap::before {
  content: ''; position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.06), transparent 70%);
  pointer-events: none;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: stretch;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  display: flex; flex-direction: column; transition: var(--transition);
}
.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(249,115,22,0.06) 0%, var(--bg-card) 50%);
  position: relative;
}
.pricing-card.popular::before {
  content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent); color: #000; font-size: 0.62rem;
  font-weight: 800; padding: 4px 16px; border-radius: 100px;
  letter-spacing: 1px;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.pricing-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.pricing-desc { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 20px; }
.pricing-price {
  font-size: 2.8rem; font-weight: 900; margin-bottom: 4px;
}
.pricing-price span { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.pricing-period { font-size: 0.72rem; color: var(--text-dim); margin-bottom: 24px; }
.pricing-features { list-style: none; flex: 1; margin-bottom: 28px; }
.pricing-features li {
  font-size: 0.82rem; color: var(--text-muted); padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before {
  content: '✓'; color: var(--green); font-weight: 700; font-size: 0.75rem;
  flex-shrink: 0;
}
.pricing-btn {
  width: 100%; padding: 14px; border-radius: 10px;
  font-weight: 700; font-size: 0.85rem; cursor: pointer;
  transition: var(--transition); border: none; text-align: center;
}
.pricing-btn.primary { background: var(--accent); color: #000; }
.pricing-btn.primary:hover { background: var(--accent-hover); }
.pricing-btn.outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.pricing-btn.outline:hover { border-color: rgba(255,255,255,0.2); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.testimonial-stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: #000;
}
.testimonial-name { font-size: 0.82rem; font-weight: 700; }
.testimonial-role { font-size: 0.7rem; color: var(--text-dim); }

/* ===== FAQ ===== */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 700; font-size: 0.95rem;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--text-dim); transition: var(--transition); }
.faq-item.open .faq-q::after { content: '−'; color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding-top: 12px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(139,92,246,0.08));
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: 24px; padding: 64px 40px;
  text-align: center; margin: 0 24px;
}
.cta-banner h2 {
  font-size: 2.2rem; font-weight: 900; margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.cta-banner p {
  font-size: 0.95rem; color: var(--text-muted); margin-bottom: 32px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; text-transform: lowercase; }
.footer-brand span { color: var(--accent); }
.footer-tagline { font-size: 0.8rem; color: var(--text-dim); line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-dim); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.82rem; color: var(--text-muted);
  padding: 4px 0; transition: var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: var(--text-dim);
}

/* ===== VIDEO WALKTHROUGH ===== */
.video-section {
  position: relative;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
  transition: var(--transition);
}
.video-wrapper:hover {
  border-color: rgba(249,115,22,0.3);
  box-shadow: 0 40px 100px rgba(249,115,22,0.1);
}

/* ===== WALKTHROUGH SIMULATOR ===== */
.sim-screen {
  width: 100%;
  height: 100%;
  display: flex;
  background: #050a18;
  font-family: var(--font);
  overflow: hidden;
  position: relative;
}

/* Left side presentation style */
.sim-presentation {
  width: 40%;
  background: rgba(12, 18, 37, 0.9);
  border-right: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  text-align: left;
}
.sim-slide-text {
  opacity: 0.25;
  transform: translateX(-10px);
  transition: all 0.5s ease;
}
.sim-slide-text.active {
  opacity: 1;
  transform: translateX(0);
}
.sim-slide-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.sim-slide-text h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.sim-slide-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Right side phone mockup style */
.sim-phone-container {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(139,92,246,0.1), transparent 70%);
  padding: 16px;
}
.sim-phone {
  width: 210px;
  height: 380px;
  background: #000;
  border-radius: 28px;
  border: 8px solid #1e293b;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sim-phone-status {
  height: 22px;
  background: #000;
  color: #fff;
  font-size: 0.55rem;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.sim-phone-notch {
  width: 70px;
  height: 12px;
  background: #000;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.sim-phone-screen {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #050a18;
}
.phone-scr {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
}
.phone-scr.active {
  opacity: 1;
  pointer-events: auto;
}
.phone-header {
  height: 36px;
  background: #0c1225;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 0.68rem;
  font-weight: 800;
}
.phone-profile-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
}
.phone-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  font-size: 0.65rem;
}
.scr-title {
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.phone-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: 0.52rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-val {
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
  margin-top: 2px;
}
.phone-card-mini {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.activity-list {
  display: grid;
  gap: 6px;
  margin-top: 6px;
}
.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.02);
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.52rem;
}
.green-text { color: var(--green); }

/* Inputs and Forms */
.sim-lbl {
  font-size: 0.52rem;
  color: var(--text-muted);
  margin-bottom: 2px;
  display: block;
}
.sim-fake-input {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.6rem;
  color: #fff;
  text-align: left;
  min-height: 24px;
}
.sim-fake-tier {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px;
  font-size: 0.5rem;
  text-align: center;
  color: var(--text-muted);
}
.sim-fake-tier.active {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: #fff;
}
.sim-fake-btn {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.65rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

/* WhatsApp Message Styles */
.wa-message {
  align-self: flex-start;
  background: #fff;
  color: #000;
  padding: 8px;
  border-radius: 8px;
  max-width: 85%;
  font-size: 0.55rem;
  line-height: 1.3;
  margin-bottom: 20px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.15);
  text-align: left;
}
.wa-link {
  color: #00a5f4;
  text-decoration: underline;
  cursor: pointer;
}
.sim-pointer {
  position: absolute;
  font-size: 1.2rem;
  z-index: 100;
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  pointer-events: none;
}

/* Customer Pay Portal styles */
.pay-card {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  text-align: left;
}
.sim-sig-area {
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  height: 52px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.sig-path-svg {
  width: 100%;
  height: 100%;
}
.success-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  border: 2px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleUp 0.5s ease-out;
}

@keyframes scaleUp {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Custom Controls Style */
.custom-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: linear-gradient(0deg, rgba(5,10,24,0.95) 0%, rgba(5,10,24,0.8) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  z-index: 10;
}
.control-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.control-btn:hover {
  color: var(--accent);
}
.time-display, .duration-display {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  width: 32px;
}
.seek-bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  outline: none;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.seek-bar::-webkit-slider-runnable-track {
  background: transparent;
}
.seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  margin-top: -4px;
  transition: var(--transition);
}
.seek-bar:hover::-webkit-slider-thumb {
  transform: scale(1.2);
  background: #fff;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 24, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 20;
}
.video-play-overlay:hover {
  background: rgba(5, 10, 24, 0.25);
}
.video-play-btn {
  width: 76px;
  height: 76px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(249,115,22,0.4);
  transition: var(--transition);
}
.video-play-btn svg {
  margin-left: 4px; /* Align play triangle */
}
.video-wrapper:hover .video-play-btn {
  transform: scale(1.1);
  background: #fff;
  box-shadow: 0 10px 30px rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .hero { padding: 100px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { margin: 0 auto 24px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 280px; }
  .features-grid, .how-steps, .pricing-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .section-title { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-banner { padding: 40px 20px; margin: 0 12px; }
  .cta-banner h2 { font-size: 1.6rem; }
  .video-wrapper {
    aspect-ratio: auto;
    height: 480px;
    max-width: 320px;
  }
  .video-play-btn {
    width: 60px;
    height: 60px;
  }
  .sim-presentation {
    display: none !important;
  }
  .sim-phone-container {
    width: 100% !important;
  }
}

/* ===== WALKTHROUGH NEW COMPONENTS ===== */
#sim-scanner-laser {
  animation: scanLaser 2.5s linear infinite;
}
@keyframes scanLaser {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(139, 92, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}
@keyframes slideIn {
  0% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ===== HERO VIDEO TRIGGER (GaragePilot Style) ===== */
.hero-video-trigger {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}

.hero-video-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.hero-video-trigger:hover img {
  transform: scale(1.01);
  filter: brightness(0.9);
}

.hero-video-trigger img {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

.hero-video-trigger:hover .video-play-overlay {
  opacity: 1;
  transform: scale(1.05);
}

.play-button-pulse {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  animation: pulse-ring 2s infinite;
}

.play-button-pulse svg {
  margin-left: 4px; /* offset play icon alignment visual center */
}

.hero-video-trigger:hover .play-button-pulse {
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.4), 0 0 0 8px rgba(249, 115, 22, 0.2);
}

.hero-video-trigger .video-play-overlay span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 14px;
  border-radius: 980px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hero-video-trigger:hover .video-play-overlay span {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ===== WALKTHROUGH TEASER CARD ===== */
.walkthrough-teaser-card {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: var(--transition);
}
.walkthrough-teaser-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 40px 100px rgba(249, 115, 22, 0.1);
}
.teaser-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.walkthrough-teaser-card:hover .teaser-img {
  transform: scale(1.02);
}
.teaser-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 24, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 5;
  transition: var(--transition);
}
.walkthrough-teaser-card:hover .teaser-play-overlay {
  background: rgba(5, 10, 24, 0.25);
}
.teaser-play-overlay span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 18px;
  border-radius: 980px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* ===== VIDEO MODAL (GaragePilot Style) ===== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 24, 0.85);
  backdrop-filter: saturate(180%) blur(15px);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
}

.video-modal-container {
  position: relative;
  width: 90%;
  max-width: 960px;
  background: #0c1225;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 50px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1001;
}

.video-modal.active .video-modal-container {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 1002;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: scale(1.05);
}

.video-modal-body {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 24px;
}

.modal-tab-btn {
  font-family: var(--font);
}
.modal-tab-btn.active {
  color: #fff !important;
  border-bottom: 2px solid var(--accent) !important;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(249, 115, 22, 0.4);
  }
  70% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(249, 115, 22, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

@media (max-width: 768px) {
  .video-modal-close {
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
  }
  .walkthrough-teaser-card {
    aspect-ratio: auto;
    height: 320px;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: slideInUp 0.4s ease-out;
}
.cookie-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.btn-cookie-reject {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.05);
}
.btn-cookie-accept {
  background: var(--accent);
  border: none;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover {
  background: #fff;
  transform: translateY(-1px);
}
@keyframes slideInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}



