:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  
  --bg-primary: #07090e;
  --bg-secondary: #0d111a;
  --bg-tertiary: #131926;
  
  --card-bg: rgba(17, 24, 39, 0.7);
  --card-bg-hover: rgba(26, 36, 56, 0.85);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(239, 68, 68, 0.45);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Modern Red Theme */
  --accent-red: #ef4444;
  --accent-red-hover: #dc2626;
  --accent-red-light: #f87171;
  --accent-emerald: #34d399;
  --accent-violet: #a855f7;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --container-max: 1200px;
  --header-height: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Background Lights with Red Accent */
.bg-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: orbFloat 18s infinite alternate ease-in-out;
}

.ambient-orb-1 {
  width: clamp(350px, 50vw, 600px);
  height: clamp(350px, 50vw, 600px);
  background: radial-gradient(circle, #dc2626 0%, transparent 70%);
  top: -120px;
  left: 15%;
}

.ambient-orb-2 {
  width: clamp(300px, 40vw, 500px);
  height: clamp(300px, 40vw, 500px);
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: 40%;
  right: -80px;
  animation-delay: -5s;
}

.ambient-orb-3 {
  width: clamp(320px, 45vw, 550px);
  height: clamp(320px, 45vw, 550px);
  background: radial-gradient(circle, #991b1b 0%, transparent 70%);
  bottom: 10%;
  left: -80px;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 50px) scale(1.06); }
  100% { transform: translate(-25px, -30px) scale(0.95); }
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 28px);
  position: relative;
  z-index: 1;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 9, 14, 0.82);
  border-bottom: 1px solid var(--card-border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.45);
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 6px 0;
}

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

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

/* Mobile Hamburger Button */
.nav-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 8px;
  cursor: pointer;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(7, 9, 14, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
}

.nav-mobile-menu.active {
  display: flex;
}

.nav-mobile-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-mobile-link:hover {
  color: var(--accent-red-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  min-height: 44px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.65);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-color: var(--card-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.85rem;
  min-height: 36px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
  min-height: 52px;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-glow {
  background: rgba(239, 68, 68, 0.12);
  color: var(--accent-red-light);
  border: 1px solid rgba(239, 68, 68, 0.35);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.25);
}

.badge-emerald {
  background: rgba(52, 211, 153, 0.1);
  color: var(--accent-emerald);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

/* Hero Section */
.hero {
  padding: clamp(40px, 8vw, 80px) 0 clamp(60px, 10vw, 100px);
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.hero-pill {
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 6.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

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

.hero-desc {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 40px);
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
  max-width: 640px;
  margin: 0 auto clamp(40px, 8vw, 60px);
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 100px;
}

.hero-stat-num {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Phone Mockup Frame */
.hero-mockup-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup-glow {
  position: absolute;
  width: clamp(280px, 60vw, 450px);
  height: clamp(280px, 60vw, 450px);
  background: radial-gradient(circle, rgba(239, 68, 68, 0.3) 0%, rgba(185, 28, 28, 0.16) 50%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(300px, 80vw);
  height: min(600px, 160vw);
  background: #020408;
  border-radius: 44px;
  border: 4px solid #1e293b;
  box-shadow: 
    0 0 0 2px rgba(255, 255, 255, 0.05),
    0 25px 80px -15px rgba(0, 0, 0, 0.8),
    0 0 45px rgba(239, 68, 68, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-speaker {
  width: 70px;
  height: 4px;
  background: #334155;
  border-radius: 4px;
  margin: 10px auto 6px;
  flex-shrink: 0;
}

.phone-screen {
  flex: 1;
  width: 100%;
  overflow: hidden;
  position: relative;
}

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

/* Floating Telemetry Cards */
.floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(13, 17, 26, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: floatCard 6s ease-in-out infinite alternate;
}

.floating-card-left {
  left: 20px;
  top: 35%;
}

.floating-card-right {
  right: 20px;
  top: 55%;
  animation-delay: -3s;
}

.floating-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.floating-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.floating-sub {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Section Common */
.section {
  padding: clamp(60px, 10vw, 100px) 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(36px, 6vw, 60px);
}

.section-tag {
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  background: var(--card-bg-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.bento-card-8 { grid-column: span 8; }
.bento-card-4 { grid-column: span 4; }
.bento-card-6 { grid-column: span 6; }
.bento-card-12 { grid-column: span 12; }

.bento-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
}

.bento-title {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text-primary);
}

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

.bento-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.bento-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Interactive Showcase / Screenshots */
.showcase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.showcase-tabs-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.showcase-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.showcase-tabs {
  display: flex;
  gap: 8px;
  background: rgba(13, 17, 26, 0.85);
  border: 1px solid var(--card-border);
  padding: 6px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  width: max-content;
  margin: 0 auto;
}

.showcase-tab {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 38px;
}

.showcase-tab:hover {
  color: var(--text-primary);
}

.showcase-tab.active {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.45);
}

.showcase-preview-frame {
  width: 100%;
  max-width: 900px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  backdrop-filter: blur(20px);
}

.showcase-screen-wrapper {
  width: min(250px, 75vw);
  height: min(510px, 150vw);
  border-radius: 34px;
  overflow: hidden;
  border: 4px solid #1e293b;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
}

.showcase-screen-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.showcase-screen-info {
  flex: 1;
  text-align: left;
}

.showcase-screen-info h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.showcase-screen-info p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.showcase-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-size: 0.92rem;
}

.showcase-features-list li svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* Services Filter & Directory */
.services-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.services-filter-wrapper {
  overflow-x: auto;
  padding-bottom: 6px;
  width: 100%;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.services-filter-wrapper::-webkit-scrollbar {
  display: none;
}

.services-filter-tabs {
  display: flex;
  gap: 8px;
  width: max-content;
}

.service-filter-btn {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 38px;
}

.service-filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.service-filter-btn.active {
  background: rgba(239, 68, 68, 0.15);
  border-color: var(--accent-red);
  color: var(--accent-red-light);
  font-weight: 600;
}

.service-search-box {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.service-search-input {
  width: 100%;
  padding: 10px 16px 10px 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s ease;
  min-height: 42px;
}

.service-search-input:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.25);
}

.service-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.service-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--card-border-hover);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0;
}

.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card-text {
  overflow: hidden;
}

.service-card-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.service-card-category {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Privacy Section */
.privacy-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 48px);
  backdrop-filter: blur(20px);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.privacy-point {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-point-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-point-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(52, 211, 153, 0.1);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.privacy-point-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.privacy-point-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.privacy-cta-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Code Snippet Box */
.code-box {
  background: #090d16;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #cbd5e1;
  position: relative;
  overflow-x: auto;
}

.code-copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.code-copy-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.15);
}

/* Sticky Bottom Mobile Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(7, 9, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--card-border);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-sticky-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-sticky-logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.mobile-sticky-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mobile-sticky-sub {
  font-size: 0.72rem;
  color: var(--accent-emerald);
}

/* Modal for full privacy */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #0d121f;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(24px, 5vw, 40px);
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.18);
}

/* Footer */
.footer {
  border-top: 1px solid var(--card-border);
  padding: clamp(40px, 8vw, 60px) 0 30px;
  background: rgba(7, 9, 14, 0.9);
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-red-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 16px;
}

/* Mobile responsive breakpoints */
@media (max-width: 900px) {
  .bento-card-8,
  .bento-card-4,
  .bento-card-6 {
    grid-column: span 12;
  }
  
  .showcase-preview-frame {
    flex-direction: column;
    padding: 30px 20px;
    gap: 28px;
  }
  
  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-toggle-btn {
    display: block;
  }
  
  .mobile-sticky-bar {
    display: flex;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  .services-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .service-search-box {
    max-width: 100%;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  
  .service-card {
    padding: 10px;
    gap: 10px;
  }
  
  .service-card-icon {
    width: 32px;
    height: 32px;
  }
  
  .service-card-name {
    font-size: 0.85rem;
  }
  
  .service-card-category {
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-lg {
    width: 100%;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .privacy-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .privacy-cta-box div:last-child {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
