/* Custom Modern Techy Styles for Hacker Theme */

:root {
  --primary-green: #00ff00;
  --secondary-green: #00cc00;
  --accent-yellow: #ffff00;
  --bg-dark: #0d1117;
  --bg-darker: #010409;
  --text-primary: #c9d1d9;
  --text-secondary: #8b949e;
  --border-color: #30363d;
  --glow-color: rgba(0, 255, 0, 0.5);
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
  letter-spacing: 0.5px;
}

/* Animated Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Particle Canvas Container */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

/* Wrapper - Ensure content appears above background */
.wrapper {
  position: relative;
  z-index: 2;
}

/* Navigation Styles */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-darker);
  border-bottom: 2px solid var(--primary-green);
  box-shadow: 0 4px 20px rgba(0, 255, 0, 0.2);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--primary-green);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-green);
  text-shadow: 0 0 10px var(--glow-color);
}

.nav-link.active {
  color: var(--primary-green);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-green);
  transition: all 0.3s ease;
}

/* Glitch Effect */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 #ff00ff;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 #00ffff, 2px 2px #ff00ff;
  animation: glitch-anim-2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { clip: rect(31px, 9999px, 94px, 0); }
  20% { clip: rect(54px, 9999px, 66px, 0); }
  40% { clip: rect(28px, 9999px, 100px, 0); }
  60% { clip: rect(67px, 9999px, 85px, 0); }
  80% { clip: rect(10px, 9999px, 2px, 0); }
  100% { clip: rect(78px, 9999px, 97px, 0); }
}

@keyframes glitch-anim-2 {
  0% { clip: rect(65px, 9999px, 100px, 0); }
  20% { clip: rect(79px, 9999px, 85px, 0); }
  40% { clip: rect(66px, 9999px, 51px, 0); }
  60% { clip: rect(98px, 9999px, 99px, 0); }
  80% { clip: rect(95px, 9999px, 15px, 0); }
  100% { clip: rect(31px, 9999px, 14px, 0); }
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 255, 0, 0.03) 2px,
      rgba(0, 255, 0, 0.03) 4px
    );
  pointer-events: none;
}

/* Typography Improvements */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 1px;
  line-height: 1.4;
}

h1 {
  letter-spacing: 2px;
  line-height: 1.3;
}

h2 {
  letter-spacing: 1.5px;
  line-height: 1.35;
}

h3 {
  letter-spacing: 1px;
  line-height: 1.4;
}

p {
  letter-spacing: 0.3px;
  line-height: 1.8;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.typewriter {
  font-size: 3rem;
  color: var(--primary-green);
  text-shadow: 0 0 20px var(--glow-color);
  margin-bottom: 1rem;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid var(--primary-green);
  animation: typewriter 3s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both, blink-cursor 0.75s step-end infinite;
}

@keyframes typewriter {
  from { 
    width: 0;
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  to { 
    width: 100%;
    opacity: 1;
  }
}

@keyframes blink-cursor {
  from, to { border-color: transparent; }
  50% { border-color: var(--primary-green); }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  animation: fadeInUp 1s ease 2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apps Showcase */
.apps-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.app-card {
  background: var(--bg-darker);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.app-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.app-card:hover::before {
  opacity: 0.1;
}

.app-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-green);
  box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.app-logo-container {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-darker);
  padding: 8px;
}

.app-logo {
  max-width: 80px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.3));
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.app-card:hover .app-logo {
  filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.6));
  transform: scale(1.05);
}

.app-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

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

.app-card h2 {
  color: var(--primary-green);
  margin: 1rem 0;
  font-size: 2rem;
}

.app-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Buttons - Enhanced Styles */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--primary-green);
  color: var(--bg-dark);
  text-decoration: none;
  border: 2px solid var(--primary-green);
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
  color: var(--bg-dark);
  box-shadow: 0 8px 30px rgba(255, 255, 0, 0.6), 0 0 40px rgba(255, 255, 0, 0.4);
  transform: scale(1.08) translateY(-2px);
  letter-spacing: 3px;
}

.btn-primary:active {
  transform: scale(1.02) translateY(0);
  box-shadow: 0 4px 15px rgba(255, 255, 0, 0.4);
}

.btn-large {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

/* Tech Stack */
.tech-stack {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
}

.tech-stack h2 {
  color: var(--primary-green);
  margin-bottom: 2rem;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.tech-badge {
  padding: 0.5rem 1.5rem;
  background: var(--bg-dark);
  border: 1px solid var(--primary-green);
  border-radius: 20px;
  color: var(--primary-green);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: default;
}

.tech-badge:hover {
  background: var(--primary-green);
  color: var(--bg-dark);
  box-shadow: 0 0 15px var(--glow-color);
  transform: translateY(-2px);
}

/* App Pages */
.app-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.app-header {
  text-align: center;
  padding: 3rem 0;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 3rem;
}

.app-logo-header-container {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-darker);
  padding: 10px;
  border: 2px solid rgba(0, 255, 0, 0.2);
}

.app-logo-header {
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.4));
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.app-icon-large {
  font-size: 6rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.app-header h1 {
  color: var(--primary-green);
  font-size: 3rem;
  margin: 1rem 0;
  text-shadow: 0 0 20px var(--glow-color);
}

.app-tagline {
  font-size: 1.3rem;
  color: var(--text-secondary);
}

.app-content {
  padding: 2rem 0;
}

/* Office Mom suite: wider page, two platforms */
.app-page-office-mom {
  max-width: 1180px;
}

.app-header-suite {
  padding: 2rem 0 2.5rem;
}

.office-mom-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.office-mom-platform-card {
  background: var(--bg-darker);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.office-mom-platform-card:hover {
  border-color: rgba(0, 255, 0, 0.45);
  box-shadow: 0 8px 28px rgba(0, 255, 0, 0.12);
}

.office-mom-platform-header {
  text-align: center;
  margin-bottom: 1rem;
}

.office-mom-platform-card h2 {
  color: var(--primary-green);
  margin: 0.5rem 0 0.35rem;
  font-size: 1.65rem;
  text-shadow: none;
}

.office-mom-platform-badge {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  border: 1px solid rgba(0, 255, 0, 0.35);
  border-radius: 999px;
  padding: 0.28rem 0.85rem;
  margin: 0;
}

.office-mom-platform-logo {
  min-height: 88px;
}

.office-mom-elevator {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.office-mom-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.45;
  flex: 1;
}

.office-mom-feature-list li {
  padding: 0.4rem 0 0.4rem 0.85rem;
  border-left: 3px solid rgba(0, 255, 0, 0.28);
  margin-bottom: 0.4rem;
}

.office-mom-feature-list strong {
  color: var(--primary-green);
  font-weight: 600;
}

.office-mom-requirements {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0 0 1rem;
  line-height: 1.45;
}

.office-mom-cta {
  text-align: center;
  padding-top: 0.25rem;
}

.office-mom-cta .btn-large {
  width: 100%;
  box-sizing: border-box;
}

.feature-section-compact {
  margin-bottom: 2.25rem;
}

.feature-section-compact h2 {
  margin-bottom: 0.65rem;
}

.feature-section-compact p {
  margin: 0;
  line-height: 1.65;
}

.cta-section-duo {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}

.cta-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
}

.cta-button-row .btn-large {
  flex: 1 1 240px;
  max-width: 340px;
  text-align: center;
}

.version-info-duo {
  margin-top: 1.1rem;
  margin-bottom: 0;
}

.btn-secondary-outline {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  box-shadow: 0 2px 12px rgba(0, 255, 0, 0.15);
}

.btn-secondary-outline:hover {
  background: rgba(0, 255, 0, 0.1);
  color: var(--accent-yellow);
  border-color: var(--accent-yellow);
  box-shadow: 0 6px 24px rgba(255, 255, 0, 0.25);
}

/* Home: dual app icons on Office Mom card */
.app-logo-dual {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.85rem;
  min-height: 88px;
}

.app-logo-dual .app-logo-dual-item {
  max-width: 72px;
  max-height: 72px;
}

.feature-section {
  margin-bottom: 4rem;
}

.feature-section h2 {
  color: var(--primary-green);
  border-bottom: 2px solid var(--primary-green);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(0, 255, 0, 0.02) 100%);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  border-color: var(--primary-green);
  box-shadow: 
    0 10px 40px rgba(0, 255, 0, 0.3),
    0 0 30px rgba(0, 255, 0, 0.1),
    inset 0 0 20px rgba(0, 255, 0, 0.05);
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(0, 255, 0, 0.08) 100%);
}

.feature-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 255, 0, 0.05) 100%);
  border: 2px solid rgba(0, 255, 0, 0.3);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon-container {
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.2) 0%, rgba(0, 255, 0, 0.1) 100%);
  border-color: var(--primary-green);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
  transform: scale(1.1) rotate(5deg);
}

.feature-icon {
  font-size: 2.5rem;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.3));
}

.feature-card:hover .feature-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.6));
}

.feature-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-card:hover h3 {
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  transform: translateY(-2px);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: var(--text-primary);
}

/* Stagger animation for feature cards */
.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.cta-section {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 0;
  border-top: 2px solid var(--border-color);
}

.feature-category-title {
  color: var(--primary-green);
  font-size: 1.8rem;
  margin: 3rem 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 255, 0, 0.3);
  text-align: center;
}

.expandable-category {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--bg-darker);
  border: 2px solid rgba(0, 255, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.expandable-category:hover {
  background: rgba(0, 255, 0, 0.05);
  border-color: var(--primary-green);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
  transform: translateY(-2px);
}

.expandable-category.active {
  background: rgba(0, 255, 0, 0.1);
  border-color: var(--primary-green);
  box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
}

.category-icon {
  font-size: 1.8rem;
}

.category-text {
  flex: 1;
}

.expand-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: var(--primary-green);
}

.expandable-category.active .expand-icon {
  transform: rotate(180deg);
}

.category-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
  margin-bottom: 0;
}

.category-content.expanded {
  max-height: 5000px;
  opacity: 1;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* Make feature cards visible immediately on Office Mom page */
.app-page .feature-card {
  opacity: 1 !important;
  transform: none !important;
}

.coming-soon-container {
  background: var(--bg-darker);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.coming-soon-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.coming-soon-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.3));
}

.coming-soon-container h3 {
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
  position: relative;
  z-index: 1;
}

.coming-soon-container p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Privacy Policy Page Styles */
.privacy-policy-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.privacy-header {
  text-align: center;
  padding: 3rem 0;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 3rem;
}

.privacy-header h1 {
  color: var(--primary-green);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--glow-color);
}

.last-updated {
  color: var(--text-secondary);
  font-size: 1rem;
  font-style: italic;
}

.privacy-content {
  padding: 2rem 0;
}

.privacy-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.privacy-section:hover {
  border-color: var(--primary-green);
  box-shadow: 0 5px 20px rgba(0, 255, 0, 0.1);
}

.privacy-section h2 {
  color: var(--primary-green);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-green);
  padding-bottom: 0.5rem;
}

.privacy-section p {
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-labels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.privacy-label-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 255, 0, 0.05);
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.privacy-label-item:hover {
  background: rgba(0, 255, 0, 0.1);
  border-color: var(--primary-green);
  transform: translateX(5px);
}

.label-check {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.label-text {
  color: var(--text-primary);
  font-size: 1.1rem;
}

.contact-details {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 255, 0, 0.05);
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: 8px;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.contact-details strong {
  color: var(--primary-green);
}

.privacy-email-link {
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.privacy-email-link:hover {
  color: var(--accent-yellow);
  border-bottom-color: var(--accent-yellow);
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.privacy-footer {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border-color);
}

.privacy-link-section {
  margin-top: 1.5rem;
}

.privacy-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-darker);
}

.privacy-link:hover {
  color: var(--primary-green);
  border-color: var(--primary-green);
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
  transform: translateY(-2px);
}

/* Contact Page */
.contact-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-header {
  text-align: center;
  padding: 3rem 0;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 3rem;
}

.contact-header h1 {
  color: var(--primary-green);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--glow-color);
}

.contact-form {
  background: var(--bg-darker);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

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

.form-status {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  text-align: center;
  display: none;
}

.form-status.success {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  display: block;
}

.form-status.error {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid #ff0000;
  color: #ff0000;
  display: block;
}

.contact-info {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-darker);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info h3 {
  color: var(--primary-green);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  padding: 1.5rem 2rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  background: var(--bg-darker);
}

.contact-link:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
  transform: translateX(10px);
  background: rgba(0, 255, 0, 0.05);
}

.contact-link-large {
  padding: 2rem;
}

.contact-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.contact-link-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.contact-link-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  font-weight: bold;
}

.contact-link-value {
  font-size: 1.1rem;
  color: var(--text-primary);
}

.contact-link:hover .contact-link-value {
  color: var(--primary-green);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
}

.footer-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--bg-darker);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    border-bottom: 2px solid var(--primary-green);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .typewriter {
    font-size: 2rem;
  }

  .apps-showcase {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

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

  .office-mom-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-button-row .btn-large {
    max-width: none;
  }

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

/* Scroll Animations - Enhanced */
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll animation classes */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.app-card,
.feature-card {
  animation: slideInFromBottom 0.6s ease-out;
}

/* Matrix Rain Effect (Optional Background) */
.matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.1;
}
