/* FeelingApp.in - Enhanced Orange & White Theme Styles */

:root {
  /* Orange & White Color Scheme */
  --primary-orange: #FF6B35;
  --secondary-orange: #FF8A65;
  --accent-orange: #FF5722;
  --light-orange: #FFE0B2;
  --white: #FFFFFF;
  --cream-white: #FFF8F5;
  --dark-text: #2C2C2C;
  --gray-text: #666666;
  --light-gray: #F5F5F5;
  --border-color: #E5E5E5;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  --gradient-light: linear-gradient(135deg, var(--light-orange), var(--cream-white));
  --gradient-overlay: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 255, 255, 0.9));

  /* Shadows */
  --shadow-light: 0 2px 10px rgba(255, 107, 53, 0.1);
  --shadow-medium: 0 4px 20px rgba(255, 107, 53, 0.15);
  --shadow-heavy: 0 8px 30px rgba(255, 107, 53, 0.2);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Typography */
  --font-primary: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

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

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

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blinkCursor {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--primary-orange);
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Utility Classes */
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.typewriter {
  overflow: hidden;
  border-right: 3px solid var(--primary-orange);
  white-space: nowrap;
  animation: typewriter 3s steps(40) 1s 1 normal both, blinkCursor 1s steps(2) infinite;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-light);
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-medium);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  transition: var(--transition-smooth);
}

.nav__logo-img:hover {
  transform: scale(1.05);
}

.nav__logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-orange);
}

.nav__menu {
  display: flex;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  position: relative;
  transition: var(--transition-smooth);
  font-size: var(--font-size-sm);
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary-orange);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav__toggle-line {
  width: 25px;
  height: 3px;
  background: var(--primary-orange);
  transition: var(--transition-smooth);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

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

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

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

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

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

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

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-light);
  padding-top: 80px;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__bg-pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero__subtitle {
  font-size: var(--font-size-xl);
  color: var(--gray-text);
  margin-bottom: 0.5rem;
}

.hero__title {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero__description {
  font-size: var(--font-size-lg);
  color: var(--gray-text);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

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

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__stat-number {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-orange);
}

.hero__stat-label {
  font-size: var(--font-size-sm);
  color: var(--gray-text);
}

.hero__mockups {
  position: relative;
  height: 600px;
}

.mockup-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.phone-mockup {
  position: absolute;
  transition: var(--transition-smooth);
}

.phone-mockup--main {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-mockup--secondary {
  top: 50px;
  left: 0;
  transform: scale(0.8);
  z-index: 2;
}

.phone-mockup--tertiary {
  top: 50px;
  right: 0;
  transform: scale(0.8);
  z-index: 1;
}

.phone-mockup__img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition-smooth);
}

.phone-mockup__img:hover {
  transform: scale(1.05) rotateY(5deg);
}

/* Statistics Carousel Section */
.stats-carousel {
  padding: 4rem 0;
  background: var(--white);
  overflow: hidden;
}

.stats-carousel__wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.stats-carousel__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.stat-slide {
  min-width: 100%;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-slide__content {
  max-width: 600px;
}

.stat-slide__number {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.stat-slide__issue {
  font-size: var(--font-size-2xl);
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.stat-slide__message {
  font-size: var(--font-size-lg);
  color: var(--gray-text);
  line-height: 1.6;
}

.stats-carousel__indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--light-orange);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.indicator.active {
  background: var(--primary-orange);
}

/* Section Titles */
.section-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
  text-align: center;
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--gray-text);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Judgment Free Section */
.judgment-free {
  padding: 5rem 0;
  background: var(--light-gray);
}

.judgment-free__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.judgment-free__description {
  font-size: var(--font-size-lg);
  color: var(--gray-text);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.judgment-free__question {
  margin: 2rem 0;
}

.judgment-free__question h3 {
  font-size: var(--font-size-2xl);
  color: var(--primary-orange);
  font-weight: 600;
}

.judgment-free__assurance {
  font-size: var(--font-size-base);
  color: var(--gray-text);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.judgment-free__highlight {
  background: var(--light-orange);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.judgment-free__highlight p {
  color: var(--dark-text);
  font-weight: 500;
  line-height: 1.6;
}

.judgment-free__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.judgment-free__banner {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

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

.features__header {
  text-align: center;
  margin-bottom: 4rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-bounce);
  position: relative;
}

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

.feature-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-card__img {
  transform: scale(1.05);
}

.feature-card__content {
  padding: 2rem;
}

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

.feature-card__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.feature-card__description {
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-card__benefits {
  list-style: none;
  padding: 0;
}

.feature-card__benefits li {
  padding: 0.25rem 0;
  color: var(--gray-text);
  font-size: var(--font-size-sm);
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background: var(--light-gray);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.step {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

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

.step__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.step__description {
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step__icon {
  font-size: 2rem;
}

/* App Showcase Section */
.app-showcase {
  padding: 5rem 0;
  background: var(--white);
}

.app-showcase__header {
  text-align: center;
  margin-bottom: 4rem;
}

.app-showcase__carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.app-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.app-carousel__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.app-slide {
  min-width: 100%;
  position: relative;
}

.app-slide__img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

.app-slide__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.app-slide__info h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.app-carousel__controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  transform: translateY(-50%);
}

.app-carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  color: var(--primary-orange);
  transition: var(--transition-smooth);
}

.app-carousel__btn:hover {
  background: var(--white);
  transform: scale(1.1);
}

.app-carousel__indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Community Section */
.community {
  padding: 5rem 0;
  background: var(--light-gray);
}

.community__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.community__description {
  font-size: var(--font-size-lg);
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.community__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.community__stat {
  text-align: center;
}

.community__stat-number {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-orange);
}

.community__stat-label {
  font-size: var(--font-size-sm);
  color: var(--gray-text);
}

.community__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.community__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

.community__feature-text h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.community__feature-text p {
  color: var(--gray-text);
  line-height: 1.6;
}

.community__img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: var(--white);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.testimonial {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-bounce);
  position: relative;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.testimonial__quote {
  font-size: 3rem;
  color: var(--light-orange);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial__text {
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial__rating {
  margin-bottom: 1.5rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--font-size-lg);
}

.testimonial__name {
  font-weight: 600;
  color: var(--dark-text);
}

.testimonial__location {
  color: var(--gray-text);
  font-size: var(--font-size-sm);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
}

.cta-section__title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section__description {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.cta-section .btn--outline {
  border-color: var(--white);
  color: var(--white);
}

.cta-section .btn--outline:hover {
  background: var(--white);
  color: var(--primary-orange);
}

/* Download Section */
.download {
  padding: 5rem 0;
  background: var(--white);
}

.download__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.download__buttons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.download__btn {
  display: inline-block;
  transition: var(--transition-bounce);
}

.download__btn img {
  height: 50px;
  width: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-light);
}

.download__btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.download__qr {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.qr-code {
  width: 80px;
  height: 80px;
  background: var(--light-gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--gray-text);
}

.qr-code__text {
  color: var(--gray-text);
  font-size: var(--font-size-sm);
}

.download__person {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
  background: var(--dark-text);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-orange);
}

.footer__tagline {
  color: var(--secondary-orange);
  font-style: italic;
  margin-bottom: 1rem;
}

.footer__mission {
  color: #ccc;
  line-height: 1.6;
  font-size: var(--font-size-sm);
}

.footer__info h4,
.footer__links h4,
.footer__support h4 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.footer__info p {
  margin-bottom: 0.5rem;
  color: #ccc;
  font-size: var(--font-size-sm);
}

.footer__links,
.footer__support {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a,
.footer__support a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: var(--font-size-sm);
}

.footer__links a:hover,
.footer__support a:hover {
  color: var(--primary-orange);
}

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

.footer__copyright p,
.footer__motto p {
  color: #999;
  font-size: var(--font-size-sm);
}

.footer__motto p {
  color: var(--secondary-orange);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav__menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
  }

  .nav__menu.show {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .hero__content,
  .judgment-free__content,
  .community__content,
  .download__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero__title {
    font-size: var(--font-size-4xl);
  }

  .hero__mockups {
    height: 400px;
  }

  .phone-mockup--secondary,
  .phone-mockup--tertiary {
    display: none;
  }

  .features__grid,
  .how-it-works__steps,
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__stats,
  .community__stats {
    justify-content: center;
    gap: 1rem;
  }

  .footer__bottom {
    text-align: center;
    flex-direction: column;
  }
}

@media (max-width: 568px) {
  .container {
    padding: 0 15px;
  }

  .hero__title {
    font-size: var(--font-size-3xl);
  }

  .section-title {
    font-size: var(--font-size-3xl);
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: var(--font-size-sm);
  }

  .hero__buttons,
  .judgment-free__cta,
  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__stats,
  .community__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .download__buttons {
    justify-content: center;
  }
}

/* Animation Delays */
.fade-in-up[data-delay="0"] { transition-delay: 0s; }
.fade-in-up[data-delay="100"] { transition-delay: 0.1s; }
.fade-in-up[data-delay="200"] { transition-delay: 0.2s; }
.fade-in-up[data-delay="300"] { transition-delay: 0.3s; }
.fade-in-up[data-delay="400"] { transition-delay: 0.4s; }

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

/* Focus States */
.btn:focus,
.nav__link:focus,
.download__btn:focus {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}