/* Tablet & Desktop Responsive Styles */

/* Tablet (768px+) */
@media (min-width: 768px) {
  /* Typography Scale Up */
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-xl);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .download-cta-title {
    font-size: var(--font-size-4xl);
  }
  
  /* Header Navigation */
  .header {
    height: 72px;
  }
  
  .header-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
  }
  
  .header-cta-mobile {
    display: none;
  }
  
  /* Hero Layout - Side by Side */
  .hero {
    margin-top: 72px;
    padding: var(--spacing-3xl) var(--spacing-lg);
  }
  
  .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
  }
  
  .hero-content {
    text-align: left;
  }
  
  .hero-icon-wrapper {
    justify-content: flex-start;
  }
  
  .hero-icon {
    width: 140px;
    height: 140px;
  }
  
  .hero-description {
    margin-left: 0;
  }
  
  .download-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .download-button {
    flex: 0 0 auto;
    min-width: 180px;
  }
  
  .hero-visual {
    margin-top: 0;
  }
  
  /* Features Grid */
  .features {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  
  /* Download CTA */
  .download-buttons-large {
    flex-direction: row;
    max-width: 100%;
    justify-content: center;
  }
  
  .download-button-large {
    min-width: 220px;
  }
  
  /* About Section */
  .about {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
  }
  
  /* Hide Sticky Bottom CTA on Desktop */
  .sticky-bottom-cta {
    display: none;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  /* Hero */
  .hero {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }
  
  .hero-icon {
    width: 160px;
    height: 160px;
  }
  
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .hero-description {
    font-size: var(--font-size-base);
  }
  
  /* Features Grid - 3 Columns */
  .features {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Download CTA */
  .download-cta {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }
  
  /* About */
  .about {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }
  
  /* Footer */
  .footer {
    padding: var(--spacing-2xl) var(--spacing-xl);
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
    align-items: start;
    gap: var(--spacing-xl);
  }
  
  .footer-brand {
    justify-content: flex-start;
  }
  
  .footer-contact {
    text-align: center;
  }
  
  .footer-legal {
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-xs);
  }
  
  .footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .hero-container,
  .features-container,
  .download-cta-container,
  .about-container,
  .footer-container {
    max-width: 1400px;
  }
}

/* Accessibility - Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-icon {
    animation: none;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .feature-card {
    border-width: 3px;
  }
  
  .download-button,
  .download-button-large {
    border-width: 3px;
  }
}

/* Print Styles */
@media print {
  .header,
  .sticky-bottom-cta,
  .download-buttons,
  .download-buttons-large {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero,
  .features,
  .about {
    padding: 1rem;
  }
  
  .hero-container {
    display: block;
  }
  
  a {
    text-decoration: underline;
  }
  
  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 0.875rem;
    color: #666;
  }
}
