/* ============================================
   YHV — Premium Modular Table Design
   Comprehensive Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300;400;500;700;900&family=Heebo:wght@100;200;300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&display=swap');

/* ================================================
   DESIGN TOKENS
   ================================================ */
:root {
  --bg-primary: #070e1a;
  --bg-secondary: #0b1524;
  --bg-tertiary: #101d30;
  --bg-card: rgba(14, 26, 46, 0.65);
  --bg-card-hover: rgba(18, 33, 58, 0.8);

  --gold-50: #fdf8ed;
  --gold-100: #f9ecc8;
  --gold-200: #f0d68a;
  --gold-300: #e6bf52;
  --gold-400: #d4a83c;
  --gold-500: #c9a84c;
  --gold-600: #a88a3a;
  --gold-700: #86702f;
  --gold-800: #6b5a26;
  --gold-900: #3d3418;

  --navy-700: #1a2d4d;
  --navy-800: #0f1d32;
  --navy-900: #0a1628;

  --green: #2ecc71;
  --green-dark: #20bd5a;
  --whatsapp: #25d366;

  --text-primary: #f5f0e6;
  --text-secondary: rgba(245, 240, 230, 0.65);
  --text-accent: var(--gold-400);

  --font-display: 'Playfair Display', serif;
  --font-heading: 'Frank Ruhl Libre', serif;
  --font-body: 'Heebo', sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slower: 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.8;
  font-weight: 300;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-300), var(--gold-200), var(--gold-400), var(--gold-600));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================
   BUTTONS (Shared)
   ================================================ */
.btn-primary {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.03em;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 60, 0.25);
}

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.btn-outline:hover {
  background: rgba(212, 168, 60, 0.1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--whatsapp);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ================================================
   ANNOUNCEMENT BAR
   ================================================ */
.announcement-bar {
  background: linear-gradient(135deg, var(--gold-800), var(--gold-700));
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  color: var(--bg-primary);
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1001;
}

.announcement-bar strong {
  font-weight: 700;
}

/* ================================================
   NAVIGATION
   ================================================ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition-base);
}

body.has-announcement #main-nav {
  top: 34px;
}

#main-nav.scrolled {
  background: rgba(7, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(212, 168, 60, 0.1);
}

body.has-announcement #main-nav.scrolled {
  top: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity var(--transition-fast);
}

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

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition-fast);
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width var(--transition-base);
}

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

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

.nav-cta {
  padding: 0.55rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--bg-primary) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
  transition: all var(--transition-fast) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 168, 60, 0.3);
  -webkit-text-fill-color: var(--bg-primary) !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold-400);
  transition: all var(--transition-fast);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 14, 26, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================================================
   PAGE HEADER (Inner Pages)
   ================================================ */
.page-header {
  padding: 9rem 0 3rem;
  text-align: center;
  background: var(--bg-secondary);
  position: relative;
}

body.has-announcement .page-header {
  padding-top: 11rem;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 168, 60, 0.2), transparent);
}

.page-header .section-label {
  margin-bottom: 0.5rem;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ================================================
   BREADCRUMBS
   ================================================ */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.breadcrumbs a {
  color: var(--gold-500);
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover { color: var(--gold-300); }

.breadcrumbs .sep {
  margin: 0 0.5rem;
  opacity: 0.4;
}

/* ================================================
   HERO SECTION
   ================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, #111f35 0%, #0a1628 50%, #060c16 100%);
}

body.has-announcement #hero {
  min-height: calc(100vh - 34px);
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 168, 60, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(7, 14, 26, 0.9) 0%, transparent 50%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.hero-logo {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  background: linear-gradient(160deg, var(--gold-700) 0%, var(--gold-400) 20%, var(--gold-200) 40%, var(--gold-100) 50%, var(--gold-200) 60%, var(--gold-400) 80%, var(--gold-700) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 6s ease-in-out infinite;
  margin-bottom: 0.5rem;
  direction: ltr;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto 2rem;
  max-width: 280px;
}

.divider-line {
  flex: 1;
  height: 1px;
}

.hero-divider .divider-line:first-child {
  background: linear-gradient(to right, transparent, var(--gold-500));
}

.hero-divider .divider-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold-500));
}

.divider-diamond {
  color: var(--gold-500);
  font-size: 0.55rem;
  opacity: 0.9;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.hero-cta:hover {
  color: var(--bg-primary);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 60, 0.15);
}

.hero-cta:hover::before { opacity: 1; }

.hero-cta-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--bg-primary);
  border-color: transparent;
  font-weight: 600;
}

.hero-cta-primary::before { display: none; }

.hero-cta-primary:hover {
  color: var(--bg-primary);
  box-shadow: 0 8px 30px rgba(212, 168, 60, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ================================================
   BENEFITS STRIP
   ================================================ */
.benefits-strip {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(212, 168, 60, 0.08);
  border-bottom: 1px solid rgba(212, 168, 60, 0.08);
  background: var(--bg-secondary);
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.benefit-icon {
  color: var(--gold-400);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 1.5;
}

/* ================================================
   SECTION COMMON
   ================================================ */
section {
  padding: 6rem 0;
  position: relative;
}

.section-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 168, 60, 0.2), transparent);
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
  direction: ltr;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  max-width: 200px;
  margin: 0 auto;
}

.header-divider .divider-line:first-child {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-500));
}

.header-divider .divider-line:last-child {
  flex: 1; height: 1px;
  background: linear-gradient(to left, transparent, var(--gold-500));
}

/* ================================================
   STORY SECTION
   ================================================ */
#story {
  background: var(--bg-secondary);
}

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

.story-text .story-lead {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold-300);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.story-text p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  line-height: 2;
}

.story-text p:last-child { margin-bottom: 0; }

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: brightness(0.85) contrast(1.05);
}

.image-frame {
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(212, 168, 60, 0.25);
  border-radius: var(--radius-md);
  pointer-events: none;
  transition: all var(--transition-slow);
}

.story-image:hover .image-frame {
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  border-color: rgba(212, 168, 60, 0.4);
}

/* ================================================
   VISION SECTION
   ================================================ */
#vision {
  background: var(--bg-primary);
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--gold-300);
  line-height: 1.9;
  margin-bottom: 2rem;
  position: relative;
  padding: 2.5rem 3rem;
  font-weight: 400;
}

.vision-quote::before,
.vision-quote::after {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(212, 168, 60, 0.15);
  position: absolute;
  line-height: 1;
}

.vision-quote::before { content: '\201D'; top: 0; right: 0; }
.vision-quote::after { content: '\201C'; bottom: -0.5rem; left: 0; }

.vision-content > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 1.2rem;
}

/* ================================================
   PRODUCT CARDS
   ================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 60, 0.08);
  transition: all var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 60, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 168, 60, 0.05);
  background: var(--bg-card-hover);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.badge-bestseller { background: var(--gold-500); color: var(--bg-primary); }
.badge-new { background: var(--green); color: white; }
.badge-limited { background: #e74c3c; color: white; }

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: brightness(0.9);
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.06);
  filter: brightness(1);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
  pointer-events: none;
}

.product-info {
  padding: 1.5rem 2rem 2rem;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold-300);
  margin-bottom: 0.5rem;
}

.product-info p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-300);
  margin-bottom: 1rem;
}

.product-price .from {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-left: 0.3rem;
}

.product-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  border: 1px solid rgba(212, 168, 60, 0.25);
  color: var(--gold-400);
  font-size: 0.88rem;
  font-weight: 400;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}

.product-card-btn:hover {
  background: rgba(212, 168, 60, 0.08);
  border-color: var(--gold-400);
}

/* ================================================
   BUNDLE BANNER
   ================================================ */
.bundle-banner {
  background: linear-gradient(135deg, rgba(212, 168, 60, 0.08), rgba(212, 168, 60, 0.03));
  border: 1px solid rgba(212, 168, 60, 0.15);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}

.bundle-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold-300);
  margin-bottom: 0.5rem;
}

.bundle-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
}

.bundle-pricing {
  text-align: center;
  flex-shrink: 0;
}

.bundle-original-price {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.bundle-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold-300);
  margin-bottom: 0.25rem;
}

.bundle-save {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 60, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: rgba(212, 168, 60, 0.18);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold-400);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--gold-400);
  font-weight: 500;
}

/* ================================================
   STATS
   ================================================ */
.stats-strip {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 0;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

/* ================================================
   FEATURES / WHY YHV
   ================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 60, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(212, 168, 60, 0.2);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 168, 60, 0.2);
  border-radius: 50%;
  color: var(--gold-400);
  font-size: 1.3rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold-300);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-800), var(--bg-tertiary));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 168, 60, 0.06), transparent 70%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   CARE CARDS
   ================================================ */
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.care-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 168, 60, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.care-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-500), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.care-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 60, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.care-card:hover::before { opacity: 1; }

.care-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(212, 168, 60, 0.25);
  border-radius: 50%;
}

.care-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 1.5;
}

.care-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-300);
  margin-bottom: 1.2rem;
}

.care-card ul { text-align: right; }

.care-card li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0.6rem;
  padding-right: 1.2rem;
  position: relative;
}

.care-card li::before {
  content: '◆';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.45rem;
  color: var(--gold-500);
  line-height: 1.8rem;
}

.care-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
  text-align: right;
}

/* ================================================
   FAQ ACCORDION
   ================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 168, 60, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: right;
  transition: color var(--transition-fast);
  direction: rtl;
}

.faq-question:hover { color: var(--gold-400); }

.faq-toggle {
  color: var(--gold-500);
  font-size: 1.4rem;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-right: 1rem;
  font-weight: 300;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
}

/* ================================================
   CONTACT FORM
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 60, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 168, 60, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 230, 0.25);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 60, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  border-color: rgba(212, 168, 60, 0.2);
  transform: translateX(-4px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-text h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold-300);
  margin-bottom: 0.15rem;
}

.contact-info-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ================================================
   FOOTER
   ================================================ */
#footer {
  background: var(--bg-primary);
  padding: 4rem 0 2.5rem;
  position: relative;
}

#footer .section-divider { top: 0; }

.footer-content {
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  direction: ltr;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-nav a:hover { color: var(--gold-400); }

.footer-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-500), transparent);
  margin: 0 auto 2rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(245, 240, 230, 0.3);
}

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity var(--transition-slower), transform var(--transition-slower);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

.header-divider .divider-line,
.hero-divider .divider-line {
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}

.visible .header-divider .divider-line,
.visible .hero-divider .divider-line,
.hero-brand.visible .divider-line {
  transform: scaleX(1);
}

/* ================================================
   PAGE LOADER
   ================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-300), var(--gold-200), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loaderPulse 1.5s ease-in-out infinite;
  direction: ltr;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ================================================
   MISC
   ================================================ */
::selection {
  background: rgba(212, 168, 60, 0.25);
  color: var(--text-primary);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(212, 168, 60, 0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212, 168, 60, 0.4); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-image { order: -1; }
  .story-image img { height: 360px; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .product-image-wrapper { height: 280px; }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bundle-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  section { padding: 4.5rem 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(7, 14, 26, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    padding: 2rem;
    transition: right var(--transition-base);
    border-left: 1px solid rgba(212, 168, 60, 0.1);
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }

  .products-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .benefits-strip {
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .benefit-item { font-size: 0.8rem; }

  .stats-strip {
    gap: 2rem;
    padding: 2rem 0;
  }

  .stat-number { font-size: 2rem; }

  .container { padding: 0 1.25rem; }
  .section-header { margin-bottom: 2.5rem; }

  .vision-quote {
    padding: 1.5rem 0.5rem;
    font-size: 1.15rem;
  }
  .vision-quote::before,
  .vision-quote::after { font-size: 2.5rem; }

  .hero-logo { letter-spacing: 0.15em; }

  .whatsapp-float {
    bottom: 1.2rem;
    left: 1.2rem;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  section { padding: 3.5rem 0; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-cta { padding: 0.75rem 2rem; font-size: 0.85rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .product-info { padding: 1.5rem; }
  .care-card { padding: 2rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .benefits-strip { flex-direction: column; align-items: center; gap: 1rem; }
}
