/* M1 Pro Website Styles */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
}

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

ul, ol {
  list-style: none;
}

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

/* ===== Variables ===== */
:root {
  --color-primary: #FFB800;
  --color-primary-hover: #E6A600;
  --color-dark: #1A1A1A;
  --color-gray: #666666;
  --color-light-gray: #F5F5F5;
  --color-white: #FFFFFF;
  --max-width: 1200px;
  --header-height: 72px;
}

/* ===== Container ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

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

.btn-store {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 12px 24px;
}

.btn-store:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-store svg {
  width: 24px;
  height: 24px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
}

.header-logo .logo-img {
  height: 36px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray);
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: var(--color-dark);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-tagline {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-gray);
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray);
  margin-bottom: 0;
  margin-top: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: 20px;
  color: var(--color-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark);
}

.hero-stat-label {
  font-size: 14px;
  color: var(--color-gray);
  margin-top: 4px;
}

/* Hero Image/Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-mockup-phone {
  width: 280px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.15));
}

.hero-mockup-floating {
  position: absolute;
  background: var(--color-white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-mockup-floating.card-1 {
  top: 10%;
  right: 0;
}

.hero-mockup-floating.card-2 {
  bottom: 15%;
  left: 0;
}

.hero-mockup-floating-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-floating-text {
  font-size: 14px;
}

.hero-mockup-floating-text strong {
  display: block;
  font-weight: 600;
  color: var(--color-dark);
}

.hero-mockup-floating-text span {
  color: var(--color-gray);
  font-size: 12px;
}

/* ===== Mobile Styles ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-tagline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-mockup {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .header-nav.active {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
  }

  .hero-tagline {
    font-size: 14px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

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

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-mockup-floating {
    display: none;
  }
}

/* ===== Section Common Styles ===== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-gray);
}

/* ===== Features Section ===== */
.features {
  padding: 100px 0;
  background: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--color-light-gray);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-dark);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.6;
}

/* Features Mobile */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 24px;
  }
}

/* ===== Screenshots Carousel ===== */
.screenshots {
  padding: 100px 0;
  background: #f8f9fa;
  overflow: hidden;
}

.screenshots-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}

.screenshots-viewport {
  flex: 1;
  overflow: hidden;
}

.screenshots-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.screenshot-slide {
  flex: 0 0 calc(33.333% - 16px);
  text-align: center;
}

.screenshot-slide img {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.screenshot-label {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray);
}

.screenshots-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.screenshots-nav:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.screenshots-nav svg {
  width: 24px;
  height: 24px;
  color: var(--color-gray);
  transition: color 0.3s ease;
}

.screenshots-nav:hover svg {
  color: var(--color-dark);
}

.screenshots-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.screenshots-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.screenshots-dots .dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* Screenshots Mobile */
@media (max-width: 992px) {
  .screenshot-slide {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .screenshots {
    padding: 60px 0;
  }

  .screenshots-carousel {
    margin-top: 32px;
  }

  .screenshots-nav {
    display: none;
  }

  .screenshot-slide {
    flex: 0 0 80%;
  }

  .screenshots-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 10%;
  }

  .screenshots-track::-webkit-scrollbar {
    display: none;
  }

  .screenshot-slide {
    scroll-snap-align: center;
  }
}

/* ===== How It Works Section ===== */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 100%);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.step {
  flex: 1;
  max-width: 240px;
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--color-white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.step-icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-dark);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 30px;
}

.step-arrow svg {
  width: 24px;
  height: 24px;
  color: var(--color-gray);
  opacity: 0.5;
}

/* How It Works Mobile */
@media (max-width: 1024px) {
  .steps {
    flex-wrap: wrap;
    gap: 40px;
  }

  .step {
    flex: 0 0 calc(50% - 40px);
    max-width: none;
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 0;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step {
    flex: none;
    width: 100%;
    max-width: 300px;
  }
}

/* ===== Pricing Section ===== */
.pricing {
  padding: 100px 0;
  background: var(--color-white);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.pricing-toggle-label.active {
  color: var(--color-dark);
}

.pricing-toggle-switch {
  width: 56px;
  height: 30px;
  background: var(--color-light-gray);
  border-radius: 15px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.pricing-toggle-switch.active {
  background: var(--color-primary);
}

.pricing-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.pricing-toggle-switch.active .pricing-toggle-slider {
  transform: translateX(26px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--color-light-gray);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  background: var(--color-dark);
  color: var(--color-white);
}

.pricing-card.popular .pricing-card-desc,
.pricing-card.popular .price-period,
.pricing-card.popular .pricing-card-features li {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card.popular .pricing-card-features svg {
  fill: var(--color-primary);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
}

.pricing-card-header {
  margin-bottom: 24px;
}

.pricing-card-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-card-desc {
  font-size: 14px;
  color: var(--color-gray);
}

.pricing-card-price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-value {
  font-size: 40px;
  font-weight: 800;
}

.price-currency {
  font-size: 20px;
  font-weight: 600;
}

.price-period {
  font-size: 16px;
  color: var(--color-gray);
}

.pricing-card-features {
  margin-bottom: 28px;
}

.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 12px;
}

.pricing-card-features li:last-child {
  margin-bottom: 0;
}

.pricing-card-features svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card-features strong {
  color: var(--color-dark);
}

.pricing-card.popular .pricing-card-features strong {
  color: var(--color-white);
}

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

.pricing-card.popular .btn-primary {
  background: var(--color-primary);
  color: var(--color-dark);
}

.pricing-footer {
  text-align: center;
  margin-top: 40px;
}

.pricing-footer p {
  font-size: 14px;
  color: var(--color-gray);
}

/* Pricing Mobile */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 60px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .price-value {
    font-size: 32px;
  }
}

/* ===== Reviews Section ===== */
.reviews {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 100%);
  overflow: hidden;
}

.reviews-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 100%;
  background: var(--color-white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
}

.review-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-dark);
  margin-bottom: 28px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
}

.review-author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.review-author-role {
  font-size: 14px;
  color: var(--color-gray);
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.reviews-nav-btn {
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-nav-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.reviews-nav-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--color-dark);
  stroke-width: 2;
}

.reviews-dots {
  display: flex;
  gap: 8px;
}

.reviews-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-dots .dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 5px;
}

/* Reviews Mobile */
@media (max-width: 768px) {
  .reviews {
    padding: 60px 0;
  }

  .review-card {
    padding: 28px;
  }

  .review-text {
    font-size: 16px;
  }

  .review-avatar {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
}

/* ===== FAQ Section ===== */
.faq {
  padding: 100px 0;
  background: var(--color-white);
}

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

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.faq-question span {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--color-gray);
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--color-primary);
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* FAQ Mobile */
@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}

/* ===== Final CTA ===== */
.final-cta {
  background: var(--primary-color);
  padding: 80px 0;
}

.final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.final-cta-subtitle {
  font-size: 18px;
  color: #3d3d3d;
  margin-bottom: 32px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.store-badge-dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

.store-badge-dark svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.store-badge-dark .store-badge-label {
  display: block;
  font-size: 12px;
  color: #a0a0a0;
  text-align: left;
}

.store-badge-dark .store-badge-name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
}

/* Final CTA Mobile */
@media (max-width: 768px) {
  .final-cta {
    padding: 60px 0;
  }

  .final-cta-title {
    font-size: 28px;
  }

  .final-cta-subtitle {
    font-size: 16px;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-badge-dark {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ===== Footer ===== */
.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
}

.footer-desc {
  color: #a0a0a0;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-stores {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.footer .store-badge:hover {
  background: #3a3a3a;
  border-color: #4a4a4a;
}

.footer .store-badge svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.footer .store-badge-label {
  display: block;
  font-size: 11px;
  color: #a0a0a0;
}

.footer .store-badge-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.footer-links-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-links ul,
.footer-contacts ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 14px;
}

.footer-links a,
.footer-legal a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

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

.footer-contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contacts svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.footer-contacts a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

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

.footer-requisites {
  border-top: 1px solid #2a2a2a;
  padding-top: 40px;
  margin-bottom: 40px;
}

.footer-requisites .footer-links-title {
  margin-bottom: 20px;
}

.footer-requisites-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 30px !important;
  width: 100% !important;
}

.footer-requisites-col {
  min-width: 0;
}

.footer-requisites-col:nth-child(1) {
  -ms-grid-column: 1;
}

.footer-requisites-col:nth-child(2) {
  -ms-grid-column: 3;
}

.footer-requisites-col:nth-child(3) {
  -ms-grid-column: 5;
}

.footer-requisites-col p {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 6px;
}

.footer-requisites-col p strong {
  color: #d0d0d0;
}

.footer-requisites-col a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-requisites-col a:hover {
  color: var(--primary-color);
}

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

.footer-copyright {
  color: #606060;
  font-size: 14px;
  margin: 0;
}

.footer-company {
  color: #606060;
  font-size: 14px;
  margin: 0;
}

/* Footer Mobile */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-stores {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-requisites-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 60px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-stores {
    justify-content: center;
  }

  .footer-links,
  .footer-contacts,
  .footer-legal {
    text-align: center;
  }

  .footer-contacts li {
    justify-content: center;
  }

  .footer-requisites-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .footer-requisites {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
