/* ============================================
   AyansStorio - Premium Mobile & Accessories Store
   Light Design System
   ============================================ */

:root {
  --primary: #0F4C75;
  --primary-dark: #0a3558;
  --primary-light: #1B98E0;
  --accent: #1B98E0;
  --accent-hover: #0d7fc4;
  --success: #2e7d32;
  --warning: #f57f17;
  --error: #c62828;
  --bg: #ffffff;
  --bg-light: #f7f9fc;
  --bg-card: #ffffff;
  --text-primary: #1a2332;
  --text-secondary: #4a5568;
  --text-muted: #8896a8;
  --border: #e8edf3;
  --border-light: #f0f4f8;
  --shadow-sm: 0 2px 8px rgba(15, 76, 117, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 76, 117, 0.10);
  --shadow-lg: 0 8px 40px rgba(15, 76, 117, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  min-width: 320px;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary);
  color: #ffffffcc;
  font-size: 0.8rem;
  padding: 8px 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ============================================
   NAVBAR
   ============================================ */
.main-navbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 2px 12px rgba(15, 76, 117, 0.06);
  z-index: 1050;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand-icon-sm {
  width: 32px;
  height: 32px;
  font-size: 0.95rem;
  border-radius: 8px;
}

.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary) !important;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  background: #f0f7ff;
}

.dropdown-menu {
  border-radius: var(--radius-md);
  border: 1px solid var(--border) !important;
  padding: 8px;
  min-width: 210px;
  box-shadow: var(--shadow-lg) !important;
}

.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.15s ease;
}

.dropdown-item:hover {
  background: #f0f7ff;
  color: var(--primary);
}

.search-wrapper {
  position: relative;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  z-index: 1;
}

.search-input {
  padding-left: 36px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  width: 220px;
  height: 40px;
  background: var(--bg-light);
  transition: all 0.2s ease;
  color: var(--text-primary);
}

.search-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(27, 152, 224, 0.15);
  border-color: var(--accent);
  background: white;
  width: 260px;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  padding: 0;
  position: relative;
}

.btn-icon:hover {
  background: #f0f7ff;
  border-color: var(--accent);
  color: var(--primary);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--error);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 76, 117, 0.35);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: white;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-light);
}

.empty-cart-icon {
  font-size: 3.5rem;
  color: var(--border);
}

.cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-light);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all 0.15s;
  padding: 0;
}

.qty-btn:hover {
  border-color: var(--primary);
  background: #f0f7ff;
}

.qty-num {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.15s;
  font-size: 1rem;
}

.cart-remove:hover {
  color: var(--error);
  background: #fff0f0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(15, 76, 117, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 76, 117, 0.4);
  color: white;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-primary-custom:active {
  transform: translateY(0);
}

.btn-outline-custom {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 76, 117, 0.25);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: linear-gradient(160deg, #f7faff 0%, #eef5ff 40%, #f0f8ff 100%);
  overflow: hidden;
  position: relative;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(15, 76, 117, 0.15);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-stats {
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.hero-bg-circle {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27, 152, 224, 0.1), rgba(15, 76, 117, 0.08));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-main-img {
  width: 100%;
  max-width: 440px;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  z-index: 2;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card i {
  font-size: 1rem;
}

.card-1 { bottom: 20%; left: -5%; animation-delay: 0s; }
.card-2 { top: 20%; right: -5%; animation-delay: 1s; }
.card-3 { bottom: 8%; right: 8%; animation-delay: 0.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
  background: white;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item i {
  font-size: 1.7rem;
  color: var(--primary);
}

.trust-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.trust-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.trust-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  background: rgba(27, 152, 224, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   CATEGORIES
   ============================================ */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
  gap: 10px;
}

.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform 0.25s ease;
}

.category-card:hover .category-icon-wrap {
  transform: scale(1.08);
}

.category-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.category-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   FILTER BUTTONS
   ============================================ */
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0f7ff;
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(15, 76, 117, 0.3);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  aspect-ratio: 1/1;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  z-index: 2;
}

.badge-sale {
  background: #fef3f2;
  color: #c62828;
  border: 1.5px solid #fecaca;
}

.badge-new {
  background: #f0fdf4;
  color: #2e7d32;
  border: 1.5px solid #bbf7d0;
}

.badge-popular {
  background: #fffbeb;
  color: #b45309;
  border: 1.5px solid #fed7aa;
}

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: white;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s ease;
  z-index: 2;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  padding: 0;
  font-size: 1rem;
}

.product-card:hover .product-wishlist {
  opacity: 1;
  transform: scale(1);
}

.product-wishlist:hover {
  color: #e53e3e;
  background: #fff0f0;
}

.product-wishlist.active {
  color: #e53e3e;
  opacity: 1;
  transform: scale(1);
}

.product-info {
  padding: 16px;
}

.product-category-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  display: block;
}

.product-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.stars-sm {
  color: #f59e0b;
  font-size: 0.82rem;
  letter-spacing: -1px;
}

.rating-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.price-group {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
}

.product-price-old {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.add-to-cart-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}

.add-to-cart-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.08);
}

/* ============================================
   PROMO SECTION
   ============================================ */
.promo-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.promo-main {
  background: linear-gradient(135deg, #0F4C75, #1565a0);
  padding: 40px 36px;
  min-height: 280px;
}

.promo-content {
  flex: 1;
  z-index: 1;
}

.promo-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
}

.promo-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.promo-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  margin-bottom: 24px;
  max-width: 280px;
  line-height: 1.6;
}

.promo-img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  margin-left: 16px;
  align-self: flex-end;
}

.promo-sm {
  padding: 28px 24px;
  min-height: 120px;
  align-items: center;
  gap: 16px;
}

.promo-blue {
  background: linear-gradient(135deg, #1a4f7a, #2176b8);
}

.promo-teal {
  background: linear-gradient(135deg, #00695c, #00897b);
}

.promo-badge-sm {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.promo-title-sm {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
}

.promo-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}

.promo-link:hover {
  color: white;
}

.promo-img-sm {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

/* ============================================
   PEOPLE / TESTIMONIALS
   ============================================ */
.people-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

.people-card-tall {
  height: 420px;
}

.people-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.people-card:hover .people-img {
  transform: scale(1.05);
}

.people-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 76, 117, 0.85) 0%, rgba(15, 76, 117, 0.1) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.people-card:hover .people-overlay {
  opacity: 1;
}

.people-quote {
  color: white;
}

.stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.people-quote p {
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 8px;
  font-style: italic;
}

.people-name {
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

.review-summary {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 20px 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}

.review-score {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stars-lg {
  color: #f59e0b;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  padding: 60px 0;
  background: linear-gradient(160deg, #f0f8ff, #e8f4ff);
}

.newsletter-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}

.newsletter-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.newsletter-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.newsletter-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  height: 52px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0 22px;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color 0.2s ease;
  background: var(--bg-light);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 152, 224, 0.12);
  background: white;
}

.newsletter-btn {
  height: 52px;
  border-radius: 50px;
  padding: 0 28px;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.9rem;
}

.newsletter-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   BRANDS
   ============================================ */
.brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.brand-item {
  padding: 12px 28px;
  background: white;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
}

.brand-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: #0d1f2d;
  color: #8896a8;
}

.footer-desc {
  font-size: 0.86rem;
  color: #6b7f91;
  line-height: 1.7;
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.86rem;
  color: #6b7f91;
  transition: color 0.2s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: #6b7f91;
}

.contact-item i {
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7f91;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}

.payment-badge {
  padding: 5px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #8896a8;
  letter-spacing: 0.04em;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   UTILS
   ============================================ */
.bg-light-custom {
  background: var(--bg-light) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .hero-main-img {
    height: 360px;
    max-width: 340px;
  }

  .hero-bg-circle {
    width: 340px;
    height: 340px;
  }

  .card-1, .card-2, .card-3 {
    display: none;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }

  .promo-main {
    min-height: 220px;
    padding: 28px 24px;
  }

  .promo-img {
    width: 130px;
    height: 160px;
  }
}

@media (max-width: 767px) {
  .hero-main-img {
    height: 280px;
    max-width: 280px;
  }

  .trust-bar {
    justify-content: center;
    gap: 16px;
  }

  .newsletter-card {
    padding: 28px 20px;
  }

  .promo-img {
    display: none;
  }

  .brands-row {
    gap: 10px;
  }

  .brand-item {
    padding: 9px 18px;
    font-size: 0.8rem;
  }

  .people-card {
    height: 260px;
  }

  .people-card-tall {
    height: 300px;
  }

  .people-overlay {
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }
}
