/*! HTML5 Boilerplate v9.0.0-RC1 | MIT License | https://html5boilerplate.com/ */

/* ==========================================================================
   Dare Me Baby Landing Page Styles
   ========================================================================== */

/* CSS Custom Properties */
:root {
  /* Color Palette - Dark Theme */
  --primary-color: #8B5CF6;
  --primary-light: #A78BFA;
  --primary-dark: #7C3AED;
  --secondary-color: #EC4899;
  --accent-color: #F59E0B;
  --accent-light: #FEF3C7;
  
  /* Dark Theme Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #E5E7EB;
  --text-light: #9CA3AF;
  --bg-primary: #0F172A;
  --bg-secondary: #1E293B;
  --bg-accent: #334155;
  --bg-dark: #020617;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  --gradient-bg: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --gradient-hero: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #581C87 100%);
  
  /* Typography */
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(139, 90, 140, 0.1);
  --shadow-md: 0 4px 12px rgba(139, 90, 140, 0.15);
  --shadow-lg: 0 8px 24px rgba(139, 90, 140, 0.2);
  --shadow-xl: 0 16px 48px rgba(139, 90, 140, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Selection */
::selection {
  background: var(--accent-light);
  color: var(--text-primary);
}

::-moz-selection {
  background: var(--accent-light);
  color: var(--text-primary);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  color: #1F2937;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
  position: relative;
  background: transparent;
  z-index: 3;
  padding: var(--spacing-lg) 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width var(--transition-normal);
}

.nav-link:hover::after {
  width: 100%;
}

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

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.abstract-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

.glowing-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.glowing-dots::before,
.glowing-dots::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--primary-color);
  animation: float 6s ease-in-out infinite;
}

.glowing-dots::before {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.glowing-dots::after {
  top: 60%;
  right: 20%;
  animation-delay: 3s;
}

.curved-line {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  border-radius: 1px;
  transform: rotate(-15deg);
  opacity: 0.6;
}

.additional-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.additional-dots::before,
.additional-dots::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--secondary-color);
  animation: float 8s ease-in-out infinite;
}

.additional-dots::before {
  top: 15%;
  right: 15%;
  animation-delay: 1s;
}

.additional-dots::after {
  top: 70%;
  left: 25%;
  animation-delay: 4s;
}

.additional-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.additional-lines::before,
.additional-lines::after {
  content: '';
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  border-radius: 1px;
  opacity: 0.4;
}

.additional-lines::before {
  top: 25%;
  right: 20%;
  width: 150px;
  transform: rotate(25deg);
}

.additional-lines::after {
  top: 65%;
  left: 30%;
  width: 120px;
  transform: rotate(-30deg);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-elements::before,
.floating-elements::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-color);
  animation: float 10s ease-in-out infinite;
}

.floating-elements::before {
  top: 35%;
  right: 30%;
  animation-delay: 2s;
}

.floating-elements::after {
  top: 80%;
  left: 15%;
  animation-delay: 6s;
}

/* ==========================================================================
   Additional Abstract Elements
   ========================================================================== */

.more-dots-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.more-dots-1::before,
.more-dots-1::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-color);
  animation: float 7s ease-in-out infinite;
}

.more-dots-1::before {
  top: 10%;
  left: 60%;
  animation-delay: 1.5s;
}

.more-dots-1::after {
  top: 85%;
  right: 40%;
  animation-delay: 5.5s;
}

.more-dots-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.more-dots-2::before,
.more-dots-2::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-light);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--primary-light);
  animation: float 9s ease-in-out infinite;
}

.more-dots-2::before {
  top: 45%;
  left: 5%;
  animation-delay: 3s;
}

.more-dots-2::after {
  top: 75%;
  right: 10%;
  animation-delay: 7s;
}

.more-lines-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.more-lines-1::before,
.more-lines-1::after {
  content: '';
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  border-radius: 1px;
  opacity: 0.3;
}

.more-lines-1::before {
  top: 30%;
  left: 5%;
  width: 100px;
  transform: rotate(45deg);
}

.more-lines-1::after {
  top: 55%;
  right: 5%;
  width: 80px;
  transform: rotate(-45deg);
}

.more-lines-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.more-lines-2::before,
.more-lines-2::after {
  content: '';
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  border-radius: 1px;
  opacity: 0.5;
}

.more-lines-2::before {
  top: 20%;
  right: 25%;
  width: 60px;
  transform: rotate(60deg);
}

.more-lines-2::after {
  top: 50%;
  left: 20%;
  width: 90px;
  transform: rotate(-20deg);
}

.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.geometric-shapes::before,
.geometric-shapes::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid var(--primary-color);
  opacity: 0.4;
  animation: rotate 15s linear infinite;
}

.geometric-shapes::before {
  top: 25%;
  right: 35%;
  border-radius: 2px;
  animation-delay: 0s;
}

.geometric-shapes::after {
  top: 60%;
  left: 40%;
  border-radius: 50%;
  animation-delay: 7.5s;
}

.sparkle-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sparkle-elements::before,
.sparkle-elements::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 1px;
  background: var(--accent-color);
  box-shadow: 0 0 8px var(--accent-color);
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle-elements::before {
  top: 15%;
  left: 45%;
  animation-delay: 0.5s;
}

.sparkle-elements::after {
  top: 70%;
  right: 45%;
  animation-delay: 1.5s;
}

.wave-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.wave-lines::before,
.wave-lines::after {
  content: '';
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  border-radius: 1px;
  opacity: 0.3;
}

.wave-lines::before {
  top: 40%;
  left: 50%;
  width: 70px;
  transform: rotate(10deg);
}

.wave-lines::after {
  top: 65%;
  right: 30%;
  width: 50px;
  transform: rotate(-10deg);
}

.orb-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.orb-elements::before,
.orb-elements::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--secondary-color);
  animation: pulse 4s ease-in-out infinite;
}

.orb-elements::before {
  top: 35%;
  right: 50%;
  animation-delay: 2s;
}

.orb-elements::after {
  top: 80%;
  left: 50%;
  animation-delay: 6s;
}

/* ==========================================================================
   Additional Animations
   ========================================================================== */

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.5); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 1; }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.title-line-1,
.title-line-2 {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0;
}

.title-highlight {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: var(--spacing-xs);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary, .btn-secondary, .btn-download {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary, .btn-download {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover, .btn-download:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.app-store-icon {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   Hero Visual
   ========================================================================== */

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

.iphone-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.iphone-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all var(--transition-normal);
}

.iphone-container:hover {
  z-index: 20;
}

.iphone-image {
  width: 280px;
  height: auto;
  border-radius: 25px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  animation: float 6s ease-in-out infinite;
}

.iphone-image:hover {
  transform: scale(1.05);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Positioning for overlapping effect */
.iphone-container:nth-child(1) {
  /* Talk image - Left behind */
  z-index: 1;
  transform: translateX(-120px) rotate(-6deg) scale(0.95);
  opacity: 0.9;
}

.iphone-container:nth-child(2) {
  /* Touch image - Center front */
  z-index: 3;
  transform: translateX(0px) rotate(0deg) scale(1);
}

.iphone-container:nth-child(3) {
  /* Intimate image - Right behind */
  z-index: 2;
  transform: translateX(120px) rotate(6deg) scale(0.95);
  opacity: 0.9;
}

/* Hover effects for individual containers */
.iphone-container:nth-child(1):hover {
  transform: translateX(-120px) rotate(-6deg) scale(1) translateY(-10px);
  opacity: 1;
}

.iphone-container:nth-child(2):hover {
  transform: translateX(0px) rotate(0deg) scale(1.05) translateY(-10px);
}

.iphone-container:nth-child(3):hover {
  transform: translateX(120px) rotate(6deg) scale(1) translateY(-10px);
  opacity: 1;
}

.image-label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.iphone-container:hover .image-label {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%) translateY(-2px);
}

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


/* ==========================================================================
   Features Section
   ========================================================================== */

.features {
  padding: var(--spacing-3xl) 0;
  background: #F8FAFC;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
}

.feature-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-normal);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.feature-title {
  color: #1F2937;
  margin-bottom: var(--spacing-sm);
}

.feature-description {
  color: #6B7280;
  line-height: 1.6;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.how-it-works {
  padding: var(--spacing-3xl) 0;
  background: #F1F5F9;
  position: relative;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.step-content {
  flex: 1;
}

.step-title {
  color: #1F2937;
  margin-bottom: var(--spacing-xs);
}

.step-description {
  color: #6B7280;
  line-height: 1.6;
}

/* ==========================================================================
   Download Section
   ========================================================================== */

.download {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white;
  text-align: center;
  position: relative;
}

.download-content {
  max-width: 800px;
  margin: 0 auto;
}

.download-title {
  color: white;
  margin-bottom: var(--spacing-md);
}

.download-description {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.9);
}

.download-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--bg-dark);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--spacing-xs);
}

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

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

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-container {
    gap: var(--spacing-xl);
    padding: 0 var(--spacing-lg);
  }
  
  .iphone-image {
    width: 240px;
  }
  
  .iphone-container:nth-child(1) {
    transform: translateX(-90px) rotate(-5deg) scale(0.9);
  }
  
  .iphone-container:nth-child(3) {
    transform: translateX(90px) rotate(5deg) scale(0.9);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .navbar {
    padding: var(--spacing-sm) 0;
  }
  
  .nav-container {
    padding: 0 var(--spacing-md);
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
    padding-top: var(--spacing-md);
  }
  
  .hero-content {
    order: 1;
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-visual {
    order: 2;
    margin-top: var(--spacing-md);
  }
  
  .hero-buttons {
    justify-content: center;
    margin-top: var(--spacing-lg);
  }
  
  .btn-primary, .btn-secondary, .btn-download {
    min-height: 48px; /* Minimum touch target size */
    font-size: 1rem;
  }
  
  /* iPhone Gallery Mobile Optimization */
  .iphone-gallery {
    height: 320px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .iphone-image {
    width: 180px;
  height: auto;
  }
  
  /* Adjust positioning for mobile - less overlap */
  .iphone-container:nth-child(1) {
    transform: translateX(-60px) rotate(-3deg) scale(0.9);
  }
  
  .iphone-container:nth-child(2) {
    transform: translateX(0px) rotate(0deg) scale(1);
  }
  
  .iphone-container:nth-child(3) {
    transform: translateX(60px) rotate(3deg) scale(0.9);
  }
  
  /* Mobile hover effects */
  .iphone-container:nth-child(1):hover {
    transform: translateX(-60px) rotate(-3deg) scale(0.95) translateY(-5px);
  }
  
  .iphone-container:nth-child(2):hover {
    transform: translateX(0px) rotate(0deg) scale(1.05) translateY(-5px);
  }
  
  .iphone-container:nth-child(3):hover {
    transform: translateX(60px) rotate(3deg) scale(0.95) translateY(-5px);
  }
  
  .image-label {
    font-size: 0.875rem;
    padding: 4px 8px;
    bottom: -30px;
  }
  
  .phone-mockup {
    width: 250px;
    height: 500px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .download-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .hero {
    padding-top: 60px;
    min-height: 100vh;
  }
  
  .hero-container {
    gap: var(--spacing-md);
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-md);
  }
  
  .nav-container {
    height: 60px;
  }
  
  /* Even smaller iPhone images for very small screens */
  .iphone-gallery {
    height: 280px;
    max-width: 320px;
  }
  
  .iphone-image {
    width: 150px;
  }
  
  /* Tighter positioning for small screens */
  .iphone-container:nth-child(1) {
    transform: translateX(-45px) rotate(-2deg) scale(0.85);
  }
  
  .iphone-container:nth-child(2) {
    transform: translateX(0px) rotate(0deg) scale(1);
  }
  
  .iphone-container:nth-child(3) {
    transform: translateX(45px) rotate(2deg) scale(0.85);
  }
  
  .image-label {
    font-size: 0.75rem;
    padding: 3px 6px;
    bottom: -25px;
  }
  
  .hero-title {
    margin-bottom: var(--spacing-md);
  }
  
  .title-line-1,
  .title-line-2,
  .title-highlight {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
  }
  
  .phone-mockup {
    width: 200px;
    height: 400px;
  }
  
  .btn-primary, .btn-secondary, .btn-download {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
  }
}

/* ==========================================================================
   Animations and Interactions
   ========================================================================== */

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

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.feature-card, .step {
  animation: fadeInUp 0.6s ease forwards;
}

.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; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }

/* ==========================================================================
   Accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .phone-mockup {
    animation: none;
  }
}

/* Focus styles for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.btn-download:focus,
.nav-link:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* ==========================================================================
   Privacy Policy Page Styles
   ========================================================================== */

.privacy-header {
  background: var(--gradient-hero);
  padding: var(--spacing-2xl) 0 var(--spacing-xl);
  text-align: center;
  position: relative;
}

.privacy-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  opacity: 1;
}

.header-content {
  position: relative;
  z-index: 2;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  transition: color var(--transition-fast);
}

.back-link:hover {
  color: white;
}

.privacy-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-display);
}

.effective-date {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.privacy-content {
  padding: var(--spacing-3xl) 0;
  background: var(--bg-secondary);
}

.privacy-text {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: var(--bg-accent);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
}

.privacy-section {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-section h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-display);
  font-weight: 600;
}

.privacy-section h3 {
  font-size: 1.2rem;
  color: #1F2937;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.privacy-section p {
  color: #374151;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.privacy-section ul {
  margin: var(--spacing-md) 0;
  padding-left: var(--spacing-lg);
}

.privacy-section li {
  color: #374151;
  line-height: 1.6;
  margin-bottom: var(--spacing-xs);
}

.data-category {
  background: #F9FAFB;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  margin: var(--spacing-md) 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.data-category h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.contact-info {
  background: #F3F4F6;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  margin: var(--spacing-md) 0;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
  }

.acknowledgment {
  background: var(--gradient-primary);
  color: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  text-align: center;
  margin-top: var(--spacing-xl);
}

.acknowledgment p {
  color: white;
  margin: 0;
}

/* Contact Page Specific Styles */
.email-text {
  text-align: center;
  margin: var(--spacing-lg) 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  background: rgba(139, 92, 246, 0.1);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(139, 92, 246, 0.2);
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  user-select: all;
  cursor: text;
  word-break: break-all;
}

.email-text:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

/* Mobile responsiveness for email text */
@media (max-width: 768px) {
  .email-text {
    font-size: 1.25rem;
    padding: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .email-text {
    font-size: 1rem;
    padding: var(--spacing-xs);
    margin: var(--spacing-md) 0;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  .navbar,
  .hero-buttons,
  .download {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: var(--spacing-lg) 0;
  }
  
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
}

