/* ==========================================================================
   Mitra Mobile — Master Web Stylesheet
   Color Theme: Mitra Warm Orange (#F57C00) & Slate Navy (#0F172A)
   Typography: Outfit (Headings) + Inter (Body)
   ========================================================================== */

:root {
  --primary: #F57C00;
  --primary-hover: #E65100;
  --primary-dark: #D84315;
  --primary-light: #FFF7ED;
  --primary-border: #FED7AA;
  --dark: #0F172A;
  --dark-light: #1E293B;
  --dark-surface: #111827;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg-light: #F8FAFC;
  --border: #E2E8F0;
  --border-dark: rgba(255, 255, 255, 0.1);
  --white: #FFFFFF;
  --success: #059669;
  --success-bg: #ECFDF5;
  --success-border: #A7F3D0;
  --warning: #B45309;
  --warning-bg: #FFFBEB;
  --warning-border: #FDE68A;
  --danger: #DC2626;
  --danger-bg: #FEF2F2;
  --danger-border: #FECACA;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.07), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 20px -5px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 10px 25px rgba(245, 124, 0, 0.25);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

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

/* Utilities */
.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Announcement Bar */
.top-bar {
  background-color: var(--dark);
  color: #CBD5E1;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-dark);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar-links {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.top-bar-links a {
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.top-bar-links a:hover {
  color: var(--white);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

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

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

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.6px;
  display: flex;
  align-items: center;
}

.brand-name span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark-light);
  position: relative;
  padding: 4px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--dark);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.menu-toggle:hover {
  background-color: var(--bg-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(245, 124, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-dark) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--bg-light);
  color: var(--dark);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: #E2E8F0;
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
}

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

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 14px;
}

.nav-cta {
  padding: 9px 18px;
  font-size: 13.5px;
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-light);
  color: var(--primary-hover);
  border: 1px solid var(--primary-border);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 70px 0 70px;
  background: radial-gradient(circle at 80% 20%, rgba(245, 124, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(15, 23, 42, 0.03) 0%, transparent 50%),
              linear-gradient(180deg, #FFF9F2 0%, #FFFFFF 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 46px;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-text h1 .highlight-text {
  background: linear-gradient(135deg, var(--primary) 0%, #E65100 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 17.5px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.stat-item strong {
  display: block;
  font-size: 26px;
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
}

.stat-item span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Preview Glass Card */
.preview-glass-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: var(--transition);
}

.preview-glass-card:hover {
  box-shadow: 0 25px 45px -10px rgba(15, 23, 42, 0.16);
  transform: translateY(-4px);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.preview-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
}

.status-indicator {
  width: 10px;
  height: 10px;
  background-color: var(--success);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(5, 150, 105, 0.35);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

.preview-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 4px 10px;
  border-radius: 20px;
}

.tier-box {
  background-color: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 18px;
}

.tier-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  transition: var(--transition);
}

.tier-row:last-child {
  border-bottom: none;
}

.tier-row.highlight {
  background: linear-gradient(90deg, #FFF7ED 0%, #FFFFFF 100%);
  color: var(--primary-dark);
  font-weight: 700;
  border-left: 4px solid var(--primary);
}

.tier-row:hover:not(.highlight) {
  background-color: rgba(255, 255, 255, 0.7);
}

.badge-discount {
  background-color: var(--success);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 8px;
  letter-spacing: 0.3px;
}

.badge-best-offer {
  background: linear-gradient(135deg, #E65100 0%, #F57C00 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(230, 81, 0, 0.35);
  animation: pulseBadge 2.5s infinite;
}

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

.preview-footer {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Sections Base */
.section {
  padding: 85px 0;
  position: relative;
}

.bg-light {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.feature-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #FED7AA 100%);
  color: var(--primary-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  box-shadow: 0 4px 10px rgba(245, 124, 0, 0.12);
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* App Showcase Section */
.app-showcase-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF7ED 50%, #FFFFFF 100%);
  overflow: hidden;
}

.app-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}

.app-phone-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: var(--transition);
}

.app-phone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  border-color: var(--primary-border);
}

.app-phone-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: #000;
  border: 4px solid #1E293B;
  aspect-ratio: 9 / 19.5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.app-phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-phone-card h4 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 6px;
}

.app-phone-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* Brand & Categories Showcase */
.catalog-preview {
  padding-top: 20px;
}

.brand-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.brand-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.category-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.cat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cat-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.cat-info span {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* B2B Wholesale Matrix Section */
.wholesale-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.wholesale-table-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 950px;
  margin: 0 auto 40px;
}

.wholesale-table-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  color: var(--white);
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.wholesale-table-header h3 {
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wholesale-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.wholesale-table th {
  background-color: #F1F5F9;
  padding: 16px 24px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wholesale-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}

.wholesale-table tr:last-child td {
  border-bottom: none;
}

.wholesale-table tr.highlight-tier {
  background-color: var(--primary-light);
  font-weight: 700;
}

.wholesale-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 950px;
  margin: 0 auto;
}

.wholesale-perk {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.perk-icon {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.wholesale-perk h4 {
  font-size: 15.5px;
  margin-bottom: 4px;
}

.wholesale-perk p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Policy Tabs Section */
.policy-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
  color: var(--dark);
  border-color: #94A3B8;
  transform: translateY(-1px);
}

.tab-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

.policy-content-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 920px;
  margin: 0 auto;
}

.policy-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

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

.policy-pane.active {
  display: block;
}

.policy-pane h3 {
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--dark);
}

.policy-pane p {
  font-size: 15.5px;
  color: #334155;
  margin-bottom: 18px;
  line-height: 1.65;
}

.policy-pane ul {
  margin: 18px 0 28px 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.policy-pane li {
  margin-bottom: 12px;
  line-height: 1.55;
}

.policy-pane li strong {
  color: var(--dark);
}

.policy-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-hover);
  font-weight: 800;
  font-size: 15px;
  padding: 10px 0;
}

.policy-link-btn:hover {
  color: var(--primary-dark);
  gap: 14px;
}

/* Alert Boxes */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.55;
}

.alert i {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.alert-danger {
  background-color: var(--danger-bg);
  color: #991B1B;
  border: 1px solid var(--danger-border);
}

.alert-success {
  background-color: var(--success-bg);
  color: #065F46;
  border: 1px solid var(--success-border);
}

.alert-warning {
  background-color: var(--warning-bg);
  color: #92400E;
  border: 1px solid var(--warning-border);
}

/* CTA Section */
.cta-section {
  background: radial-gradient(circle at 90% 10%, rgba(245, 124, 0, 0.25) 0%, transparent 60%),
              radial-gradient(circle at 10% 90%, rgba(30, 41, 59, 0.8) 0%, transparent 50%),
              linear-gradient(135deg, var(--dark) 0%, #1E293B 100%);
  color: var(--white);
  padding: 90px 0;
}

.cta-section h2 {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.cta-section p {
  color: #94A3B8;
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

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

/* Footer */
.footer {
  background-color: #0B1120;
  color: #94A3B8;
  padding: 70px 0 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-desc {
  margin-top: 16px;
  line-height: 1.65;
  color: #94A3B8;
  max-width: 380px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #94A3B8;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 13px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.dev-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13.5px;
  color: #94A3B8;
}

.dev-credit a {
  color: var(--primary);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.dev-credit a:hover {
  text-decoration: underline;
  color: #FFA726;
}

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

/* Responsive Mobile Rules */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas, .hero-stats {
    justify-content: center;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-showcase-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wholesale-perks-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-links {
    display: none;
  }
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 16px;
    align-items: stretch;
    text-align: center;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-cta {
    display: flex;
    justify-content: center;
  }
  .hero-text h1 {
    font-size: 34px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .wholesale-table-header {
    flex-direction: column;
    text-align: center;
  }
  .wholesale-table th, .wholesale-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
  .policy-content-box {
    padding: 24px 18px;
  }
}
