/* Orbit Tech LLC Website */
/* Two-section site: Company (/) + Product (/orbit-finance/) */

/* ========================================================================
   Reset & Base
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  /* Brand colors */
  --color-primary: #6366f1;
  --color-primary-light: #818cf8;
  --color-primary-dark: #4f46e5;
  --color-accent: #10b981;
  --color-accent-light: #34d399;

  /* Dark palette */
  --color-dark-900: #0a0a0f;
  --color-dark-800: #111118;
  --color-dark-700: #1a1a24;
  --color-dark-600: #23232f;
  --color-dark-500: #2d2d3a;

  /* Light palette */
  --color-light-50: #fafafa;
  --color-light-100: #f4f4f5;
  --color-light-200: #e4e4e7;
  --color-light-300: #d4d4d8;
  --color-light-400: #a1a1aa;
  --color-light-500: #71717a;
  --color-light-600: #52525b;

  /* Text */
  --text-white: #ffffff;
  --text-gray-light: #a1a1aa;
  --text-gray: #71717a;
  --text-dark: #18181b;
  --text-dark-secondary: #52525b;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  --gradient-accent: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
  --gradient-hero-radial: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 60%);

  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

img {
  max-width: 100%;
  height: auto;
}

/* ========================================================================
   Layout
   ======================================================================== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--text-white);
}

.section-light {
  background: var(--color-light-50);
  color: var(--text-dark);
}

.section-white {
  background: #ffffff;
  color: var(--text-dark);
}

/* ========================================================================
   Navigation (shared base)
   ======================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.nav-links a {
  color: var(--text-gray-light);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* Nav CTA button */
.nav-cta {
  padding: 10px 20px !important;
  font-size: 0.8125rem !important;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Legal page nav (white background) */
.legal-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--color-light-200);
}

.legal-nav .nav-logo {
  color: var(--text-dark);
}

.legal-nav .nav-links a {
  color: var(--text-dark-secondary);
}

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

.legal-nav .nav-mobile-toggle span {
  background: var(--text-dark);
}

.legal-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--color-light-200);
}

/* Product nav: same dark style as main, but with product branding */
.product-nav .nav-logo-icon {
  background: var(--gradient-primary);
}

/* Breadcrumb-style back link in product nav */
.nav-back {
  font-size: 0.8125rem;
  color: var(--text-gray);
  transition: color 0.2s ease;
}

.nav-back:hover {
  color: var(--text-white);
}

/* ========================================================================
   Mobile Nav Menu
   ======================================================================== */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    padding: 12px 24px 20px;
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  /* Hamburger animation */
  .nav-open .nav-mobile-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-open .nav-mobile-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-mobile-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Legal nav mobile menu */
  .legal-nav .nav-links {
    background: rgba(255, 255, 255, 0.98);
  }

  .legal-nav .nav-links a {
    border-bottom-color: var(--color-light-200);
  }

  /* Product nav CTA in mobile */
  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }
}

/* ========================================================================
   Hero Section
   ======================================================================== */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
}

/* Hero brand watermark (product page) */
.product-hero {
  position: relative;
}

.hero-brand-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-radial);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 100px;
}

.hero-content-centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-primary-light);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--text-gray-light);
  margin-bottom: 40px;
}

.hero-description-centered {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

.hero-actions-centered {
  justify-content: center;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.875rem;
}

/* Light variant for buttons on light backgrounds */
.section-light .btn-secondary,
.section-white .btn-secondary {
  color: var(--text-dark);
  border-color: var(--color-light-300);
}

.section-light .btn-secondary:hover,
.section-white .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--color-light-400);
}

/* ========================================================================
   Section Headers
   ======================================================================== */

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

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-label.primary {
  color: var(--color-primary);
}

.section-label.light {
  color: var(--color-primary-light);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-dark .section-title {
  color: var(--text-white);
}

.section-light .section-title,
.section-white .section-title {
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: var(--text-gray-light);
}

.section-light .section-subtitle,
.section-white .section-subtitle {
  color: var(--text-dark-secondary);
}

/* ========================================================================
   Products Section (Company homepage)
   ======================================================================== */

.products-section {
  padding: var(--section-padding);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 32px;
}

/* Product Card */
.product-card {
  background: #ffffff;
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--color-light-300);
}

.product-card-featured {
  border-color: rgba(99, 102, 241, 0.2);
}

.product-card-featured:hover {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 20px 40px -12px rgba(99, 102, 241, 0.15);
}

.product-card-coming-soon {
  border-style: dashed;
  border-color: var(--color-light-300);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

.product-card-coming-soon:hover {
  box-shadow: none;
  border-color: var(--color-light-400);
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.product-card-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card-icon-wrap.muted {
  background: var(--color-light-100);
}

.product-card-icon {
  font-size: 1.375rem;
}

.product-card-icon-wrap:has(.product-card-logo-img) {
  background: var(--bg-dark);
  border-radius: 50%;
}

.product-card-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.product-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-card-platform {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-gray);
}

.product-card-status {
  margin-left: auto;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card-status.live {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.product-card-description {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-dark-secondary);
  margin-bottom: 24px;
}

.muted-text {
  color: var(--text-gray) !important;
}

/* Product card feature pills */
.product-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-card-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--color-light-50);
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dark-secondary);
}

.product-card-feature-icon {
  font-size: 0.875rem;
}

/* Tech badges */
.product-card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tech-badge {
  padding: 4px 10px;
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-primary);
}

.tech-badge-dark {
  padding: 4px 10px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-primary);
}

.product-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ========================================================================
   Product Detail Section (OrbitFinance deep dive — used on product landing)
   ======================================================================== */

.product-detail-section {
  padding: var(--section-padding);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-detail-content {
  max-width: 520px;
}

.product-detail-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-detail-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.product-detail-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.product-detail-feature-icon.purple { background: rgba(99, 102, 241, 0.15); }
.product-detail-feature-icon.green { background: rgba(16, 185, 129, 0.15); }
.product-detail-feature-icon.blue { background: rgba(59, 130, 246, 0.15); }
.product-detail-feature-icon.orange { background: rgba(251, 146, 60, 0.15); }
.product-detail-feature-icon.pink { background: rgba(236, 72, 153, 0.15); }
.product-detail-feature-icon.teal { background: rgba(20, 184, 166, 0.15); }

.product-detail-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.product-detail-feature-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-gray-light);
}

.product-detail-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Security strip */
.product-security-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-light);
}

.product-security-icon {
  font-size: 1.125rem;
}

/* ========================================================================
   Phone Mockup
   ======================================================================== */

.phone-mockup {
  position: relative;
  width: 300px;
  height: 620px;
  background: var(--color-dark-700);
  border-radius: 44px;
  border: 3px solid var(--color-dark-500);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(99, 102, 241, 0.15);
  overflow: hidden;
  padding: 12px;
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: var(--color-dark-900);
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Screenshot Carousel */
.phone-carousel {
  position: relative;
  height: calc(100% - 28px);
  border-radius: 0 0 32px 32px;
  overflow: hidden;
  margin-top: -4px;
}

.phone-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.phone-carousel-slide.active {
  opacity: 1;
}

.phone-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 3;
}

.phone-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.phone-carousel-dot.active {
  background: rgba(255, 255, 255, 0.9);
  width: 18px;
  border-radius: 3px;
}

/* ========================================================================
   About Section
   ======================================================================== */

.about-section {
  padding: var(--section-padding);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-content {
  max-width: 520px;
}

.about-description {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark-secondary);
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-value-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.about-value-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-dark-secondary);
}

/* About card (visual) */
.about-visual {
  display: flex;
  justify-content: center;
}

.about-card {
  background: linear-gradient(135deg, var(--color-dark-800) 0%, var(--color-dark-700) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 420px;
}

.about-card-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 32px;
}

.about-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.about-card-stat {
  text-align: center;
}

.about-card-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.about-card-stat-label {
  font-size: 0.6875rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.about-card-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ========================================================================
   Footer (shared base)
   ======================================================================== */

.footer {
  background: var(--color-dark-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 32px;
  color: var(--text-gray-light);
}

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

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-top: 16px;
  max-width: 300px;
}

.footer-brand-desc a {
  color: var(--color-primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-brand-desc a:hover {
  color: var(--text-white);
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-gray);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  color: var(--text-gray);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-gray);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--text-white);
}

/* ========================================================================
   Legal Pages (Privacy Policy, Terms of Service, Data Deletion)
   ======================================================================== */

.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-header {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-light-200);
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.9375rem;
  color: var(--text-gray);
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-dark-secondary);
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-dark-secondary);
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--color-primary-dark);
}

.legal-content strong {
  font-weight: 600;
  color: var(--text-dark);
}

.legal-highlight {
  background: rgba(99, 102, 241, 0.05);
  border-left: 3px solid var(--color-primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.legal-highlight p {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0;
}

.legal-contact {
  background: var(--color-light-100);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 48px;
}

.legal-contact h3 {
  margin-top: 0;
}

/* ========================================================================
   Safety / Info Page Sections
   ======================================================================== */

.info-page {
  padding-top: 120px;
  padding-bottom: 80px;
}

.info-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.info-header h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.info-header p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-dark-secondary);
}

/* Safety cards grid */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 64px;
}

.safety-card {
  background: #ffffff;
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s ease;
}

.safety-card:hover {
  border-color: var(--color-light-300);
}

.safety-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.safety-card-icon.green { background: rgba(16, 185, 129, 0.1); }
.safety-card-icon.blue { background: rgba(59, 130, 246, 0.1); }
.safety-card-icon.purple { background: rgba(99, 102, 241, 0.1); }
.safety-card-icon.orange { background: rgba(251, 146, 60, 0.1); }
.safety-card-icon.red { background: rgba(239, 68, 68, 0.1); }
.safety-card-icon.teal { background: rgba(20, 184, 166, 0.1); }

.safety-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.safety-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-dark-secondary);
}

/* Full-width safety callout */
.safety-callout {
  max-width: 960px;
  margin: 0 auto 64px;
  background: var(--color-light-50);
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.safety-callout h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.safety-callout p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-dark-secondary);
  margin-bottom: 12px;
}

.safety-callout p:last-child {
  margin-bottom: 0;
}

.safety-callout ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.safety-callout li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-dark-secondary);
  margin-bottom: 6px;
}

/* ========================================================================
   FAQ Page
   ======================================================================== */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-light-200);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-dark-secondary);
}

.faq-answer a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========================================================================
   Pricing Page
   ======================================================================== */

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

.pricing-card-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.pricing-card-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.1;
}

.pricing-card-rates {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 8px;
}

.pricing-rate {
  text-align: center;
}

.pricing-rate-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.pricing-rate-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-gray);
  margin-top: 4px;
}

.pricing-rate-divider {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-top: -12px;
}

.pricing-card-period {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 32px;
}

.pricing-card-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dark-secondary);
  margin-bottom: 12px;
  list-style: none;
}

.pricing-check {
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  max-width: 560px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-gray);
}

/* Pricing examples */
.pricing-examples {
  max-width: 780px;
  margin: 48px auto 0;
}

.pricing-examples-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 24px;
}

.pricing-examples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing-example {
  background: #ffffff;
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s ease;
}

.pricing-example:hover {
  border-color: var(--color-light-300);
}

.pricing-example-accounts {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pricing-example-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.pricing-example-price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
}

.pricing-example-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-dark-secondary);
}

/* Pricing extended tier */
.pricing-extended {
  max-width: 560px;
  margin: 40px auto 0;
  text-align: center;
  padding: 32px;
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-lg);
  background: var(--color-light-50, #fafafa);
}

.pricing-extended-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-extended-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.pricing-extended-rates {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.pricing-extended-rate {
  font-size: 0.875rem;
  color: var(--text-dark-secondary);
}

.pricing-extended-rate-amount {
  font-weight: 700;
  color: var(--text-dark);
}

/* ========================================================================
   Contact Page
   ======================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-dark-secondary);
  margin-bottom: 16px;
}

.contact-card a.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
}

.contact-card a.contact-link:hover {
  color: var(--color-primary-dark);
}

/* ========================================================================
   Features Page (product section)
   ======================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.2s ease;
}

.feature-card:hover {
  border-color: var(--color-light-300);
  box-shadow: var(--shadow-md);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.feature-card-icon.purple { background: rgba(99, 102, 241, 0.1); }
.feature-card-icon.green { background: rgba(16, 185, 129, 0.1); }
.feature-card-icon.blue { background: rgba(59, 130, 246, 0.1); }
.feature-card-icon.orange { background: rgba(251, 146, 60, 0.1); }
.feature-card-icon.pink { background: rgba(236, 72, 153, 0.1); }
.feature-card-icon.teal { background: rgba(20, 184, 166, 0.1); }

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-dark-secondary);
}

/* ========================================================================
   CTA Banner (used on product pages)
   ======================================================================== */

.cta-section {
  padding: 80px 0;
}

.cta-banner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.125rem;
  color: var(--text-gray-light);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  padding: 18px 36px;
  font-size: 1.0625rem;
}

/* ========================================================================
   Data Deletion — Steps
   ======================================================================== */

.steps-list {
  max-width: 780px;
  margin: 0 auto;
  counter-reset: step;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-light-200);
}

.step-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-dark-secondary);
}

.step-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========================================================================
   Trust Strip (horizontal badges on light background)
   ======================================================================== */

.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--color-light-200);
  border-bottom: 1px solid var(--color-light-200);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-secondary);
}

.trust-item-icon {
  font-size: 1.125rem;
}

/* ========================================================================
   Responsive
   ======================================================================== */

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-detail-visual {
    order: -1;
  }

  .product-detail-content {
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions-centered {
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .phone-mockup {
    width: 260px;
    height: 540px;
  }

  .section-title {
    font-size: 2rem;
  }

  .product-card-features {
    gap: 6px;
  }

  .product-card-actions {
    flex-direction: column;
  }

  .product-card-actions .btn-primary,
  .product-card-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .product-security-strip {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .about-card-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .legal-title {
    font-size: 1.75rem;
  }

  .legal-content h2 {
    font-size: 1.25rem;
  }

  .info-header h1 {
    font-size: 2rem;
  }

  .trust-strip {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-card-price {
    font-size: 2.5rem;
  }

  .pricing-rate-amount {
    font-size: 2.25rem;
  }

  .pricing-card-rates {
    gap: 16px;
  }

  .pricing-examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-extended {
    padding: 24px;
  }

  .pricing-extended-rates {
    flex-direction: column;
    gap: 12px;
  }

  .cta-banner h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 16px;
  }

  .product-card {
    padding: 24px;
  }

  .about-card {
    padding: 28px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}
