/* Dark theme support */
:root {
  --primary: #059669;
  --primary-light: #10b981;
  --primary-dark: #047857;
  --secondary: #6366f1;
  --accent: #f59e0b;
  --bg-light: #ffffff;
  --bg-gray: #f8fafc;
  --bg-dark: #0f172a;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Dark theme colors */
  --bg-light-dark: #1f2937;
  --bg-gray-dark: #111827;
  --bg-dark-dark: #0f172a;
  --text-primary-dark: #f9fafb;
  --text-secondary-dark: #d1d5db;
  --text-light-dark: #9ca3af;
  --border-dark: #374151;
  --shadow-sm-dark: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md-dark: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg-dark: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  --shadow-xl-dark: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

/* Dark theme class */
[data-theme="dark"] {
  --bg-light: var(--bg-light-dark);
  --bg-gray: var(--bg-gray-dark);
  --bg-dark: var(--bg-dark-dark);
  --text-primary: var(--text-primary-dark);
  --text-secondary: var(--text-secondary-dark);
  --text-light: var(--text-light-dark);
  --border: var(--border-dark);
  --shadow-sm: var(--shadow-sm-dark);
  --shadow-md: var(--shadow-md-dark);
  --shadow-lg: var(--shadow-lg-dark);
  --shadow-xl: var(--shadow-xl-dark);
}

/* Theme toggle button */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.theme-toggle:hover {
  background: var(--bg-gray);
  transform: scale(1.1);
}

.theme-toggle:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Theme toggle animation */
.theme-toggle i {
  transition: transform 0.3s ease;
}

.theme-toggle:hover i {
  transform: rotate(15deg);
}

/* Smooth transitions for theme changes */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-light);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  padding-bottom: 80px; /* Add padding to account for sticky CTA */
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all 0.3s ease;
}

[data-theme="dark"] .header {
  background: rgba(31, 41, 55, 0.95);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--bg-gray);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: var(--bg-gray);
}

.mobile-menu-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Navigation Controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--bg-light);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .mobile-nav-content {
  background: var(--bg-light);
}

.mobile-nav.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: var(--bg-gray);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-links a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  background: var(--bg-gray);
  color: var(--primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Account for fixed header */
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23059669" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23059669" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23059669" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23059669" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23059669" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.download-buttons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.download-buttons a:hover {
  transform: translateY(-2px);
}

.download-buttons img {
  /* Remove card styling - just show the badge */
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-buttons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-buttons a:hover {
  transform: translateY(-2px);
}

.cta-buttons img {
  /* Remove card styling - just show the badge */
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #2d3748, #4a5568);
  border-radius: 40px;
  padding: 8px;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.phone-mockup:hover {
  transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Sections */
.section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  background: var(--bg-gray);
}

[data-theme="dark"] .features {
  background: var(--bg-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
  background: var(--bg-light);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.screenshot-card {
  background: var(--bg-gray);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.screenshot-card:hover {
  transform: translateY(-8px);
}

.screenshot-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
  background: var(--bg-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.testimonial-content {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.author-info h4 {
  font-weight: 600;
  color: var(--text-primary);
}

.author-info p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Blog Section */
.blog {
  background: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 2rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--primary-dark);
}

.blog-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 1rem 0;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta .cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.sticky-cta h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.sticky-cta p {
  font-size: 0.875rem;
  opacity: 0.9;
  margin: 0;
}

.sticky-cta .download-btn {
  flex-shrink: 0;
}

.sticky-cta a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.sticky-cta a:hover {
  transform: translateY(-2px);
}

.sticky-cta img {
  /* Remove card styling - just show the badge */
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 3rem 2rem 1rem;
}

[data-theme="dark"] .footer {
  background: var(--bg-dark);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  line-height: 1.6;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .phone-mockup {
    width: 280px;
    height: 560px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .theme-toggle {
    margin-right: 1rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .hero {
    padding-top: 70px; /* Slightly less padding on mobile */
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .download-buttons {
    justify-content: center;
    gap: 0.75rem;
  }

  .download-buttons img {
    height: 60px !important;
  }

  .cta-buttons img {
    height: 60px !important;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
    transform: perspective(800px) rotateY(-10deg) rotateX(5deg);
  }

  .phone-mockup:hover {
    transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .screenshot-card {
    padding: 1.5rem;
  }

  .screenshot-placeholder {
    height: 300px;
  }

  .sticky-cta {
    padding: 0.625rem 0;
  }

  .sticky-cta .cta-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .sticky-cta h2 {
    font-size: 0.9rem;
  }

  .sticky-cta p {
    font-size: 0.75rem;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .section-subtitle {
    font-size: 0.875rem;
  }

  .nav {
    padding: 0.75rem 1rem;
  }

  .hero-content {
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .hero {
    padding-top: 60px; /* Even less padding on very small screens */
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo img {
    width: 28px;
    height: 28px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .download-buttons img {
    height: 40px !important;
  }

  .cta-buttons img {
    height: 40px !important;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
    transform: perspective(600px) rotateY(-5deg) rotateX(5deg);
  }

  .phone-mockup:hover {
    transform: perspective(600px) rotateY(-2deg) rotateX(2deg);
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

  .feature-card h3 {
    font-size: 1.125rem;
  }

  .screenshot-card {
    padding: 1.25rem;
  }

  .screenshot-placeholder {
    height: 250px;
    font-size: 1rem;
  }

  .sticky-cta {
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.8rem;
    min-height: 40px;
    border-radius: 25px;
  }

  .footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.875rem;
  }

  .cta h2 {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .cta p {
    font-size: 0.875rem;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.8rem;
  }

  .phone-mockup {
    width: 180px;
    height: 360px;
  }

  .download-btn {
    padding: 0.625rem 0.875rem;
    font-size: 0.75rem;
    min-height: 36px;
  }

  .sticky-cta {
    padding: 0.5rem 0;
  }

  .sticky-cta .cta-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .sticky-cta h2 {
    font-size: 0.8rem;
  }

  .sticky-cta p {
    font-size: 0.7rem;
  }
  .download-buttons img {
    height: 55px !important;
  }

  .cta-buttons img {
    height: 55px !important;
  }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
  .nav-links a,
  .mobile-nav-links a {
    min-height: 44px;
    padding: 0.75rem 1rem;
  }

  .feature-card,
  .screenshot-card {
    cursor: pointer;
  }

  .feature-card:active,
  .screenshot-card:active {
    transform: scale(0.98);
  }

  .download-buttons a:active,
  .cta-buttons a:active {
    transform: scale(0.95);
  }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 2rem 0;
  }

  .hero-content {
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }
}

/* Privacy and Blog page responsive styles */
@media (max-width: 768px) {
  .privacy-hero,
  .blog-hero {
    padding: 6rem 1.5rem 3rem;
  }

  .privacy-hero h1,
  .blog-hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .privacy-hero p,
  .blog-hero p {
    font-size: 1rem;
  }

  .privacy-container,
  .blog-container {
    padding: 2rem 1.5rem;
  }

  .privacy-content {
    padding: 2rem;
  }

  .blog-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-post-image {
    height: 200px;
  }

  .blog-post-content {
    padding: 1.5rem;
  }

  .blog-post h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .privacy-hero,
  .blog-hero {
    padding: 5rem 1rem 2rem;
  }

  .privacy-hero h1,
  .blog-hero h1 {
    font-size: 1.75rem;
  }

  .privacy-hero p,
  .blog-hero p {
    font-size: 0.875rem;
  }

  .privacy-container,
  .blog-container {
    padding: 1.5rem 1rem;
  }

  .privacy-content {
    padding: 1.5rem;
  }

  .privacy-section h2 {
    font-size: 1.25rem;
  }

  .privacy-section h3 {
    font-size: 1.125rem;
  }

  .blog-post-image {
    height: 180px;
  }

  .blog-post-content {
    padding: 1.25rem;
  }

  .blog-post h2 {
    font-size: 1.125rem;
  }

  .blog-image {
    height: 180px;
    font-size: 1.5rem;
  }

  .blog-content {
    padding: 1.25rem;
  }
} 