:root {
  --primary: #0056b3;
  --primary-dark: #1a1a1a;
  --primary-light: #333333;
  --secondary: #0056b3;
  --secondary-dark: #0056b3;
  --secondary-light: #0056b3;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-section: #f1f5f9;
  --border: #e2e8f0;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

/* Hero Section */
.hero {
  /* background: linear-gradient(135deg, #ffffff 0%, #f8fbff 50%, #ffffff 100%); */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(0, 123, 255, 0.12) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 1;
  z-index: 1;
}


.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  position: relative;
  z-index: 99999;
  transition: all 0.3s ease;
}

.nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 3rem;
}

.nav-brand img {
  height: 70px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s;
  font-size: 1rem;
}

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

.btn-signin {
  background: transparent;
  color: var(--primary) !important;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  border: 2px solid var(--primary);
  font-size: 0.875rem;
}

.btn-signin:hover {
  background: var(--primary);
  color: white !important;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 3rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-section);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  color: var(--primary);
}

.hero-badge i {
  width: 16px;
  height: 16px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 123, 255, 0.4);
  background: var(--primary-dark);
}

.btn-hero-primary i {
  width: 20px;
  height: 20px;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--text);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  border: 2px solid var(--border);
  transition: all 0.3s;
}

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

.btn-hero-secondary i {
  width: 20px;
  height: 20px;
}

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

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9375rem;
}

.hero-feature-item i {
  width: 18px;
  height: 18px;
  color: #28a745;
}

.hero-image-wrapper {
  position: relative;
  width: 120%;
  margin-left: -10%;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.hero-main-image {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.card-icon i {
  width: 24px;
  height: 24px;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.card-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.card-1 {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  left: -8%;
  animation-delay: 0.5s;
}

.card-3 {
  bottom: 5%;
  right: 10%;
  animation-delay: 1s;
}

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

.btn-download {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s;
}

.btn-download:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-download i {
  width: 18px;
  height: 18px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  /* box-shadow: 0 20px 60px rgba(0,0,0,0.12); */
  object-fit: cover;
}

.hero-badges {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border-radius: 50px;
  /* box-shadow: 0 8px 24px rgba(0,0,0,0.15); */
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  animation: float 3s ease-in-out infinite;
}

.floating-badge i {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.badge-1 {
  top: 10%;
  left: -8%;
  animation-delay: 0s;
}

.badge-2 {
  top: 20%;
  right: -5%;
  animation-delay: 0.5s;
}

.badge-3 {
  bottom: 25%;
  left: -5%;
  animation-delay: 1s;
}

.badge-4 {
  bottom: 10%;
  right: -5%;
  animation-delay: 1.5s;
}

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

.hero-stats-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 3rem 4rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}

.hero-stats-bar .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.hero-stats-bar .stat-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hero-stats-bar .stat-item i {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

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

/* Trust Bar */
.trust-bar {
  background: var(--bg);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.trust-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon i {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: var(--bg-alt);
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-section);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.section-badge i {
  width: 16px;
  height: 16px;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-light);
}

.features-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-large {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  padding: 0;
  border-radius: 20px;
  border: 2px solid var(--border);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-image {
  width: 100%;
  height: 140px;
  overflow: hidden;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.feature-large:hover .feature-image img {
  transform: scale(1.05);
}

.feature-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.feature-large:hover::before {
  transform: scaleX(1);
}

.feature-large:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.feature-large h3 {
  font-size: 1.75rem;
  margin: 1.5rem 2rem 1rem;
  color: var(--text);
  font-weight: 800;
}

.feature-large p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin: 0 2rem 1.5rem;
  line-height: 1.6;
}

.feature-large .feature-tags {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0 2rem 2rem;
}

.feature-large .feature-tags span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
}

.feature-large .feature-tags span i {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.more-features-header {
  text-align: center;
  margin: 4rem 0 3rem;
}

.more-features-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.more-features-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

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

.feature-compact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
}

.feature-compact:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-compact i {
  width: 32px;
  height: 32px;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-compact span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.features-grid {
  display: none;
}

/* Showcase Section */
.showcase {
  padding: 6rem 0;
  background: var(--bg);
}

.showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

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

.showcase-item.reverse {
  direction: rtl;
}

.showcase-item.reverse > * {
  direction: ltr;
}

.showcase-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transition: transform 0.4s;
}

.showcase-image:hover {
  transform: scale(1.02);
}

.showcase-image img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-content {
  padding: 2rem 0;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-section);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  color: var(--primary);
}

.showcase-badge i {
  width: 16px;
  height: 16px;
}

.showcase-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.showcase-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.showcase-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.showcase-features li i {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* SMS Promo Section */
.sms-promo {
  padding: 6rem 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.sms-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(0, 123, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.sms-promo-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.sms-promo-content {
  color: white;
}

.sms-promo-content .section-badge {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.sms-promo-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  letter-spacing: -0.02em;
}

.sms-promo-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.sms-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sms-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.sms-features li i {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.sms-promo-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.customer-image {
  position: relative;
  width: 220px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.3);
  border: 4px solid #007bff;
  animation: float 3s ease-in-out infinite;
  flex-shrink: 0;
}

.customer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.phone-mockup {
  width: 100%;
  max-width: 450px;
  background: #1f2937;
  border-radius: 40px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  flex-shrink: 0;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: #374151;
  border-radius: 3px;
}

.phone-screen {
  background: white;
  border-radius: 30px;
  padding: 2rem;
  min-height: 550px;
  display: flex;
  flex-direction: column;
}

.sms-demo {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.sms-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.sms-header i {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.sms-header span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}

.sms-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sms-input-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.sms-input-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 0.9375rem;
  font-family: inherit;
  resize: none;
  min-height: 120px;
  background: var(--bg-alt);
  color: var(--text);
}

.sms-recipients {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sms-recipients label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.recipient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.recipient-tags span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.recipient-tags span i {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.btn-send-sms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #007bff;
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0, 123, 255, 0.4);
  margin-top: auto;
}

.btn-send-sms:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
  background: #0056b3;
}

.btn-send-sms i {
  width: 20px;
  height: 20px;
}

/* Store Locator */
.store-locator {
  padding: 6rem 0;
  background: var(--bg-alt);
}

.store-locator-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.search-box {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.search-input-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: 2px solid var(--border);
}

.search-input-group:focus-within {
  border-color: var(--primary);
}

.search-input-group i:first-child {
  width: 20px;
  height: 20px;
  color: var(--text-light);
}

.search-input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
}

.btn-search {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-search i {
  width: 16px;
  height: 16px;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.stores-placeholder, .stores-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
}

.stores-placeholder i {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.store-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.store-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.store-card > div:first-child {
  flex: 1;
}

.store-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.store-logo {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.store-logo-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-logo-placeholder i {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.store-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.store-location, .store-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.store-location i, .store-contact i {
  width: 14px;
  height: 14px;
}

.store-description {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.btn-visit-store {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: auto;
}

.btn-visit-store:hover {
  background: var(--primary-dark);
}

.btn-visit-store i {
  width: 16px;
  height: 16px;
}

/* Benefits Section */
.benefits {
  padding: 0;
  background: var(--bg);
}

.benefits-container {
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 0;
}

.benefits-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

.benefits-overlay h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.benefits-overlay p {
  font-size: 1.5rem;
  opacity: 0.95;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding: 0 3rem;
}

.benefit-card {
  background: var(--bg);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.benefit-card:first-child {
  border-radius: 12px 0 0 12px;
}

.benefit-card:last-child {
  border-radius: 0 12px 12px 0;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  z-index: 20;
  border-color: var(--primary);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-weight: 700;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 1rem;
}

.benefits-visual {
  display: none;
}

/* Footer */
.footer {
  background: white;
  color: var(--text);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}

.footer p {
  opacity: 0.7;
  font-size: 0.875rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    width: 100%;
    margin-left: 0;
  }
  
  .floating-card {
    padding: 0.75rem 1rem;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
  }
  
  .card-icon i {
    width: 20px;
    height: 20px;
  }
  
  .card-value {
    font-size: 1.25rem;
  }
  
  .card-1 {
    top: 5%;
    right: 0;
  }
  
  .card-2 {
    bottom: 25%;
    left: 0;
  }
  
  .card-3 {
    bottom: 0;
    right: 5%;
  }
  
  .features-showcase {
    grid-template-columns: 1fr;
  }
  
  .features-compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }
  
  .nav-brand img {
    height: 50px;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .nav-links a:not(.btn-signin) {
    display: none;
  }
  
  .hero-container {
    padding: 2rem 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  .hero-feature-item {
    font-size: 0.875rem;
  }
  
  .hero-image-wrapper {
    margin-top: 2rem;
  }
  
  .hero-main-image {
    border-radius: 12px;
  }
  
  .floating-card {
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
  }
  
  .card-icon {
    width: 32px;
    height: 32px;
  }
  
  .card-icon i {
    width: 16px;
    height: 16px;
  }
  
  .card-label {
    font-size: 0.625rem;
  }
  
  .card-value {
    font-size: 1rem;
  }
  
  .card-1 {
    top: 2%;
    right: -2%;
  }
  
  .card-2 {
    bottom: 20%;
    left: -5%;
  }
  
  .card-3 {
    bottom: -2%;
    right: 2%;
  }
  
  .download-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-download {
    justify-content: center;
  }
  
  .trust-container {
    padding: 0 1.5rem;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .trust-item {
    font-size: 0.875rem;
  }
  
  .features-container,
  .benefits-container {
    padding: 0 1.5rem;
  }
  
  .showcase-container {
    padding: 0 1.5rem;
    gap: 4rem;
  }
  
  .showcase-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .showcase-item.reverse {
    direction: ltr;
  }
  
  .showcase-content h3 {
    font-size: 2rem;
  }
  
  .showcase-content p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    margin-top: -40px;
  }
  
  .benefit-card:first-child {
    border-radius: 12px 12px 0 0;
  }
  
  .benefit-card:last-child {
    border-radius: 0 0 12px 12px;
  }
  
  .benefits-hero {
    height: 400px;
  }
  
  .benefits-overlay h2 {
    font-size: 2.5rem;
  }
  
  .benefits-overlay p {
    font-size: 1.125rem;
  }

  .search-input-group {
    flex-wrap: wrap;
  }

  .btn-search {
    width: 100%;
  }
  
  .sms-promo-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }
  
  .sms-promo-content {
    text-align: center;
  }
  
  .sms-promo-content h2 {
    font-size: 2rem;
  }
  
  .sms-promo-content p {
    font-size: 1rem;
  }
  
  .sms-features {
    align-items: center;
  }
  
  .sms-promo-visual {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .customer-image {
    width: 120px;
    height: 150px;
  }
  
  .phone-mockup {
    max-width: 100%;
    padding: 15px;
  }
  
  .phone-screen {
    padding: 1.5rem;
    min-height: 450px;
  }
  
  .sms-demo {
    gap: 1rem;
  }
  
  .sms-input-group textarea {
    min-height: 100px;
    font-size: 0.875rem;
  }
}

/* AI Inventory Section - Professional Design */
.ai-inventory-section {
  padding: 6rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.ai-inventory-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.ai-inventory-content {
  color: var(--text);
}

.ai-inventory-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.ai-inventory-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.6;
}

.simple-demo-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid #e9ecef;
}

.demo-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  background: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.step-icon i {
  width: 24px;
  height: 24px;
  color: #007bff;
}

.step-content p {
  font-size: 1rem;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}

.demo-arrow {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  color: #cbd5e0;
}

.demo-arrow i {
  width: 24px;
  height: 24px;
}

.preview-box {
  background: #f8fafc;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1rem;
}

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

.preview-item i {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: white;
  border-radius: 8px;
  color: #007bff;
}

.preview-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.preview-item strong {
  font-size: 0.9375rem;
  color: var(--text);
}

.preview-item span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.success-box {
  background: #d4edda;
  border: 2px solid #28a745;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #155724;
  font-weight: 600;
}

.success-box i {
  width: 24px;
  height: 24px;
  color: #28a745;
}

@media (max-width: 968px) {
  .ai-inventory-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem;
  }

  .ai-inventory-content h2 {
    font-size: 2.25rem;
  }

  .ai-inventory-content p {
    font-size: 1.125rem;
  }
}

/* AI Analytics Section - Professional Design */
.ai-analytics-section {
  padding: 6rem 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.ai-analytics-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.ai-analytics-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.analytics-demo-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f1f5f9;
  margin-bottom: 1.5rem;
}

.demo-header i {
  width: 32px;
  height: 32px;
  color: #007bff;
}

.demo-header span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

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

.demo-question {
  display: flex;
  justify-content: flex-end;
}

.question-bubble {
  background: #007bff;
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 20px 20px 4px 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 80%;
}

.question-bubble i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.question-bubble span {
  font-size: 0.9375rem;
  font-weight: 500;
}

.demo-answer {
  display: flex;
  justify-content: flex-start;
}

.answer-card {
  background: #f8fafc;
  border: 2px solid #e7f3ff;
  border-radius: 16px;
  padding: 1.25rem;
  max-width: 90%;
  display: flex;
  gap: 1rem;
}

.answer-icon {
  width: 40px;
  height: 40px;
  background: #007bff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.answer-icon i {
  width: 24px;
  height: 24px;
  color: white;
}

.answer-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.answer-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.answer-content .recommendation {
  background: white;
  padding: 0.75rem;
  border-radius: 8px;
  border-left: 3px solid #007bff;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
}

.ai-analytics-content {
  color: var(--text);
}

.ai-analytics-content .section-badge {
  background: rgba(0, 123, 255, 0.1);
  border-color: rgba(0, 123, 255, 0.2);
  color: #0056b3;
}

.ai-analytics-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.ai-analytics-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.6;
}

.ai-examples {
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.example-tags span {
  background: #007bff;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

@media (max-width: 968px) {
  .ai-analytics-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem;
  }

  .ai-analytics-content h2 {
    font-size: 2.25rem;
  }

  .ai-analytics-content p {
    font-size: 1.125rem;
  }

  .analytics-demo-card {
    max-width: 100%;
  }

  .example-tags {
    flex-direction: column;
  }

  .example-tags span {
    text-align: center;
  }
}

/* AI Inventory Section - Matching SMS Style */
.ai-inventory-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.ai-inventory-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(0, 123, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.ai-inventory-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.ai-inventory-content {
  color: white;
}

.ai-inventory-content .section-badge {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.ai-inventory-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  letter-spacing: -0.02em;
}

.ai-inventory-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.ai-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ai-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.ai-features li i {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #007bff;
}

.ai-inventory-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ai-mockup {
  width: 100%;
  max-width: 450px;
  background: #1f2937;
  border-radius: 40px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  flex-shrink: 0;
}

.ai-mockup::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: #374151;
  border-radius: 3px;
}

.ai-screen {
  background: white;
  border-radius: 30px;
  padding: 2rem;
  min-height: 550px;
  display: flex;
  flex-direction: column;
}

.ai-demo {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.ai-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.ai-header i {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.ai-header span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}

.ai-chat-area {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.ai-message {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ai-message.user-msg {
  justify-content: flex-end;
}

.ai-message.user-msg i {
  order: 2;
  width: 32px;
  height: 32px;
  padding: 6px;
  background: #e7f3ff;
  color: #0056b3;
  border-radius: 50%;
  flex-shrink: 0;
}

.ai-message.user-msg span {
  background: #007bff;
  color: white;
  padding: 0.875rem 1.25rem;
  border-radius: 18px 18px 4px 18px;
  font-size: 0.9375rem;
  max-width: 70%;
  font-style: italic;
}

.ai-message.ai-msg {
  flex-direction: column;
  align-items: stretch;
}

.ai-preview-card {
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffc107;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.preview-header i {
  width: 18px;
  height: 18px;
}

.preview-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border: 2px solid #007bff;
  border-radius: 12px;
}

.preview-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e7f3ff, #cce5ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.preview-icon i {
  width: 24px;
  height: 24px;
  color: #0056b3;
}

.preview-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.preview-info strong {
  font-size: 1rem;
  color: var(--text);
}

.preview-info span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.btn-confirm-ai {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #007bff;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-confirm-ai:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

.btn-confirm-ai i {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .ai-inventory-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .ai-inventory-content {
    text-align: center;
  }
  
  .ai-inventory-content h2 {
    font-size: 2rem;
  }
  
  .ai-inventory-content p {
    font-size: 1rem;
  }
  
  .ai-features {
    align-items: center;
  }
  
  .ai-mockup {
    max-width: 100%;
  }
}

.more-features-header {
  text-align: center;
  margin: 4rem 0 3rem;
}

.more-features-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.more-features-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}


/* Updated Professional AI Sections */
.insight-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #e9ecef;
}

.insight-header {
  background: #007bff;
  color: white;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
}

.insight-header i {
  width: 24px;
  height: 24px;
}

.insight-body {
  padding: 1.5rem;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.metric:last-of-type {
  border-bottom: none;
}

.metric-label {
  font-size: 0.9375rem;
  color: var(--text-light);
  font-weight: 500;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.metric-value.positive {
  color: #28a745;
}

.recommendation-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.recommendation-box i {
  width: 20px;
  height: 20px;
  color: #856404;
  flex-shrink: 0;
  margin-top: 2px;
}

.recommendation-box p {
  margin: 0;
  font-size: 0.875rem;
  color: #856404;
  font-weight: 500;
  line-height: 1.5;
}

/* Online Store Section */
.online-store-section {
  padding: 100px 20px;
  background: #f8f9fa;
}

.online-store-container {
  max-width: 1200px;
  margin: 0 auto;
}

.online-store-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.online-store-feature {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: transform 0.2s, box-shadow 0.2s;
}

.online-store-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon-large {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #f0f4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-large i {
  width: 28px;
  height: 28px;
  color: #667eea;
}

.online-store-feature h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: #1a1a1a;
}

.online-store-feature p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6c757d;
}

.online-store-demo {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  margin-top: 80px;
  padding: 40px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e9ecef;
}

.demo-phone {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.phone-content {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: white;
}

.phone-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-content h3 {
  font-size: 1.75rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: #1a1a1a;
}

.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.demo-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
}

.step-number {
  width: 32px;
  height: 32px;
  background: #1745a0;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 600;
  color: #1a1a1a;
}

.step-info p {
  font-size: 0.875rem;
  color: #6c757d;
}

.btn-demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #1745a0;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

.btn-demo-cta:hover {
  background: #5568d3;
}

@media (max-width: 968px) {
  .online-store-demo {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 20px;
  }
  
  .demo-phone {
    order: 2;
  }
  
  .demo-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .online-store-section {
    padding: 60px 20px;
  }
  
  .online-store-features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
  }
  
  .online-store-demo {
    margin-top: 40px;
  }
  
  .phone-frame {
    width: 240px;
    height: 480px;
  }
  
  .demo-content h3 {
    font-size: 1.5rem;
  }
}

/* Pricing Section */
.pricing {
  padding: 6rem 2rem;
  background: var(--bg-section);
}

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

/* Billing Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.toggle-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #cbd5e0;
  border-radius: 34px;
  transition: all 0.3s;
}

.toggle-slider:before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(28px);
}

.toggle-switch:hover .toggle-slider {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.save-badge {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.5rem;
  letter-spacing: 0.5px;
}

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

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

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

.pricing-card.popular {
  border-color: var(--secondary);
  transform: scale(1.05);
}

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

.pricing-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.pricing-badge.free {
  background: #d4edda;
  color: #155724;
}

.pricing-badge.popular {
  background: #cce5ff;
  color: #004085;
}

.pricing-badge.business {
  background: #fff3cd;
  color: #856404;
}

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.price {
  margin: 1.5rem 0;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.price-period {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.pricing-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text);
  font-size: 0.95rem;
}

.pricing-features li i {
  color: #28a745;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  background: var(--bg-alt);
  color: var(--text);
  border: 2px solid var(--border);
}

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

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

.btn-pricing.primary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.pricing-note i {
  color: var(--secondary);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pricing-note p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
}
