/* ==========================================================================
   CANVA BRIGHT GRADIENT DESIGN SYSTEM
   Version: Alpha
   Theme: Vibrant Canva Purple-to-Cyan Gradient + Soft Approachable CTAs
   Spec: Canva Sans / Poppins, #8B3DFF, #22C3D6, #FFFFFF, #0F1015
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

:root {
  /* Colors from design.md */
  --color-primary: #8B3DFF;
  --color-primary-70: #A86BFF;
  --color-primary-40: #D4B3FF;
  --color-secondary: #FFFFFF;
  --color-tertiary: #0F1015;
  --color-neutral: #F3F4F6;
  --color-surface: #FFFFFF;
  --color-on-surface: #000000;
  --color-muted: #E5E7EB;
  --color-accent: #22C3D6;
  --color-error: #D92D20;
  --color-success: #10B981;
  --color-success-bg: #ECFDF5;
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1EBE5D;
  --color-star: #F59E0B;

  /* Canva Gradient */
  --canva-hero-gradient: linear-gradient(110deg, #6B21A8 0%, #8B3DFF 30%, #3B82F6 65%, #22C3D6 100%);
  --canva-accent-gradient: linear-gradient(135deg, #8B3DFF 0%, #22C3D6 100%);

  /* Typography */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii from design.md */
  --rounded-none: 0px;
  --rounded-sm: 4px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 24px;
  --rounded-full: 9999px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 48px;
  --space-gutter: 32px;
  --space-section: 80px;

  /* Shadows */
  --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hero-btn: 0 6px 20px rgba(0, 0, 0, 0.18);
  --shadow-floating: 0 12px 36px rgba(0, 0, 0, 0.15);

  --transition-smooth: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--color-surface);
  color: var(--color-on-surface);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-family: var(--font-family);
  background-color: var(--color-surface);
  color: var(--color-on-surface);
  line-height: 1.6;
}

/* ==========================================================================
   Hero Container with Vibrant Canva Gradient Backdrop
   ========================================================================== */

.hero-wrapper {
  background: var(--canva-hero-gradient);
  color: var(--color-secondary);
  position: relative;
  padding-bottom: 72px;
  overflow: hidden;
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to top, var(--color-surface), transparent);
  pointer-events: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-gutter);
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Header (Spacious Navigation on Gradient)
   ========================================================================== */

.header {
  height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.brand:hover .brand-logo-img {
  transform: scale(1.05);
  opacity: 0.92;
}

.site-footer .brand-logo-img {
  filter: brightness(0);
}

.currency-selector {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--rounded-full);
  padding: 3px;
  backdrop-filter: blur(8px);
}

.currency-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--rounded-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.currency-btn:hover {
  color: #FFFFFF;
}

.currency-btn.active {
  background: #FFFFFF;
  color: var(--color-tertiary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--color-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s ease;
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-indicator-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--rounded-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22C3D6;
  border-radius: 50%;
  box-shadow: 0 0 8px #22C3D6;
}

.btn-order-list {
  background: var(--color-secondary);
  color: var(--color-tertiary);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  padding: 0 18px;
  height: 42px;
  border-radius: var(--rounded-lg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.btn-order-list:hover {
  background: var(--color-neutral);
  transform: translateY(-1px);
}

.cart-badge {
  background: var(--color-primary);
  color: #FFFFFF;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Hero Section (Headline Display 56px, Clean CTAs & Visual Showcase)
   ========================================================================== */

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 24px;
}

.hero-left {
  max-width: 580px;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--rounded-full);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-display-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-secondary);
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}

.hero-pricing-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 32px;
}

.hero-price-amount {
  font-size: 56px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hero-price-amount span:first-child {
  font-size: 28px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.hero-price-amount span:last-child {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.price-metadata-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-price-strikethrough {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.hero-save-badge {
  background: rgba(34, 195, 214, 0.15);
  color: #22C3D6;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(34, 195, 214, 0.3);
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Button Primary (from design.md): White surface, dark text, 48px height, 12px rounded */
.button-primary {
  background-color: var(--color-surface);
  color: var(--color-tertiary);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--rounded-lg);
  padding: 0 28px;
  height: 48px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-hero-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.button-primary:hover {
  background-color: var(--color-neutral);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.button-secondary-outline {
  background: transparent;
  color: var(--color-secondary);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--rounded-lg);
  padding: 0 22px;
  height: 48px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.button-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
}

.hero-trust-bullets {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  flex-wrap: wrap;
}

.hero-trust-bullets span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-bullets i {
  color: #22C3D6;
}

/* ==========================================================================
   Hero Visual Showcase (Canva Pro Interface Preview & Magic Toolbar)
   ========================================================================== */



.hero-showcase-panel {
  position: relative;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
  border-radius: var(--rounded-xl);
  margin: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 16px;
  box-shadow: var(--shadow-floating);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.hero-showcase-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.showcase-img-wrapper {
  border-radius: var(--rounded-lg);
  overflow: hidden;
  margin-bottom: 14px;
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.showcase-template-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-showcase-panel:hover .showcase-template-img {
  transform: scale(1.02);
}

/* Magic Tools Floating Bar (Exact match to Canva Pro landing screenshot) */
.magic-tools-bar {
  background: var(--color-surface);
  border-radius: var(--rounded-lg);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: var(--shadow-card);
}

.magic-tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--rounded-md);
  transition: var(--transition-smooth);
}

.magic-tool-item:hover {
  background: var(--color-neutral);
  transform: translateY(-2px);
}

.magic-tool-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--rounded-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.icon-bg-remover { background: #E0F2FE; color: #0284C7; }
.icon-content { background: #FEE2E2; color: #DC2626; }
.icon-resize { background: #EDE9FE; color: #7C3AED; }
.icon-eraser { background: #FEF3C7; color: #D97706; }
.icon-grab { background: #CCFBF1; color: #0D9488; }

.magic-tool-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-tertiary);
  line-height: 1.2;
}

/* ==========================================================================
   Section Styling (Clean White Surfaces, 80px Spacing)
   ========================================================================== */

.section-wrapper {
  padding: var(--space-section) 0;
}

.section-header-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-chip {
  display: inline-block;
  background: rgba(139, 61, 255, 0.1);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--rounded-full);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-tertiary);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: #4B5563;
  font-weight: 400;
}

/* ==========================================================================
   Feature Cards (Card component from design.md: White, 1px border, 8px radius)
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-gutter);
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-muted);
  border-radius: var(--rounded-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--rounded-md);
  background: rgba(139, 61, 255, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-tertiary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.6;
}

/* ==========================================================================
   Pricing Plan Showcase Card
   ========================================================================== */

.pricing-showcase-center {
  max-width: 480px;
  margin: 0 auto;
}

.plan-card {
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  border-radius: var(--rounded-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
}

.plan-top-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--rounded-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-tertiary);
  margin-top: 10px;
}

.plan-duration-badge {
  display: inline-block;
  background: rgba(139, 61, 255, 0.1);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--rounded-full);
  margin: 12px 0 20px;
}

.plan-price-display {
  margin-bottom: 24px;
}

.plan-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-tertiary);
  line-height: 1;
}

.plan-amount span {
  font-size: 18px;
  font-weight: 600;
  color: #6B7280;
  margin-right: 6px;
}

.plan-features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.plan-features-list li {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features-list li i {
  color: var(--color-success);
  font-size: 16px;
}

.btn-plan-cta {
  background: var(--color-primary);
  color: #FFFFFF;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--rounded-lg);
  width: 100%;
  height: 52px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(139, 61, 255, 0.35);
  transition: var(--transition-smooth);
}

.btn-plan-cta:hover {
  background: var(--color-primary-70);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 61, 255, 0.45);
}

/* ==========================================================================
   4-Step How It Works
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-gutter);
}

.step-item {
  background: var(--color-surface);
  border: 1px solid var(--color-muted);
  border-radius: var(--rounded-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.step-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-subtle);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-tertiary);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 13px;
  color: #4B5563;
  line-height: 1.5;
}

/* ==========================================================================
   Customer Reviews
   ========================================================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-gutter);
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-muted);
  border-radius: var(--rounded-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cust-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-tertiary);
}

.cust-city {
  font-size: 12px;
  color: #6B7280;
}

.stars-row {
  color: var(--color-star);
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  gap: 2px;
}

.review-plan-badge {
  display: inline-block;
  background: rgba(139, 61, 255, 0.08);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--rounded-full);
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  font-style: italic;
}

.verified-buyer {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-success);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Trust & Guarantee
   ========================================================================== */

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

.trust-item {
  background: var(--color-surface);
  border: 1px solid var(--color-muted);
  border-radius: var(--rounded-lg);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--rounded-md);
  background: var(--color-success-bg);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.trust-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-tertiary);
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 12px;
  color: #6B7280;
}

.warranty-banner {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1.5px solid #FDE68A;
  border-radius: var(--rounded-xl);
  padding: 32px 24px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.warranty-banner i {
  font-size: 32px;
  color: #D97706;
  margin-bottom: 8px;
}

.warranty-banner h3 {
  font-size: 20px;
  font-weight: 700;
  color: #92400E;
}

.warranty-banner p {
  font-size: 13px;
  font-weight: 600;
  color: #B45309;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #F9FAFB;
  border-top: 1px solid var(--color-muted);
  padding: 56px 0 32px;
  margin-top: var(--space-section);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand-col {
  max-width: 420px;
}

.footer-brand-col p {
  font-size: 14px;
  color: #6B7280;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links-group {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-tertiary);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li button {
  font-size: 14px;
  color: #4B5563;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
  padding: 0;
}

.footer-col ul li a:hover,
.footer-col ul li button:hover {
  color: var(--color-primary);
}

.footer-disclaimer {
  background: #FFFFFF;
  border: 1px solid var(--color-muted);
  border-radius: var(--rounded-md);
  padding: 16px 20px;
  font-size: 12px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #9CA3AF;
  padding-top: 24px;
  border-top: 1px solid var(--color-muted);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */

.whatsapp-float-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background-color: var(--color-whatsapp);
  color: white;
  padding: 14px 22px;
  border-radius: var(--rounded-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float-widget:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float-widget i {
  font-size: 20px;
}

/* ==========================================================================
   Slide-Over Drawer
   ========================================================================== */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 16, 21, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  justify-content: flex-end;
}

.order-drawer {
  background-color: var(--color-surface);
  width: 100%;
  max-width: 440px;
  height: 100%;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

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

.drawer-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-tertiary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-drawer-btn {
  background: var(--color-neutral);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: #4B5563;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.close-drawer-btn:hover {
  background: var(--color-muted);
  color: var(--color-tertiary);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
}

.order-item-card {
  background: #F9FAFB;
  border: 1px solid var(--color-muted);
  border-radius: var(--rounded-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.drawer-item-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.item-meta {
  flex: 1;
}

.item-meta strong {
  display: block;
  font-size: 15px;
  color: var(--color-tertiary);
}

.item-meta span {
  font-size: 13px;
  color: #6B7280;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-muted);
  border-radius: var(--rounded-full);
  padding: 4px 8px;
}

.qty-btn {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-tertiary);
  cursor: pointer;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subtotal-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--color-muted);
  margin-bottom: 16px;
  font-size: 16px;
}

.subtotal-box strong {
  font-size: 20px;
  color: var(--color-tertiary);
}

.cust-input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--color-muted);
  border-radius: var(--rounded-md);
  padding: 0 16px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--color-tertiary);
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s ease;
}

.cust-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 61, 255, 0.12);
}

.btn-whatsapp-checkout {
  background-color: var(--color-whatsapp);
  color: white;
  border: none;
  height: 48px;
  border-radius: var(--rounded-lg);
  width: 100%;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
}

.btn-whatsapp-checkout:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   Modals
   ========================================================================== */

.policy-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 16, 21, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.policy-modal-card {
  background-color: var(--color-surface);
  border-radius: var(--rounded-xl);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-floating);
  overflow: hidden;
}

.policy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-muted);
}

.policy-modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-tertiary);
}

.policy-modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
}

.policy-modal-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-tertiary);
  margin: 16px 0 6px;
}

.policy-modal-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.policy-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--color-muted);
  display: flex;
  justify-content: flex-end;
}

.btn-close-modal {
  background: var(--color-neutral);
  border: 1px solid var(--color-muted);
  color: var(--color-tertiary);
  padding: 8px 20px;
  border-radius: var(--rounded-full);
  font-family: var(--font-family);
  font-weight: 600;
  cursor: pointer;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-display-title {
    font-size: 42px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    height: auto;
    min-height: 70px;
    padding: 12px 0;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
  }
  .brand-logo-img {
    height: 28px;
  }
  .nav-links {
    display: none;
  }
  .live-indicator-pill {
    display: none;
  }
  .header-right {
    width: auto;
    justify-content: flex-end;
    gap: 10px;
  }
  .currency-selector {
    flex: 1;
    justify-content: space-between;
  }
  .currency-btn {
    font-size: 11px;
    padding: 6px 10px;
    white-space: nowrap;
    text-align: center;
    width: 50%;
  }
  .btn-order-list {
    padding: 0 12px;
    font-size: 12px;
    height: 34px;
    white-space: nowrap;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  .hero-left {
    align-items: flex-start;
  }
  .hero-pill-badge {
    margin: 0 0 16px 0;
  }
  .hero-display-title {
    font-size: 34px;
    line-height: 1.1;
    text-align: left;
  }
  .hero-subtitle {
    font-size: 15px;
    text-align: left;
  }
  
  .hero-trust-bullets {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
  }
  
  .hero-price-amount {
    font-size: 48px;
  }
  .hero-pricing-box {
    margin: 0 0 24px 0;
  }
  
  .hero-actions-row {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0;
    align-items: flex-start;
    gap: 14px;
  }
  .button-primary, .button-secondary-outline {
    width: fit-content;
    min-width: 280px;
    justify-content: center;
    height: 52px;
  }
  
  .hero-right {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  

  
  .hero-showcase-panel {
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
  
  .magic-tools-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  .footer-links-group {
    flex-direction: column;
    gap: 30px;
  }
}
