/* ===================================
   AIWA REWARDS — Main Stylesheet
   =================================== */

:root {
  --primary: #1a0a3d;
  --primary-light: #2d1a6e;
  --gold: #c9a227;
  --gold-light: #f0c84a;
  --gold-pale: #fff8e6;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --silver: #94a3b8;
  --platinum: #e2e8f0;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #0f172a;
  --text-muted: #64748b;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(201,162,39,0.3);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #ff9e2c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lg { padding: 16px 36px; font-size: 16px; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e8b824);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,0.5);
}

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

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

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}

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

.btn-white:hover {
  background: var(--gold-pale);
}

.btn-outline-tier {
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
  width: 100%;
}

.btn-outline-tier:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-200);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo { flex-shrink: 0; }

.nav-logo-img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  display: block;
  transition: var(--transition);
}

.nav-logo-img:hover {
  opacity: 0.85;
}

.logo-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-400);
  text-transform: uppercase;
}

.navbar:not(.scrolled) .logo-text { color: var(--gold-light); }
.navbar:not(.scrolled) .logo-sub { color: rgba(255,255,255,0.5); }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}

.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.8); }

.nav-links a:hover,
.nav-links a.active {
  background: var(--gold-pale);
  color: var(--primary);
}

.navbar:not(.scrolled) .nav-links a:hover,
.navbar:not(.scrolled) .nav-links a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.points-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  cursor: pointer;
}

.navbar:not(.scrolled) .points-chip {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--gold-light);
}

.points-icon { font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar:not(.scrolled) .hamburger span { background: var(--white); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, #0d061f 40%, #1a0a3d 70%, #0f1832 100%);
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: #00d4ff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ===== REWARD CARD VISUAL ===== */
.hero-visual {
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}

.reward-card {
  width: 320px;
  background: linear-gradient(135deg, #1a1040, #2d1a6e);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05) inset;
  color: var(--white);
}

.reward-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
}

.reward-card-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
}

.reward-card-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  background: rgba(201,162,39,0.15);
  padding: 4px 10px;
  border-radius: 100px;
}

.reward-card-points {
  margin-bottom: 20px;
}

.rcp-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.rcp-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
}

.reward-card-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  margin-bottom: 12px;
  overflow: hidden;
}

.reward-card-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
}

.reward-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.floating {
  animation: float 4s ease-in-out infinite;
}

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

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.fb1 {
  top: -20px;
  right: -40px;
  color: #16a34a;
  animation: float 3s ease-in-out infinite 0.5s;
}

.fb2 {
  bottom: 60px;
  left: -50px;
  color: var(--accent);
  animation: float 3.5s ease-in-out infinite 1s;
}

.fb3 {
  bottom: -20px;
  right: 10px;
  animation: float 4s ease-in-out infinite 0.2s;
}

/* ===== PARTNERS ===== */
.partners-section { background: var(--gray-50); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,162,39,0.3);
}

.partner-logo-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 0 16px;
}

/* Real logo image boxes */
.partner-logo-img-box {
  width: 100%;
  height: 120px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
  transition: var(--transition);
}

.partner-card:hover .partner-logo-img-box {
  transform: scale(1.02);
}

.partner-logo-img {
  max-width: 100%;
  max-height: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 80px;
  border-radius: 12px;
  transition: var(--transition);
}

.pl-main {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
}

.pl-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-top: 4px;
}

.aiwa-logo {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--gold-light);
}

.aiwa-logo .pl-main { font-size: 26px; }

.alameen-logo {
  background: linear-gradient(135deg, #065f46, #064e3b);
  color: #6ee7b7;
}

.alameen-logo .pl-main { font-size: 16px; letter-spacing: 0.08em; }

.gvt-logo {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: #93c5fd;
}

.gvt-logo .pl-main { font-size: 30px; }

.fathoumi-logo {
  background: linear-gradient(135deg, #7c2d12, #991b1b);
  color: #fca5a5;
}

.fathoumi-logo .pl-main { font-size: 14px; letter-spacing: 0.06em; }

.partner-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.partner-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.partner-reward-rate {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 12px;
  padding: 8px 12px;
  background: var(--gold-pale);
  border-radius: 8px;
}

.prr-icon { font-size: 16px; }

.partner-shop-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  margin-top: auto;
}

.partner-shop-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--white); }

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 8px;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 24px;
  color: var(--gold);
  padding-top: 80px;
  flex-shrink: 0;
}

/* ===== PRODUCTS ===== */
.products-section { background: var(--gray-50); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
}

.product-brand-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--white);
}

.product-points-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-body {
  padding: 20px;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.product-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.add-to-cart-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.add-to-cart-btn:hover {
  background: var(--gold);
  color: var(--primary);
}

/* ===== TIERS ===== */
.tiers-section { background: var(--white); }

.tiers-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 2px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: var(--transition);
}

.tier-card:hover {
  box-shadow: var(--shadow-lg);
}

.tier-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-silver { border-color: var(--silver); }
.tier-gold { border-color: var(--gold); box-shadow: 0 8px 40px rgba(201,162,39,0.15); }
.tier-platinum { border-color: #94a3b8; background: linear-gradient(180deg, var(--white), #f8fafc); }

.tier-icon { font-size: 40px; }

.tier-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.tier-range {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.tier-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tier-perks li {
  font-size: 14px;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.featured-tier .tier-name { color: var(--gold); }
.featured-tier .tier-perks li { color: var(--gray-800); }

/* ===== REDEEM BANNER ===== */
.redeem-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.redeem-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.redeem-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.redeem-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.redeem-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
}

.redeem-text strong { color: var(--gold-light); font-size: 20px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--gray-50); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tc-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tc-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.tc-tier {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo .logo-text { color: var(--gold); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.3); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}

.footer-links-group h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links-group a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  border-left: 4px solid var(--gold);
  animation: slideIn 0.3s ease;
  min-width: 260px;
}

.toast.success { border-color: #16a34a; }
.toast.error { border-color: #dc2626; }

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

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

.toast.removing { animation: slideOut 0.3s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 60px;
  }

  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .steps-row { gap: 0; }
  .step-arrow { display: none; }
  .steps-row { flex-direction: column; align-items: center; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .redeem-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .tiers-row { grid-template-columns: 1fr; }
}
