/* ==========================================================================
   LOCSET - PREMIUM DARK DESIGN SYSTEM
   Brand Accent: #ff383b
   ========================================================================== */

:root {
  --color-brand: #ff383b;
  --color-brand-hover: #e0282b;
  --color-brand-glow: rgba(255, 56, 59, 0.4);
  --color-brand-subtle: rgba(255, 56, 59, 0.12);
  --color-brand-border: rgba(255, 56, 59, 0.3);

  --bg-base: #090a0d;
  --bg-surface-1: #111319;
  --bg-surface-2: #161922;
  --bg-surface-3: #1d212d;
  --bg-glass-card: rgba(20, 23, 31, 0.7);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.22);

  --text-primary: #ffffff;
  --text-secondary: #9ea4b6;
  --text-muted: #656c80;
  --text-accent: #ff4d50;

  --success-color: #10b981;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-brand: 0 10px 35px var(--color-brand-glow);

  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Fira Code", monospace;

  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% -12%, rgba(255, 56, 59, 0.15) 0%, transparent 65%),
              radial-gradient(circle at 85% 35%, rgba(255, 56, 59, 0.06) 0%, transparent 45%),
              var(--bg-base);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(9, 10, 13, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(255, 56, 59, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

/* Premium Tactile Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-align: center;
  position: relative;
  letter-spacing: -0.01em;
}

/* High-End Apple-Grade Primary Red Button */
.btn-primary {
  background: linear-gradient(180deg, #ff4d50 0%, #ff383b 45%, #e2262a 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -1px 0 rgba(0, 0, 0, 0.25) inset,
    0 4px 18px rgba(255, 56, 59, 0.45),
    0 2px 4px rgba(0, 0, 0, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ff5c5f 0%, #ff4447 45%, #ea2e32 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 -1px 0 rgba(0, 0, 0, 0.25) inset,
    0 8px 26px rgba(255, 56, 59, 0.65),
    0 3px 6px rgba(0, 0, 0, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.4) inset,
    0 2px 8px rgba(255, 56, 59, 0.35);
}

.btn-secondary {
  background: linear-gradient(180deg, rgba(35, 40, 52, 0.8) 0%, rgba(22, 25, 34, 0.9) 100%);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 4px 12px rgba(0, 0, 0, 0.35);
}

.btn-secondary:hover {
  background: linear-gradient(180deg, rgba(45, 52, 68, 0.9) 0%, rgba(28, 33, 44, 0.95) 100%);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 15px 34px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--color-brand-subtle);
  border: 1px solid var(--color-brand-border);
  border-radius: var(--radius-full);
  color: var(--text-accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-brand);
  box-shadow: 0 0 10px var(--color-brand);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Hero Section */
.hero-section {
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: clamp(2.3rem, 5.2vw, 4.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: #ffffff;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #ff8082 70%, #ff383b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 34px auto;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.guarantee-item svg {
  color: var(--success-color);
}

/* Hero Clean Mac Showcase */
.showcase-wrapper {
  margin-top: 30px;
  position: relative;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(255, 56, 59, 0.2) 0%, rgba(255, 56, 59, 0.03) 55%, transparent 75%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.clean-mac-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: block;
}

/* Proof & Value Bar */
.proof-bar {
  padding: 34px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(17, 19, 25, 0.4);
  margin: 60px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.proof-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  flex-shrink: 0;
}

.proof-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.proof-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Section Header */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Cards & Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-brand-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 56, 59, 0.1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-brand-subtle);
  border: 1px solid var(--color-brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  margin-bottom: 22px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 18px;
}

/* Dedicated Video Showcase Section (Fast Demo) */
.video-showcase-section {
  padding: 70px 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 56, 59, 0.08) 0%, transparent 70%);
}

.video-showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.video-phone-wrapper {
  max-width: 290px;
  margin: 0 auto;
  border-radius: 36px;
  padding: 8px;
  background: linear-gradient(145deg, #2b2e3a 0%, #161820 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.video-phone-screen {
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 19.5;
}

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

/* Use Cases Banner */
.use-case-banner {
  background: linear-gradient(135deg, rgba(23, 26, 34, 0.9) 0%, rgba(17, 19, 25, 0.95) 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 44px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

.use-case-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  background: #0f1117;
}

.dating-blur-asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.use-case-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 56, 59, 0.15);
  color: var(--text-accent);
  border: 1px solid var(--color-brand-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.use-case-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.use-case-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.use-case-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.use-case-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.use-case-points svg {
  color: var(--color-brand);
  flex-shrink: 0;
}

/* How It Works Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
}

.step-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}

.step-card:hover .step-number {
  color: rgba(255, 56, 59, 0.18);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Feature Spotlight Split */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}

.feature-split.reverse {
  direction: rtl;
}

.feature-split.reverse > * {
  direction: ltr;
}

.feature-media {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.feature-media img {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

.feature-media-compact {
  max-width: 320px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 6px;
  background: linear-gradient(145deg, #282c37 0%, #151821 100%);
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.feature-media-compact img {
  border-radius: 22px;
  width: 100%;
  height: auto;
  display: block;
}

.feature-content h3 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.25;
}

.feature-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Pricing Section */
.pricing-section {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(255, 56, 59, 0.1) 0%, transparent 60%);
}

.pricing-card-wrapper {
  max-width: 580px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(180deg, var(--bg-surface-2) 0%, var(--bg-surface-1) 100%);
  border: 2px solid var(--color-brand);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-brand), var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-brand);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(255, 56, 59, 0.5);
}

.pricing-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.pricing-price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.pricing-strike-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-strike {
  font-size: 1.35rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.price-discount-badge {
  background: rgba(255, 56, 59, 0.18);
  border: 1px solid var(--color-brand-border);
  color: var(--text-accent);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-currency {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.price-val {
  font-size: 4.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
}

.price-period {
  color: var(--text-muted);
  font-size: 1rem;
}

.coupon-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--color-brand-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.coupon-code {
  background: var(--color-brand-subtle);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 800;
  font-family: var(--font-mono);
  border: 1px solid var(--color-brand);
  letter-spacing: 0.05em;
}

.coupon-action {
  font-size: 0.8rem;
  color: var(--text-accent);
  background: rgba(255, 56, 59, 0.12);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.coupon-box:hover .coupon-action {
  background: var(--color-brand);
  color: #ffffff;
}

.price-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0 28px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.price-features svg {
  color: var(--success-color);
  flex-shrink: 0;
}

.tax-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.no-bs-banner {
  background: rgba(255, 56, 59, 0.08);
  border: 1px solid var(--color-brand-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 22px;
  line-height: 1.5;
  text-align: left;
}

.ios-policy-note {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 16px;
  text-align: left;
}

.payment-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.84rem;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-item.active {
  border-color: var(--color-brand-border);
  background: var(--bg-surface-2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-smooth);
  color: var(--text-secondary);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--color-brand);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 26px 24px 26px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-answer-inner p + p {
  margin-top: 12px;
}

/* Category pills on dedicated FAQ page */
.faq-category-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-pill {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.category-pill.active, .category-pill:hover {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #ffffff;
}

/* CTA Footer Strip */
.cta-strip {
  background: linear-gradient(135deg, rgba(255, 56, 59, 0.15) 0%, rgba(18, 20, 26, 0.8) 100%);
  border: 1px solid var(--color-brand-border);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-strip-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 30px auto;
  font-size: 1.05rem;
}

/* Content Page (Privacy / Terms) */
.content-box {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-top: 40px;
}

.content-box h2 {
  font-size: 1.5rem;
  margin: 32px 0 14px 0;
  color: var(--text-primary);
}

.content-box h2:first-of-type {
  margin-top: 0;
}

.content-box p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.content-box ul {
  color: var(--text-secondary);
  margin: 0 0 20px 24px;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: #07080a;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 35px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-brand h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand p {
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-heading {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-brand);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 30px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 14px;
}

/* Form Elements (Contact Page) */
.contact-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
  margin-top: 30px;
}

.form-group {
  margin-bottom: 22px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.98rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px var(--color-brand-subtle);
  background: var(--bg-surface-3);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-help {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.recaptcha-wrapper {
  margin: 20px 0 24px 0;
}

/* Mobile & Responsive */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 992px) {
  .cards-grid, .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .use-case-banner {
    grid-template-columns: 1fr;
  }
  .video-showcase-container {
    grid-template-columns: 1fr;
  }
  .feature-split, .feature-split.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface-1);
    padding: 24px;
    border-bottom: 1px solid var(--border-medium);
    gap: 18px;
  }
  .mobile-menu-btn {
    display: block;
  }
  .cards-grid, .cards-grid-4, .proof-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 36px 20px;
  }
  .video-showcase-container {
    padding: 24px;
  }
}
