/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* CSS Variables */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --secondary-color: #64748b;
  --text-color: #1e293b;
  --text-light: #64748b;
  --background: #ffffff;
  --background-light: #f8fafc;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --error-color: #ef4444;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--background);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: var(--background);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

/* Mobile Menu Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0D0221 0%, #7B2CBF 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

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

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

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

.btn-secondary {
  background-color: white;
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--background-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-download {
  background-color: var(--text-color);
  color: white;
}

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

/* Mission Section */
.mission {
  padding: 5rem 0;
  background-color: var(--background);
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.mission-text,
.mission-goal {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--background-light);
}

.features-intro {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background-color: var(--background);
}

.benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.benefit-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  opacity: 0.1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  position: relative;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Quote Section */
.quote-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0D0221 0%, #7B2CBF 100%);
  color: white;
}

.ceo-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border: none;
  padding: 0;
}

.quote-text {
  font-size: 1.5rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.quote-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  left: -1rem;
  opacity: 0.3;
}

.quote-author {
  font-size: 1.125rem;
  font-style: normal;
}

.quote-author strong {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.25rem;
}

/* Team Section */
.team {
  padding: 5rem 0;
  background-color: var(--background-light);
}

.team h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7B2CBF 0%, #9D4EDD 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.team-member h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.team-role {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--background);
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* Download Section */
.download {
  padding: 5rem 0;
  text-align: center;
  background-color: var(--background-light);
}

.download h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.download p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.download-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.download-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}

.download-button:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.download-badge {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.download-badge:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

.store-badge {
  height: 60px;
  width: auto;
  display: block;
}

.download-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-color);
}

.download-icon {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #0D0221 0%, #7B2CBF 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Content Section */
.content-section {
  padding: 4rem 0;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.875rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.legal-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.legal-content h4 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.last-updated {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-info {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary-color);
}

/* Support Page */
.support-intro {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.125rem;
  color: var(--text-light);
}

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

.support-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.support-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.support-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

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

/* FAQ Section */
.faq-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  font-size: 1.125rem;
  padding: 1.25rem 1.5rem;
  margin: 0;
  cursor: pointer;
  background-color: var(--background-light);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e2e8f0;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
  margin: 0.5rem 0;
  color: var(--text-light);
}

/* Contact Form */
.contact-form-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.contact-form-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-form-section > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

/* Support Hours */
.support-hours {
  margin-top: 4rem;
}

.support-hours h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.hours-item {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.hours-item strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.hours-item p {
  color: var(--text-light);
  margin: 0;
}

/* Footer */
.footer {
  background-color: var(--text-color);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Screenshots Section */
.screenshots {
  padding: 5rem 0;
  background-color: var(--background);
}

.screenshots h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.screenshots-intro {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.screenshot-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--background-light);
}

.screenshot-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* App Features Page */
.app-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

.app-feature.reverse {
  direction: rtl;
}

.app-feature.reverse > * {
  direction: ltr;
}

.app-feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
  max-width: 280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.app-feature-image:hover {
  transform: scale(1.05);
}

.app-feature-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
}

.app-feature-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.app-feature-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.app-feature-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.app-feature-content ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
}

.app-feature-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.support-card {
  animation: fadeIn 0.6s ease-out;
}

/* Responsive Design for App Page */
@media (max-width: 968px) {
  .app-feature,
  .app-feature.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
    padding: 1.5rem;
  }

  .app-feature-content h2 {
    font-size: 1.75rem;
  }

  .app-feature-content p {
    font-size: 1rem;
  }

  .app-feature-image {
    max-width: 250px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Container */
  .container {
    padding: 0 15px;
  }

  /* Navigation - Mobile Dropdown */
  .navbar {
    padding: 0.75rem 0;
  }

  .navbar .container {
    flex-wrap: nowrap;
    position: relative;
  }

  .nav-brand {
    gap: 0.5rem;
  }

  .nav-logo {
    width: 32px;
    height: 32px;
  }

  .nav-title {
    font-size: 1.25rem;
  }

  /* Show hamburger menu */
  .nav-toggle {
    display: flex;
  }

  /* Mobile menu dropdown */
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    flex-direction: column;
    gap: 0;
    margin-top: 0.75rem;
    padding: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
  }

  .nav-menu.active {
    max-height: 400px;
    opacity: 1;
    margin-top: 1rem;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background-color: var(--background-light);
    color: var(--primary-color);
  }

  /* Hero Section */
  .hero {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Page Header */
  .page-header {
    padding: 2.5rem 0;
  }

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

  .page-subtitle {
    font-size: 1.125rem;
  }

  /* Sections */
  .mission,
  .features,
  .benefits,
  .team,
  .about,
  .download,
  .quote-section,
  .screenshots,
  .content-section {
    padding: 3rem 0;
  }

  /* Headings */
  .features h2,
  .download h2,
  .mission h2,
  .benefits h2,
  .team h2,
  .about h2,
  .screenshots h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  /* Mission Section */
  .mission-text,
  .mission-goal {
    font-size: 1rem;
  }

  /* Features Grid */
  .features-grid,
  .support-grid,
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .feature-card,
  .support-card {
    padding: 1.5rem;
  }

  .feature-icon,
  .support-icon {
    font-size: 2.5rem;
  }

  /* Benefits Grid */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefit-card {
    padding: 2rem;
  }

  .benefit-number {
    font-size: 3rem;
  }

  .benefit-card h3 {
    font-size: 1.25rem;
  }

  .benefit-card p {
    font-size: 1rem;
  }

  /* Quote Section */
  .quote-section {
    padding: 3rem 0;
  }

  .quote-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .quote-text::before {
    font-size: 3rem;
    top: -0.5rem;
    left: -0.5rem;
  }

  .quote-author {
    font-size: 1rem;
  }

  .quote-author strong {
    font-size: 1.125rem;
  }

  /* Team Grid */
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .team-member {
    padding: 1.5rem;
  }

  .team-avatar {
    width: 80px;
    height: 80px;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .team-member h3 {
    font-size: 1.125rem;
  }

  .team-role {
    font-size: 0.9rem;
  }

  /* About Content */
  .about-content {
    padding: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  /* Download Section */
  .download-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .download-button {
    padding: 1.25rem 1.5rem;
    min-width: auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .store-badge {
    height: 50px;
  }

  .download-text {
    font-size: 1rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
    margin-top: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }

  /* Screenshots Grid */
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .screenshot-item {
    max-width: 100%;
  }

  /* App Features */
  .app-feature-image {
    max-width: 220px;
  }

  /* Support Page */
  .support-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .support-card h3 {
    font-size: 1.25rem;
  }

  .support-card p {
    font-size: 0.95rem;
  }

  /* FAQ Section */
  .faq-section h2,
  .contact-form-section h2,
  .support-hours h2 {
    font-size: 1.75rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }

  /* Contact Form */
  .contact-form {
    padding: 1.5rem;
  }

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

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.625rem;
    font-size: 0.95rem;
  }

  /* Legal Content */
  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content h3 {
    font-size: 1.25rem;
  }

  .legal-content h4 {
    font-size: 1.125rem;
  }

  .legal-content p {
    font-size: 0.95rem;
  }

  .contact-info {
    padding: 1.25rem;
    font-size: 0.9rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 10px;
  }

  /* Navigation */
  .nav-menu {
    gap: 0.5rem;
  }

  .nav-menu a {
    font-size: 0.85rem;
    padding: 0.25rem;
  }

  /* Hero Section */
  .hero {
    padding: 2rem 0;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  /* Page Header */
  .page-header {
    padding: 2rem 0;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  /* Sections */
  .mission,
  .features,
  .benefits,
  .team,
  .about,
  .download,
  .quote-section,
  .screenshots,
  .content-section {
    padding: 2rem 0;
  }

  /* Headings */
  .features h2,
  .download h2,
  .mission h2,
  .benefits h2,
  .team h2,
  .about h2,
  .screenshots h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* Feature Cards */
  .feature-card,
  .support-card,
  .benefit-card {
    padding: 1.25rem;
  }

  .feature-icon,
  .support-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .feature-card h3,
  .support-card h3 {
    font-size: 1.125rem;
  }

  .feature-card p,
  .support-card p {
    font-size: 0.9rem;
  }

  /* Quote Section */
  .quote-text {
    font-size: 1rem;
  }

  .quote-text::before {
    font-size: 2.5rem;
  }

  .quote-author {
    font-size: 0.9rem;
  }

  .quote-author strong {
    font-size: 1rem;
  }

  /* Team Grid */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .team-avatar {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }

  /* About Content */
  .about-content {
    padding: 1.5rem;
  }

  /* Download Buttons */
  .download-button {
    padding: 1rem;
  }

  .store-badge {
    height: 45px;
  }

  /* Screenshots Grid */
  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* App Features */
  .app-feature {
    padding: 1.25rem;
    margin-bottom: 2rem;
  }

  .app-feature-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .app-feature-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .app-feature-content ul li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .app-feature-image {
    max-width: 200px;
  }

  /* Footer */
  .footer-section h4 {
    font-size: 0.95rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.85rem;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.95rem;
    padding: 0.875rem;
  }

  .faq-answer p {
    font-size: 0.875rem;
  }

  /* Contact Form */
  .contact-form {
    padding: 1.25rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }

  /* Legal Content */
  .legal-content h2 {
    font-size: 1.375rem;
  }

  .legal-content h3 {
    font-size: 1.125rem;
  }

  .legal-content h4 {
    font-size: 1rem;
  }

  .legal-content p {
    font-size: 0.875rem;
  }

  .contact-info {
    padding: 1rem;
    font-size: 0.85rem;
  }
}

/* Very small devices - improve touch targets and readability */
@media (max-width: 360px) {
  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .nav-menu a {
    padding: 0.5rem 1rem;
    width: auto;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .app-feature-image {
    max-width: 180px;
  }

  .benefit-number {
    font-size: 2.5rem;
  }
}

/* Landscape orientation for phones */
@media (max-width: 768px) and (orientation: landscape) {
  .hero,
  .page-header {
    padding: 2rem 0;
  }

  .hero h1,
  .page-header h1 {
    font-size: 1.75rem;
  }

  .nav-menu {
    margin-top: 0.5rem;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .nav-menu a,
  .faq-question,
  .download-button {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-card:hover,
  .support-card:hover,
  .team-member:hover,
  .screenshot-item:hover,
  .app-feature-image:hover {
    transform: none;
  }

  .feature-card:active,
  .support-card:active,
  .team-member:active {
    transform: scale(0.98);
  }
}

@media (max-width: 480px) {
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
}
