/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: var(--transition);
}

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

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}

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

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

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

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 2rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu.active .mobile-link {
  animation: slideInLeft 0.4s ease-out forwards;
}

.mobile-link {
  opacity: 0;
}

.mobile-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
  border-radius: 8px;
  position: relative;
}

.mobile-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: width 0.3s ease;
  z-index: -1;
}

.mobile-link:hover::before {
  width: 100%;
}

.mobile-link:hover {
  color: var(--black);
  transform: translateX(4px);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 1400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out;
  transition: var(--transition);
}

.hero-badge:hover {
  border-color: var(--black);
  background: var(--gray-50);
  transform: scale(1.05);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--black);
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  transition: var(--transition);
}

.hero-title:hover {
  transform: scale(1.02);
}

.gradient-text {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeInUp 0.6s ease-out 0.3s both;
  justify-content: flex-start;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.store-badge-link:hover {
  transform: translateY(-4px);
}

.store-badge {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.store-badge-link:hover .store-badge {
  filter: brightness(0.95);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

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

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat {
  text-align: left;
  transition: var(--transition);
  padding: 1rem;
  border-radius: 12px;
}

.stat:hover {
  background: var(--gray-50);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.25rem;
  transition: var(--transition);
}

.stat:hover .stat-number {
  color: var(--black);
  transform: scale(1.1);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.hero-image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: var(--black);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
}

.screen-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Product Header */
.product-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 12px;
  transition: var(--transition);
}

.product-header:hover {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-image {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
  border-radius: 8px;
  flex-shrink: 0;
  transition: var(--transition);
}

.product-header:hover .product-image {
  transform: scale(1.1) rotate(5deg);
}

.product-info h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.25rem 0;
}

.product-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin: 0;
}

/* Payment Section */
.payment-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.payment-section h5 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.payment-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.02), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.payment-option:hover::before {
  opacity: 1;
}

.payment-option.selected {
  border-color: var(--black);
  background: var(--gray-50);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.option-radio {
  width: 16px;
  height: 16px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.payment-option.selected .option-radio {
  border-color: var(--black);
}

.payment-option.selected .option-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
}

.option-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.option-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
}

.option-amount {
  font-size: 0.7rem;
  color: var(--gray-600);
}

.option-badge {
  position: absolute;
  top: -8px;
  right: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* Payment Summary */
.payment-summary {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 10px;
  transition: var(--transition);
}

.payment-summary:hover {
  background: var(--gray-100);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.summary-row span:first-child {
  color: var(--gray-600);
}

.summary-row span:last-child {
  font-weight: 600;
  color: var(--black);
}

.summary-row.total {
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.875rem;
}

.summary-row.total span {
  font-weight: 800;
  color: var(--black);
}

.summary-row .free {
  color: #10b981;
}

/* CTA Button */
.mock-cta {
  margin-top: 0.5rem;
}

.cta-button {
  width: 100%;
  padding: 0.875rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.4s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Legacy Mock Styles */
.mock-header {
  height: 60px;
  background: var(--gray-100);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.mock-stats {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mock-stat {
  flex: 1;
  height: 80px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: 12px;
}

.mock-chart {
  height: 150px;
  background: var(--gray-100);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.mock-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-item {
  height: 50px;
  background: var(--gray-100);
  border-radius: 8px;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

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

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

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

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

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

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

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

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
}

/* ===========================
   HOW IT WORKS SECTION
   =========================== */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

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

.step-card {
  position: relative;
  padding: 3rem 2rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 24px;
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.step-card:hover::before {
  left: 100%;
}

.step-card:hover {
  transform: translateY(-12px);
  border-color: var(--black);
  box-shadow: var(--shadow-xl);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.step-card:hover .step-number {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-icon {
  margin: 1rem auto 1.5rem;
  color: var(--black);
  transition: var(--transition);
}

.step-card:hover .step-icon {
  animation: rotateIn 0.6s ease-out;
  transform: scale(1.15) rotate(5deg);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.step-card:hover .step-title {
  transform: translateY(-4px);
}

.step-description {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===========================
   BENEFITS SECTION
   =========================== */
.benefits {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.benefit-card {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--black);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  position: relative;
}

.benefit-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--black);
  border-radius: 16px;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(8deg);
}

.benefit-card:hover .benefit-icon::before {
  opacity: 0.1;
  transform: scale(1.2);
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.benefit-card:hover .benefit-title {
  transform: translateX(4px);
}

.benefit-description {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===========================
   FEATURES SECTION (LEGACY)
   =========================== */
.features {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  transition: var(--transition);
}

.section-title:hover {
  transform: scale(1.02);
  color: var(--black);
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
}

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

.feature-card {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.02), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--black);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--black);
  border-radius: 16px;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(8deg);
}

.feature-card:hover .feature-icon::before {
  opacity: 0.1;
  transform: scale(1.2);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.feature-card:hover .feature-title {
  transform: translateX(4px);
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===========================
   SUPPLIERS SECTION
   =========================== */
.suppliers {
  padding: 100px 0;
  background: var(--white);
}

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

.suppliers-text {
  max-width: 600px;
}

.suppliers-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  transition: var(--transition);
}

.suppliers-text:hover .suppliers-description {
  color: var(--gray-700);
}

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

.supplier-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.supplier-benefit::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
  transition: left 0.6s ease;
}

.supplier-benefit:hover::before {
  left: 100%;
}

.supplier-benefit:hover {
  border-color: var(--black);
  transform: translateX(12px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.supplier-benefit svg {
  flex-shrink: 0;
  color: var(--black);
  transition: var(--transition);
}

.supplier-benefit:hover svg {
  transform: scale(1.2) rotate(10deg);
}

.supplier-benefit h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
  transition: var(--transition);
}

.supplier-benefit:hover h4 {
  transform: translateX(4px);
}

.supplier-benefit p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.suppliers-form {
  position: relative;
}

.contact-card {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,0,0,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  border-color: var(--black);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.contact-icon {
  margin: 0 auto 1.5rem;
  color: var(--black);
  animation: scaleIn 0.6s ease-out;
}

.contact-card:hover .contact-icon {
  animation: bounce 0.6s ease-in-out;
}

.contact-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.contact-card:hover h3 {
  transform: translateY(-4px);
}

.contact-card > p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.contact-method::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.03), transparent);
  transition: left 0.5s ease;
}

.contact-method:hover::after {
  left: 100%;
}

.contact-method:hover {
  border-color: var(--black);
  transform: translateX(8px);
}

.contact-method svg {
  flex-shrink: 0;
  color: var(--black);
  transition: var(--transition);
}

.contact-method:hover svg {
  transform: scale(1.2) rotate(-10deg);
}

.contact-method > div {
  display: flex;
  flex-direction: column;
}

.method-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.method-value {
  font-size: 1rem;
  color: var(--black);
  font-weight: 600;
  transition: var(--transition);
}

.contact-method:hover .method-value {
  transform: translateX(2px);
}

/* ===========================
   ABOUT SECTION (LEGACY)
   =========================== */
.about {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.about-text {
  max-width: 600px;
}

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

.about-text:hover .about-description {
  color: var(--gray-700);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-feature::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.03), transparent);
  transition: left 0.5s ease;
}

.about-feature:hover::before {
  left: 100%;
}

.about-feature:hover {
  border-color: var(--black);
  transform: translateX(12px);
}

.about-feature svg {
  flex-shrink: 0;
  color: var(--black);
  transition: var(--transition);
}

.about-feature:hover svg {
  transform: scale(1.2) rotate(10deg);
}

.about-feature span {
  font-weight: 500;
  color: var(--gray-700);
}

.about-image {
  position: relative;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.dashboard-mockup:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.mockup-header {
  padding: 1rem;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.mockup-dots {
  display: flex;
  gap: 0.5rem;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: var(--transition);
}

.dashboard-mockup:hover .mockup-dots span {
  background: var(--gray-400);
}

.mockup-content {
  display: flex;
  height: 400px;
}

.mockup-sidebar {
  width: 200px;
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
}

.mockup-main {
  flex: 1;
  padding: 2rem;
}

.mockup-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mockup-card {
  height: 100px;
  background: var(--gray-100);
  border-radius: 12px;
  transition: var(--transition);
}

.dashboard-mockup:hover .mockup-card {
  background: var(--gray-200);
}

/* ===========================
   DOWNLOAD SECTION
   =========================== */
.download {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

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

.download:hover .section-title {
  transform: scale(1.02);
}

.download .section-description {
  color: var(--gray-400);
  transition: var(--transition);
}

.download:hover .section-description {
  color: var(--gray-300);
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.store-badge-link {
  display: inline-block;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.store-badge-link::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.store-badge-link:hover::before {
  opacity: 1;
}

.store-badge-link:hover {
  transform: translateY(-8px) scale(1.08);
  filter: brightness(1.1);
}

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

/* Legacy store button styles */
.store-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--black);
  border-radius: 16px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}

.store-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
  border-color: var(--gray-300);
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.store-label {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.store-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition);
}

.footer-description {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.footer-brand:hover .footer-description {
  color: var(--gray-400);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
  color: var(--gray-400);
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scale(0);
  border-radius: 12px;
  transition: transform 0.4s ease;
  z-index: -1;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link:hover {
  color: var(--black);
  transform: translateY(-6px) scale(1.1);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.footer-column:hover .footer-title {
  transform: translateX(4px);
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list a {
  color: var(--gray-500);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.footer-list a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}

.footer-list a:hover::before {
  width: 100%;
}

.footer-list a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-600);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-bottom:hover {
  color: var(--gray-500);
}

.heart {
  color: #ef4444;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
}

/* ===========================
   RESPONSIVE
   =========================== */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .phone-mockup {
        width: 350px;
        height: 700px;
    }
}

/* Large Screens (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .hero-image {
        right: 2%;
    }
    
    .phone-mockup {
        width: 300px;
        height: 600px;
    }
}

/* Medium-Large Screens (1024px - 1199px) */
@media (max-width: 1199px) {
    .hero-image {
        right: 0%;
        top: 55%;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

/* Tablet Landscape (1024px - 1023px) */
@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-image {
    display: none;
  }

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

  .hero-title {
    font-size: 3rem;
    line-height: 1.2;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .suppliers-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .suppliers-text {
    max-width: 100%;
  }

  .dashboard-mockup {
    max-width: 100%;
    margin: 0 auto;
  }

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

  .step-card {
    padding: 2rem 1.5rem;
  }

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

  .benefit-card {
    padding: 2rem;
  }

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

  .feature-card {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

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

  .hero-buttons {
    gap: 0.75rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat {
    padding: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .step-card {
    padding: 2rem 1.5rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .step-icon {
    margin: 0.75rem auto 1rem;
  }

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

  .step-description {
    font-size: 0.9rem;
  }

  .benefit-card {
    padding: 1.75rem;
  }

  .benefit-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

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

  .benefit-description {
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 1.75rem;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

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

  .supplier-benefit {
    padding: 1.25rem;
  }

  .supplier-benefit h4 {
    font-size: 1rem;
  }

  .supplier-benefit p {
    font-size: 0.875rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .contact-card h3 {
    font-size: 1.5rem;
  }

  .contact-methods {
    gap: 0.75rem;
  }

  .contact-method {
    padding: 1rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-column {
    margin-bottom: 1rem;
  }

  .mockup-content {
    height: 300px;
  }

  .mockup-sidebar {
    width: 70px;
  }

  .mockup-main {
    padding: 1rem;
  }

  .mockup-cards {
    grid-template-columns: 1fr;
  }
}

/* Mobile Large (481px - 640px) */
@media (max-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }

  .navbar {
    height: 70px;
  }

  .nav-content {
    height: 70px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .mobile-menu {
    top: 70px;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

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

  .hero-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .hero-buttons .store-badge {
    height: 50px;
    width: auto;
    max-width: 100%;
  }

  .store-badge-link {
    flex: 0 1 auto;
    max-width: calc(50% - 0.375rem);
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat {
    padding: 0.75rem;
    border-radius: 8px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-card {
    padding: 1.5rem 1.25rem;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    top: -18px;
  }

  .step-icon {
    margin: 0.5rem auto 0.75rem;
  }

  .step-icon svg {
    width: 40px;
    height: 40px;
  }

  .step-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .step-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
  }

  .benefit-icon svg {
    width: 28px;
    height: 28px;
  }

  .benefit-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .benefit-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
  }

  .feature-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .feature-description {
    font-size: 0.85rem;
  }

  .suppliers-content {
    gap: 2rem;
  }

  .suppliers-text {
    max-width: 100%;
  }

  .suppliers-benefits {
    gap: 1rem;
  }

  .supplier-benefit {
    padding: 1rem;
    gap: 0.75rem;
  }

  .supplier-benefit svg {
    width: 24px;
    height: 24px;
  }

  .supplier-benefit h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }

  .supplier-benefit p {
    font-size: 0.8rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-icon {
    margin-bottom: 1rem;
  }

  .contact-icon svg {
    width: 48px;
    height: 48px;
  }

  .contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .contact-card > p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .contact-methods {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .contact-method {
    padding: 0.9rem;
    gap: 0.75rem;
  }

  .contact-method svg {
    width: 20px;
    height: 20px;
  }

  .method-label {
    font-size: 0.65rem;
  }

  .method-value {
    font-size: 0.9rem;
  }

  .download {
    padding: 60px 0;
  }

  .download .section-title {
    font-size: 1.75rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .store-badge {
    height: 48px;
    width: 100%;
  }

  .store-button {
    width: 100%;
    max-width: none;
  }

  .footer {
    padding: 50px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    margin-bottom: 0.75rem;
  }

  .footer-logo-text {
    font-size: 1.25rem;
  }

  .footer-description {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .social-links {
    gap: 0.75rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-column {
    margin-bottom: 0;
  }

  .footer-title {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .footer-list {
    gap: 0.5rem;
  }

  .footer-list a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.8rem;
  }

  .mockup-content {
    height: 250px;
  }

  .mockup-sidebar {
    width: 60px;
  }

  .mockup-main {
    padding: 0.75rem;
  }

  .mockup-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .mockup-card {
    height: 80px;
  }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .navbar {
    height: 60px;
  }

  .nav-content {
    height: 60px;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .mobile-menu {
    top: 60px;
    padding: 0.75rem 1rem;
  }

  .mobile-link {
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .gradient-text {
    display: block;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .hero-buttons .store-badge {
    height: 45px;
    width: auto;
    max-width: 100%;
  }

  .store-badge-link {
    flex: 0 1 auto;
    max-width: calc(50% - 0.25rem);
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 0.75rem;
  }

  .stat {
    padding: 0.5rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .steps-grid {
    gap: 1rem;
  }

  .step-card {
    padding: 1.25rem 1rem;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    top: -16px;
  }

  .step-icon {
    margin: 0.25rem auto 0.5rem;
  }

  .step-icon svg {
    width: 36px;
    height: 36px;
  }

  .step-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .step-description {
    font-size: 0.8rem;
  }

  .benefits-grid {
    gap: 1rem;
  }

  .benefit-card {
    padding: 1.25rem;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.5rem;
  }

  .benefit-icon svg {
    width: 24px;
    height: 24px;
  }

  .benefit-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .benefit-description {
    font-size: 0.8rem;
  }

  .features-grid {
    gap: 1rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 0.8rem;
  }

  .suppliers-content {
    gap: 1.5rem;
  }

  .suppliers-benefits {
    gap: 0.75rem;
  }

  .supplier-benefit {
    padding: 0.75rem;
  }

  .supplier-benefit svg {
    width: 20px;
    height: 20px;
  }

  .supplier-benefit h4 {
    font-size: 0.9rem;
  }

  .supplier-benefit p {
    font-size: 0.75rem;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .contact-icon {
    margin-bottom: 0.75rem;
  }

  .contact-icon svg {
    width: 40px;
    height: 40px;
  }

  .contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .contact-card > p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .contact-methods {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .contact-method {
    padding: 0.75rem;
  }

  .contact-method svg {
    width: 18px;
    height: 18px;
  }

  .method-label {
    font-size: 0.6rem;
  }

  .method-value {
    font-size: 0.85rem;
  }

  .download {
    padding: 50px 0;
  }

  .download .section-title {
    font-size: 1.5rem;
  }

  .download-buttons {
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .store-badge {
    height: 44px;
  }

  .footer {
    padding: 40px 0 25px;
  }

  .footer-content {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-logo {
    margin-bottom: 0.5rem;
  }

  .footer-logo-text {
    font-size: 1.1rem;
  }

  .footer-description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-title {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .footer-list {
    gap: 0.4rem;
  }

  .footer-list a {
    font-size: 0.8rem;
  }

  .footer-bottom {
    gap: 0.5rem;
    padding-top: 1rem;
    font-size: 0.75rem;
  }

  .mockup-content {
    height: 200px;
  }

  .mockup-sidebar {
    width: 50px;
  }

  .mockup-main {
    padding: 0.5rem;
  }
}

/* ===========================
   UTILITIES
   =========================== */
.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Smooth Scroll */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
