/* Swiss Template - Swiss International Style Design
   ============================================
   Core Principles:
   - No gradients, no shadows, no roundings
   - Grid-first layout
   - Left-aligned typography
   - High contrast (black/white/gray)
   - Pure minimalism
   - Bold sans-serif type
   ============================================ */

/* ============================================
   Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Arial", sans-serif;
  background-color: #e8e8e8;
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Focus & Selection Styles */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

::selection {
  background: #000000;
  color: #ffffff;
}

/* ============================================
   Typography - Bold, Sharp, Authoritative
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 0;
  color: #000000;
  text-transform: none;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

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

h4 {
  font-size: 1.25rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

strong {
  font-weight: 700;
}

/* ============================================
   Container & Layout - Grid System
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

/* ============================================
   Header - Minimal, Functional
   ============================================ */
.site-header {
  background: #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #000000;
}

.site-header .container {
  padding-top: 0;
  padding-bottom: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.site-logo {
  height: 48px;
  width: 48px;
  border: 1px solid #000000;
  object-fit: cover;
}

.brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.site-nav {
  display: none;
}

@media (min-width: 768px) {
  .site-nav {
    display: block;
  }
}

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

.nav-link {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============================================
   Buttons - Solid, No Frills
   ============================================ */
.cta-button {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  padding: 0.875rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border: 2px solid #000000;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-button:hover {
  background: #ffffff;
  color: #000000;
}

.cta-button-secondary {
  background: transparent;
  color: #000000;
}

.cta-button-secondary:hover {
  background: #000000;
  color: #ffffff;
}

/* ============================================
   Hero Section - Left-aligned, Bold
   ============================================ */
.hero {
  padding: 6rem 0 5rem;
  background: #e8e8e8;
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 0 6rem;
  }
}

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

.hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666666;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  gap: 0.125rem;
}

.star {
  color: #000000;
  font-size: 1rem;
}

.rating-text {
  font-size: 0.875rem;
  color: #1a1a1a;
  margin: 0;
}

.rating-text strong {
  font-weight: 700;
}

.rating-count {
  color: #666666;
}

/* ============================================
   Section Common Styles
   ============================================ */
.section-header {
  margin-bottom: 4rem;
  max-width: 700px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666666;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0;
  max-width: 600px;
}

.section-cta {
  margin-top: 3rem;
}

/* ============================================
   Screenshots Section
   ============================================ */
.screenshots-section {
  padding: 5rem 0;
  background: #ffffff;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.screenshots-container {
  margin-bottom: 3rem;
}

.screenshots-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666666;
  margin-bottom: 1.5rem;
}

/* Wrapper for mobile edge-to-edge */
.screenshots-scroll-wrap {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.screenshots-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0 1.25rem 1.5rem;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 1.25rem;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.screenshots-scroll::-webkit-scrollbar {
  height: 6px;
}

.screenshots-scroll::-webkit-scrollbar-track {
  background: #e8e8e8;
  border-radius: 3px;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.screenshots-scroll::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 3px;
}

.screenshot-card {
  flex-shrink: 0;
  width: min(280px, calc(100vw - 3rem));
  border: 1px solid #000000;
  overflow: hidden;
  scroll-snap-align: start;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 280 / 607;
  display: block;
}

@media (max-width: 767px) {
  .screenshots-scroll-wrap,
  .testimonials-scroll-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

@media (min-width: 768px) {
  .screenshots-scroll,
  .testimonials-scroll {
    padding-inline: 1.5rem;
    scroll-padding-inline: 1.5rem;
  }

  .screenshots-scroll::-webkit-scrollbar-track,
  .testimonials-scroll::-webkit-scrollbar-track {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  @supports ((mask-image: linear-gradient(#000, #000)) or (-webkit-mask-image: linear-gradient(#000, #000))) {
    .screenshots-scroll,
    .testimonials-scroll {
      --edge-fade: 2rem;
      -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 var(--edge-fade),
        #000 calc(100% - var(--edge-fade)),
        transparent 100%
      );
      mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 var(--edge-fade),
        #000 calc(100% - var(--edge-fade)),
        transparent 100%
      );
      padding-inline: var(--edge-fade);
      scroll-padding-inline: var(--edge-fade);
    }

    .screenshots-scroll::-webkit-scrollbar-track,
    .testimonials-scroll::-webkit-scrollbar-track {
      margin-left: var(--edge-fade);
      margin-right: var(--edge-fade);
    }
  }
}

/* ============================================
   Highlights Section
   ============================================ */
.highlights-section {
  padding: 5rem 0;
  background: #e8e8e8;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #000000;
  border: 1px solid #000000;
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
}

.highlight-icon {
  margin-bottom: 1.5rem;
}

.icon-emoji {
  font-size: 2rem;
}

.highlight-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.highlight-description {
  color: #1a1a1a;
  margin: 0;
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
  padding: 5rem 0;
  background: #ffffff;
  border-top: 1px solid #000000;
}

.feature-category {
  margin-bottom: 5rem;
}

.feature-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.category-description {
  color: #1a1a1a;
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #000000;
  border: 1px solid #000000;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #f5f5f5;
  padding: 2.5rem 2rem;
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.feature-description {
  color: #1a1a1a;
  margin: 0;
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works-section {
  padding: 5rem 0;
  background: #e8e8e8;
  border-top: 1px solid #000000;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border: 1px solid #000000;
  position: relative;
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: #000000;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
}

.step-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-description {
  color: #1a1a1a;
  margin: 0;
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
  padding: 5rem 0;
  background: #ffffff;
  border-top: 1px solid #000000;
  overflow-x: visible;
}

/* Wrapper for mobile edge-to-edge */
.testimonials-scroll-wrap {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.testimonials-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0 1.25rem 1.5rem;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 1.25rem;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.testimonials-scroll::-webkit-scrollbar {
  height: 6px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: #e8e8e8;
  border-radius: 3px;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 3px;
}

.testimonial-card {
  flex-shrink: 0;
  width: min(320px, calc(100vw - 3rem));
  background: #f5f5f5;
  padding: 2rem 1.5rem;
  border: 1px solid #000000;
  scroll-snap-align: start;
}

.testimonial-rating {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating .star {
  color: #000000;
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   Download Section
   ============================================ */
.download-section {
  padding: 5rem 0;
  background: #000000;
  color: #ffffff;
  border-top: 1px solid #000000;
}

.download-content h2 {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.download-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.download-section .cta-button {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.download-section .cta-button:hover {
  background: transparent;
  color: #ffffff;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
  padding: 5rem 0;
  background: #e8e8e8;
  border-top: 1px solid #000000;
}

.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  border: 1px solid #000000;
}

.faq-item {
  background: #ffffff;
  border-bottom: 1px solid #000000;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.faq-question:hover {
  background: #f5f5f5;
}

.question-text {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  flex: 1;
}

.question-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question-icon svg {
  color: #000000;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 2rem;
}

.answer-content {
  color: #1a1a1a;
  line-height: 1.6;
  padding-bottom: 1.5rem;
}

.faq-item.is-open .faq-answer {
  padding-top: 0;
}

.faq-item.is-open .question-icon svg {
  transform: rotate(180deg);
}

/* ============================================
   Footer - Minimal Grid
   ============================================ */
.site-footer {
  padding: 3rem 0;
  background: #e8e8e8;
  border-top: 1px solid #000000;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border: 1px solid #000000;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #1a1a1a;
  margin: 0;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #000000;
}

.footer-year {
  font-size: 1.5rem;
  font-weight: 900;
  color: #000000;
  margin: 0;
  letter-spacing: -0.02em;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #666666;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   Blog Pages
   ============================================ */
.blog-index {
  padding: 5rem 0;
  background: #e8e8e8;
}

.blog-header {
  margin-bottom: 4rem;
}

.blog-header h1 {
  margin-bottom: 1rem;
}

.blog-header p {
  font-size: 1rem;
  color: #1a1a1a;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #000000;
  border: 1px solid #000000;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: #ffffff;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-link:hover {
  background: #f5f5f5;
}

.blog-card-content {
  padding: 2rem;
}

.blog-date {
  font-size: 0.75rem;
  color: #666666;
  display: block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #000000;
  font-weight: 700;
}

.blog-excerpt {
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.blog-read-more {
  color: #000000;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-post {
  padding: 5rem 0;
  background: #ffffff;
}

.blog-post-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #000000;
}

.back-link {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.back-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-post-header h1 {
  margin-bottom: 1rem;
}

.blog-post-meta {
  color: #666666;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-post-content,
.prose {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.prose h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #e8e8e8;
}

.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.5rem;
}

.prose ul,
.prose ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose code {
  background: #f5f5f5;
  padding: 0.25rem 0.5rem;
  font-size: 0.9em;
  font-family: 'Monaco', 'Courier New', monospace;
  border: 1px solid #e8e8e8;
}

.prose pre {
  background: #1a1a1a;
  color: #f5f5f5;
  padding: 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border: 1px solid #000000;
}

.prose pre code {
  background: none;
  padding: 0;
  color: inherit;
  border: none;
}

.prose img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border: 1px solid #000000;
}

.prose a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.prose a:hover {
  text-decoration-thickness: 2px;
}

.page-content {
  padding: 5rem 0;
  background: #ffffff;
}

/* ============================================
   QR Popup Modal
   ============================================ */
.qr-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1.5rem;
}

.qr-popup-content {
  background: #ffffff;
  padding: 3rem 2.5rem;
  max-width: 400px;
  width: 100%;
  border: 2px solid #000000;
  position: relative;
}

.qr-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 2px solid #000000;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.25rem;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-popup-close:hover {
  background: #000000;
  color: #ffffff;
}

.qr-popup-header {
  margin-bottom: 2rem;
}

.qr-popup-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #000000;
}

.qr-popup-subtitle {
  font-size: 0.875rem;
  color: #666666;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qr-popup-qr {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.qr-popup-qr img {
  width: 200px;
  height: 200px;
  border: 1px solid #000000;
}

.qr-popup-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qr-popup-store-link {
  display: inline-flex;
  align-items: center;
}

.qr-popup-store-icon {
  width: 1.75rem;
  height: 1.75rem;
}

/* ============================================
   Utility Classes
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #000000;
  color: #ffffff;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
  outline: none;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 767px) {
  .header-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .site-nav {
    display: block;
    width: 100%;
  }

  .nav-links {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .screenshots-scroll,
  .testimonials-scroll {
    scroll-behavior: auto;
  }
}
