/* ==========================================
   GoBarber - Main Stylesheet
   Brand Colors:
   - Primary Yellow: #fcd20a
   - Primary Black: #0e0e0e
   ========================================== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-yellow: #fcd20a;
  --primary-yellow-light: #fff9e0;
  --primary-yellow-hover: #e5be09;
  --primary-black: #0e0e0e;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --green-500: #22c55e;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Account for fixed header */
}

/* Smooth scrolling for all scrollable elements */
html, body {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--primary-black);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Focus visible for keyboard navigation with smooth scroll */
:focus-visible {
  outline: 2px solid var(--primary-yellow);
  outline-offset: 2px;
  scroll-margin-top: 100px;
}

/* Scroll margin for anchor targets */
section[id],
div[id] {
  scroll-margin-top: 100px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn i {
  font-size: 1.125rem;
}

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

.btn-primary:hover {
  background: var(--primary-yellow-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--primary-black);
  background: var(--gray-50);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Badge/Tag */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: var(--primary-yellow-light);
  color: var(--primary-black);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: var(--radius-full);
}

.badge i {
  font-size: 0.875rem;
}

/* ==========================================
   Header
   ========================================== */
.header {
  position: fixed;
  top: 0.35rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  padding: 0.35rem;
  width: auto;
  max-width: calc(100% - 0.7rem);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
  gap: 2.5rem;
  padding: 0 0.75rem;
}

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

.logo-img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  border-radius: var(--radius-full);
}

.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--primary-yellow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon i {
  font-size: 1.125rem;
  color: var(--primary-black);
}

.logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--gray-600);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary-black);
}

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

.nav-actions .btn {
  display: none;
}

@media (min-width: 768px) {
  .nav-actions .btn {
    display: inline-flex;
  }
}

.lang-switch {
  padding: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-500);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.lang-switch:hover {
  color: var(--primary-black);
  background: var(--gray-100);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--primary-black);
  border-radius: 2px;
  transition: all 0.3s;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 5rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  z-index: 99;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 1rem;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  padding: 7rem 0 0;
  background: var(--white);
  overflow: hidden;
  height: 100vh;
  border-radius: 0 0 3rem 3rem;
  position: relative;
}

.hero > * {
  position: relative;
  z-index: 2;
}

/* Gradient overlay - sits below dots and content */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--white) 0%, #fff9e6 50%, #fef3c7 100%);
  z-index: 0;
  pointer-events: none;
}

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

/* Dot pattern overlay - above gradient, below content */
.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, transparent 0%, var(--white) 60%),
    url('../images/dots.svg') repeat;
  background-size: 100%, 16px 16px;
}

.hero-container {
  text-align: center;
}

/* Hero Badge - New Style */
.hero .badge {
  margin-bottom: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.35rem;
  padding-right: 0.75rem;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.hero .badge .badge-label {
  background: var(--primary-yellow);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .badge .badge-text {
  font-weight: 500;
}

.hero .badge i {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-black);
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-title span {
  color: var(--primary-black);
}

.hero-subtitle {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

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

.hero-image {
  margin-top: 3rem;
  position: relative;
}

/* Hero Phones - Spread Layout */
.hero-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 0 1rem;
}

.hero-phone {
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  object-fit: contain;
}

.hero-phone-center {
  width: 240px;
  z-index: 3;
  position: relative;
}

.hero-phone-left {
  width: 200px;
  z-index: 1;
  transform: rotate(-8deg) translateX(30px);
}

.hero-phone-right {
  width: 200px;
  z-index: 1;
  transform: rotate(8deg) translateX(-30px);
}

@media (max-width: 900px) {
  .hero-phone-left,
  .hero-phone-right {
    width: 160px;
  }
  .hero-phone-center {
    width: 200px;
  }
  .hero-phone-left {
    transform: rotate(-8deg) translateX(20px);
  }
  .hero-phone-right {
    transform: rotate(8deg) translateX(-20px);
  }
}

@media (max-width: 640px) {
  .hero-phone-left,
  .hero-phone-right {
    display: none;
  }
  .hero-phone-center {
    width: 260px;
  }
}

/* Trust Badges */
.trust-badges {
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
}

.trust-badge i {
  font-size: 0.875rem;
  color: var(--primary-black);
}

/* ==========================================
   Stats Section
   ========================================== */
.stats {
  padding: 4rem 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 20rem;
  }
}

.stat-item {
  padding: 1.75rem 1rem;
  background:
    linear-gradient(to top, var(--gray-50) 0%, transparent 100%),
    url('../images/dots.svg') repeat;
  background-size: 100%, 16px 16px;
  background-color: var(--gray-50);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-black);
}

.stat-number span {
  color: var(--gray-400);
}

.stat-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ==========================================
   Section Styles
   ========================================== */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  margin-bottom: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 0.8125rem;
}

.section-badge i {
  font-size: 0.75rem;
}

.section-badge i {
  font-size: 0.75rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-black);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle.light {
  color: var(--gray-400);
}

/* ==========================================
   Benefits Section
   ========================================== */
.benefits {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }
}

.benefit-card {
  background:
    linear-gradient(to top, var(--gray-50) 0%, transparent 100%),
    url('../images/dots.svg') repeat;
  background-size: 100%, 16px 16px;
  background-color: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #fcd20a 0%, #f59e0b 50%, #ef4444 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.benefit-icon i {
  font-size: 1.25rem;
  color: var(--white);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ==========================================
   Features Section
   ========================================== */
.features {
  background: var(--white);
}

.features-content {
  display: grid;
  gap: 4rem;
  align-items: center;
}

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

.features-text h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .features-text h2 {
    font-size: 2.25rem;
  }
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  width: fit-content;
}

.feature-pill i {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.feature-pill span {
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 500;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-item i {
  font-size: 1rem;
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-item span {
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1rem;
  background: var(--primary-black);
  color: var(--white);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.store-btn:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

.store-btn i {
  font-size: 1.5rem;
}

.store-btn .store-icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.store-btn div {
  text-align: left;
}

.store-btn span {
  display: block;
  font-size: 0.625rem;
  opacity: 0.8;
}

.store-btn strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
}

.store-btn-light {
  background: var(--white);
  color: var(--primary-black);
  border: 1px solid var(--gray-200);
}

.store-btn-light:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.store-btn-light span {
  opacity: 0.7;
}

.features-image {
  position: relative;
}

.features-phone {
  max-width: 280px;
  margin: 0 auto;
}

.features-visual-placeholder {
  max-width: 400px;
  margin: 0 auto;
  background: var(--gray-100);
  border-radius: 1.5rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.features-visual-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

.feature-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.feature-card-float.top {
  top: 10%;
  right: 0;
}

.feature-card-float.bottom {
  bottom: 20%;
  left: 0;
}

@media (max-width: 1023px) {
  .feature-card-float {
    display: none;
  }
}

.feature-card-float .icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-yellow-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-float .icon i {
  font-size: 1.125rem;
}

/* Social Card (Features Section) */
.social-card {
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
}

.social-card-header {
  padding: 1rem;
  text-align: left;
}

.social-card-header i {
  font-size: 1.5rem;
  color: var(--gray-400);
}

.social-card-avatars {
  padding: 0 1rem 1rem;
}

.avatar-stack {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.avatar-stack .avatar-img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-card-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 1rem;
  margin: 0 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.profile-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary-black);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.profile-name .verified {
  font-size: 0.75rem;
  color: #1da1f2;
}

.profile-handle {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.profile-menu {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0.25rem;
}

.social-card-image {
  padding: 1rem;
}

.social-card-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 1rem;
}

.social-card-actions {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem 1.25rem;
}

.action-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.action-btn:hover {
  background: var(--gray-200);
}

.action-btn.active {
  background: #ec4899;
  color: var(--white);
}

.action-btn i {
  font-size: 0.875rem;
}

.feature-float-icon {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-float-icon.top-right {
  top: 5%;
  right: 5%;
}

.feature-float-icon i {
  font-size: 1rem;
  color: var(--gray-600);
}

@media (max-width: 1023px) {
  .feature-float-icon {
    display: none;
  }
}

/* ==========================================
   Advanced Tools Section
   ========================================== */
.advanced-tools {
  background: var(--white);
}

.advanced-tools-content {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .advanced-tools-content {
    grid-template-columns: 1fr 1fr;
  }
}

.advanced-tools-image {
  position: relative;
}

.advanced-tools-placeholder {
  max-width: 500px;
  margin: 0 auto;
  background: var(--gray-100);
  border-radius: 1.5rem;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.advanced-tools-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

.advanced-tools-text h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .advanced-tools-text h2 {
    font-size: 2.5rem;
  }
}

.advanced-tools-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.advanced-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .advanced-tools-grid {
    grid-template-columns: 1fr;
  }
}

.tool-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.tool-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-icon.yellow {
  background: var(--primary-yellow);
}

.tool-icon i {
  font-size: 1rem;
  color: var(--primary-black);
}

.tool-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.4;
}

/* ==========================================
   How It Works Section
   ========================================== */
.how-it-works {
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem 0;
  background:
    linear-gradient(to bottom, transparent 0%, rgba(252, 210, 10, 0.15) 100%),
    url('../images/dots.svg') repeat;
  background-size: 100%, 16px 16px;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  height: 380px;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  min-height: 2.8em;
  position: relative;
  z-index: 1;
}

.step-phone {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-image {
  width: 200px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.phone-frame {
  width: 200px;
  background: var(--primary-black);
  border-radius: 2rem;
  padding: 0.5rem;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.phone-notch {
  width: 90px;
  height: 24px;
  background: var(--primary-black);
  border-radius: 0 0 1rem 1rem;
  margin: 0 auto;
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-notch::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
  border: 2px solid #333;
}

.phone-screen-img {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  height: 280px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.phone-screen-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing {
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  background: var(--white);
  padding: 0.25rem;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--gray-200);
}

.pricing-toggle button {
  padding: 0.75rem 1.75rem;
  border: none;
  background: transparent;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--gray-500);
}

.pricing-toggle button.active {
  background: var(--white);
  color: var(--primary-black);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-card {
  background: var(--white);
  border-radius: 1.5rem;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card-top {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-card-top h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-black);
}

.pricing-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.pricing-header-row h3 {
  margin-bottom: 0;
}

.pricing-save-badge {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  color: var(--gray-600);
  white-space: nowrap;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price > span span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-500);
}

.pricing-price .price-yearly {
  display: none;
}

.pricing.yearly .pricing-price .price-monthly {
  display: none;
}

.pricing.yearly .pricing-price .price-yearly {
  display: inline;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.pricing-card-top .btn {
  width: 100%;
}

.pricing-card-bottom {
  padding: 1.5rem;
  background: var(--gray-50);
}

.pricing-card-bottom h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--gray-700);
}

.pricing-features i {
  font-size: 0.875rem;
  flex-shrink: 0;
}

.pricing-features li.included i {
  color: var(--green-500);
}

.pricing-features li.not-included {
  color: var(--gray-400);
}

.pricing-features li.not-included i {
  color: var(--gray-300);
}


/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials {
  background: var(--white);
  overflow: hidden;
}

.testimonials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.testimonials-wrapper::before,
.testimonials-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.testimonials-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.testimonials-row {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

/* Duplicate cards for seamless loop */
.testimonials-track::after {
  content: '';
  display: block;
}

.testimonials-row-right .testimonials-track {
  animation: slideRight 30s linear infinite;
}

.testimonials-row-left .testimonials-track {
  animation: slideLeft 30s linear infinite;
}

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

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

.testimonials-row:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  background:
    linear-gradient(to bottom, var(--white) 0%, var(--gray-50) 100%),
    url('../images/dots.svg') repeat;
  background-size: 100%, 16px 16px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  width: 280px;
  flex-shrink: 0;
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 0.875rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-info strong {
  display: block;
  font-size: 0.8125rem;
  margin-bottom: 0.25rem;
}

.testimonial-quote {
  color: var(--gray-800);
  font-size: 1.25rem;
  flex-shrink: 0;
}

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

.testimonial-stars i {
  font-size: 0.75rem;
  color: var(--primary-yellow);
}

.testimonial-text {
  font-size: 0.8125rem;
  color: var(--gray-700);
  line-height: 1.6;
  font-weight: 500;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq {
  background: transparent;
}

.faq-category {
  max-width: 700px;
  margin: 0 auto 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-black);
}

.faq-category:not(:first-of-type) {
  margin-top: 2rem;
}

.faq-grid {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  background: none;
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--primary-black);
  gap: 1rem;
}

.faq-item.active .faq-question {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.faq-icon {
  width: 2rem;
  height: 2rem;
  background: var(--primary-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.faq-icon i {
  font-size: 0.75rem;
  color: var(--white);
}

.faq-icon .fa-minus {
  display: none;
}

.faq-item.active .faq-icon .fa-plus {
  display: none;
}

.faq-item.active .faq-icon .fa-minus {
  display: block;
}

.faq-answer {
  display: none;
  padding: 1rem 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta {
  background: var(--white);
  background-image: radial-gradient(circle, var(--gray-200) 1px, transparent 1px);
  background-size: 20px 20px;
  text-align: center;
  overflow: hidden;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  position: relative;
  gap: 0;
}

.cta-phone {
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  object-fit: contain;
}

.cta-phone-center {
  width: 220px;
  z-index: 2;
}

.cta-phone-left {
  width: 180px;
  z-index: 1;
  transform: rotate(-8deg) translateX(30px);
}

.cta-phone-right {
  width: 180px;
  z-index: 1;
  transform: rotate(8deg) translateX(-30px);
}

.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta h2 {
    font-size: 2.5rem;
  }
}

.cta p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta .store-buttons {
  justify-content: center;
}

.store-btn-outline {
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--primary-black);
}

.store-btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

.store-btn-outline span {
  color: var(--gray-600);
}

.store-btn-outline strong {
  color: var(--primary-black);
}

.store-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .cta-phone-center {
    width: 160px;
  }

  .cta-phone-left,
  .cta-phone-right {
    display: none;
  }
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: var(--gray-50);
  color: var(--primary-black);
  padding: 4rem 0 2rem;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  color: var(--primary-black);
}

.footer-brand p {
  color: var(--gray-600);
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--primary-black);
}

.footer-social i {
  font-size: 0.875rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

@media (max-width: 767px) {
  .footer-nav {
    gap: 2rem;
  }
}

.footer-links h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  color: var(--gray-600);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-black);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.8125rem;
}

.footer-badges {
  display: flex;
  gap: 0.75rem;
}

.footer-store-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
}

.footer-store-badge:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}

.footer-store-badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* ==========================================
   Legal Pages (Privacy, Terms)
   ========================================== */
.header-simple {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  background: var(--white);
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.legal-page {
  padding: 6rem 0 4rem;
}

.legal-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.legal-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.legal-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-black);
}

.legal-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.legal-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-100);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--gray-600);
}

.legal-date i {
  font-size: 0.875rem;
}

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

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-black);
}

.legal-updated {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-black);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

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

.legal-content a:hover {
  color: var(--primary-black);
}

/* ==========================================
   Animations
   ========================================== */

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-down {
  animation: fadeInDown 0.6s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.fade-in-right {
  animation: fadeInRight 0.6s ease forwards;
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease forwards;
}

.slide-up {
  animation: slideUp 0.8s ease forwards;
}

/* Initial hidden state for animated elements */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  opacity: 1;
}

/* Hero Section Animations */
.hero .badge {
  animation: fadeInDown 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero h1 {
  animation: fadeInUp 0.7s ease 0.2s forwards;
  opacity: 0;
}

.hero > .container > p,
.hero .hero-content > p {
  animation: fadeInUp 0.7s ease 0.35s forwards;
  opacity: 0;
}

.hero .hero-cta {
  animation: fadeInUp 0.7s ease 0.5s forwards;
  opacity: 0;
}

.hero-images {
  animation: fadeIn 1s ease 0.6s forwards;
  opacity: 0;
}

.hero-images .hero-phone:nth-child(1) {
  animation: fadeInLeft 0.8s ease 0.7s forwards;
  opacity: 0;
}

.hero-images .hero-phone:nth-child(2) {
  animation: fadeInUp 0.8s ease 0.85s forwards;
  opacity: 0;
}

.hero-images .hero-phone:nth-child(3) {
  animation: fadeInRight 0.8s ease 1s forwards;
  opacity: 0;
}

/* Stats Section Animation */
.stats {
  animation: fadeInUp 0.7s ease forwards;
}

.stat-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Section Headers Animation */
.section-header {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Benefit Cards Staggered Animation */
.benefit-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.benefit-card.animated {
  opacity: 1;
  transform: translateY(0);
}

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

.benefit-card .benefit-icon {
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

/* Feature Cards Animation */
.features-content,
.features-barber-content {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.features-content.animated,
.features-barber-content.animated {
  opacity: 1;
  transform: translateY(0);
}

.features-image,
.features-barber-image {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.features-image {
  transform: translateX(-40px);
}

.features-barber-image {
  transform: translateX(40px);
}

.features-image.animated {
  opacity: 1;
  transform: translateX(0);
}

.features-barber-image.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Feature List Items */
.feature-list li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.feature-list.animated li {
  opacity: 1;
  transform: translateX(0);
}

.feature-list.animated li:nth-child(1) { transition-delay: 0.1s; }
.feature-list.animated li:nth-child(2) { transition-delay: 0.15s; }
.feature-list.animated li:nth-child(3) { transition-delay: 0.2s; }
.feature-list.animated li:nth-child(4) { transition-delay: 0.25s; }
.feature-list.animated li:nth-child(5) { transition-delay: 0.3s; }
.feature-list.animated li:nth-child(6) { transition-delay: 0.35s; }

/* How It Works Steps */
.step-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.step-card.animated {
  opacity: 1;
  transform: translateY(0);
}

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

.step-card .step-image img {
  transition: transform 0.5s ease;
}

.step-card:hover .step-image img {
  transform: scale(1.03);
}

/* Pricing Cards Animation */
.pricing-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  transition-delay: 0.1s;
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Testimonial Cards */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* FAQ Items Animation */
.faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.faq-question {
  transition: opacity 0.3s ease;
}

.faq-item:hover .faq-question {
  opacity: 0.7;
}

/* Download Section Animation */
.download {
  position: relative;
}

.download .section-header {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.download .section-header.animated {
  opacity: 1;
  transform: translateY(0);
}

.download-phones {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.download-phones.animated {
  opacity: 1;
  transform: translateY(0);
}

.download-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.download-cta.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Button Hover Effects */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: scale(0.98);
}

/* Store Button Hover */
.store-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Badge Animation */
.badge {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
}

/* Floating Animation for Images */
.hero-phone:nth-child(2) {
  animation: float 4s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Counter Animation Class */
.counter {
  display: inline-block;
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-phone:nth-child(2) {
    animation: none;
  }
}

/* Lazy Loading Images */
.lazy-image {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-image.loaded {
  opacity: 1;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
