﻿/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CWARF DIGITAL â€” Complete Luxury CSS
   Dark Purple-Black + Gold Aesthetic
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

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

:root {
  --bg: #0d0a14;
  --bg-card: #150f1f;
  --bg-card2: #1a1230;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dim: rgba(201,168,76,0.15);
  --purple: #7b4fa6;
  --purple-glow: #9b6dca;
  --purple-dim: rgba(123,79,166,0.15);
  --text: #f5f0e8;
  --text-muted: #8a7a9a;
  --border: rgba(123,79,166,0.2);
  --border-gold: rgba(201,168,76,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* â”€â”€ GRAIN â”€â”€ */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
  animation: grain 0.4s steps(2) infinite;
}
@keyframes grain { 0%,100%{transform:translate(0,0)} 10%{transform:translate(-2%,-3%)} 20%{transform:translate(2%,1%)} 30%{transform:translate(-1%,2%)} 40%{transform:translate(3%,-1%)} 50%{transform:translate(-2%,3%)} 60%{transform:translate(1%,-2%)} 70%{transform:translate(-3%,1%)} 80%{transform:translate(2%,3%)} 90%{transform:translate(-1%,-1%)} }

/* â”€â”€ GLOW â”€â”€ */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.glow-purple { background: radial-gradient(circle, #7b4fa6, transparent 70%); }
.glow-gold { background: radial-gradient(circle, #c9a84c, transparent 70%); }

/* â”€â”€ TYPOGRAPHY â”€â”€ */
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--text-muted); }
a { color: var(--gold); text-decoration: none; }
.gold-text { color: var(--gold); font-style: italic; }
em { color: var(--gold); font-style: italic; }

/* â”€â”€ LAYOUT â”€â”€ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }

/* â”€â”€ LABEL TAG â”€â”€ */
.label-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* â”€â”€ SECTION HEAD â”€â”€ */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { margin-top: 8px; }

/* â”€â”€ BUTTONS â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0d0a14;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.35); }
.btn-ghost { background: transparent; border: 1px solid var(--border-gold); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: 8px; }

/* â”€â”€ NAV â”€â”€ */
.nav { position: sticky; top: 0; z-index: 500; background: rgba(13,10,20,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-top-bar { height: 2px; background: linear-gradient(90deg, transparent, var(--gold), var(--purple), transparent); }
.nav-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--text); }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 8px; margin-left: auto; }
.nav-links a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: 0.3s; }

/* â”€â”€ HERO â”€â”€ */
.hero { min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 100px 0 80px; }
.hero-container { position: relative; z-index: 2; }
.hero-content { max-width: 700px; }
.hero-title { margin: 16px 0 24px; }
.hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 540px; margin-bottom: 40px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat-item { display: flex; flex-direction: column; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-l { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.scroll-cue { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; animation: bounce 2s infinite; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* â”€â”€ MARQUEE â”€â”€ */
.marquee-wrap { overflow: hidden; background: rgba(201,168,76,0.05); border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); padding: 14px 0; }
.marquee-track { display: flex; gap: 0; animation: marquee 40s linear infinite; width: max-content; }
.marquee-item { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); white-space: nowrap; padding: 0 20px; letter-spacing: 1px; text-transform: uppercase; }
.marquee-sep { color: var(--gold); padding: 0 4px; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* â”€â”€ PRODUCT CARDS â”€â”€ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.4); box-shadow: 0 20px 60px rgba(123,79,166,0.25); }
.product-thumb { position: relative; height: 200px; background: linear-gradient(135deg, #1a0f2e, #0d0a14); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb-icon { font-size: 3rem; color: var(--gold); opacity: 0.4; }
.product-badge { position: absolute; top: 12px; left: 12px; background: rgba(123,79,166,0.7); color: #e8d5ff; font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.5px; backdrop-filter: blur(10px); }
.product-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-title { font-size: 1.1rem; color: var(--text); margin-bottom: 10px; }
.product-excerpt { font-size: 0.88rem; color: var(--text-muted); flex: 1; margin-bottom: 20px; line-height: 1.6; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.section-cta { text-align: center; margin-top: 48px; }

/* â”€â”€ HOW IT WORKS â”€â”€ */
.hiw-section { background: rgba(123,79,166,0.03); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.step-card { text-align: center; padding: 36px 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; transition: all 0.3s; }
.step-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #0d0a14; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; }

/* â”€â”€ BUNDLES â”€â”€ */
.bundles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 800px; margin: 0 auto; }
.bundle-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; display: flex; flex-direction: column; transition: all 0.3s; }
.bundle-hero { border-color: rgba(201,168,76,0.4); box-shadow: 0 0 40px rgba(201,168,76,0.1); }
.bundle-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.bundle-card h3 { font-size: 1.3rem; margin-bottom: 16px; }
.bundle-price { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.bundle-was { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 24px; }
.bundle-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.bundle-list li { color: var(--text-muted); font-size: 0.9rem; padding-left: 20px; position: relative; }
.bundle-list li::before { content: 'âœ¦'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 3px; }

/* â”€â”€ TESTIMONIALS â”€â”€ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: border-color 0.3s; }
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--purple-glow)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.testimonial-author strong { color: var(--text); font-size: 0.9rem; }
.testimonial-author small { color: var(--text-muted); font-size: 0.8rem; }

/* â”€â”€ BLOG â”€â”€ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-grid-full { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; transition: all 0.3s; }
.blog-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.blog-cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--purple-glow); margin-bottom: 12px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 12px; line-height: 1.4; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); flex: 1; margin-bottom: 20px; }
.read-more { color: var(--gold); font-size: 0.85rem; font-weight: 600; transition: gap 0.2s; }
.read-more:hover { color: var(--gold-light); }

/* â”€â”€ FAQ â”€â”€ */
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: rgba(201,168,76,0.25); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500; padding: 20px 24px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-icon { color: var(--gold); font-size: 1.3rem; font-weight: 300; flex-shrink: 0; transition: transform 0.3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* â”€â”€ CTA BANNER â”€â”€ */
.cta-banner { padding: 100px 0; background: linear-gradient(135deg, rgba(123,79,166,0.1), rgba(201,168,76,0.05)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; text-align: center; }
.cta-inner { position: relative; z-index: 2; }
.cta-banner h2 { margin: 16px 0 40px; }

/* â”€â”€ PAGE HERO â”€â”€ */
.page-hero { padding: 100px 0 64px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-hero h1 { margin: 12px 0 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; }

/* â”€â”€ CATEGORY FILTERS â”€â”€ */
.category-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.filter-btn { padding: 8px 18px; border-radius: 24px; border: 1px solid var(--border); color: var(--text-muted); font-size: 0.85rem; font-weight: 500; transition: all 0.2s; text-decoration: none; background: none; cursor: pointer; }
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

/* â”€â”€ PRODUCT DETAIL â”€â”€ */
.product-page { min-height: 80vh; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-detail-img { border-radius: 16px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb-lg { font-size: 6rem; color: var(--gold); opacity: 0.3; }

/* â”€â”€ BLOG POST â”€â”€ */
.post-page { padding: 80px 0; }
.post-container { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.post-content { font-size: 1rem; line-height: 1.9; color: var(--text-muted); }
.post-content h1,.post-content h2,.post-content h3 { color: var(--text); margin: 2rem 0 1rem; font-family: 'Playfair Display',serif; }
.post-content h2 { color: var(--gold); }
.post-content p { margin-bottom: 1.2rem; }
.post-content strong { color: var(--text); font-weight: 600; }
.post-content em { color: var(--gold); }
.post-content ul,.post-content ol { padding-left: 24px; margin-bottom: 1.2rem; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote { border-left: 3px solid var(--gold); padding-left: 20px; margin: 24px 0; font-style: italic; }
.post-content code { background: rgba(123,79,166,0.15); padding: 2px 6px; border-radius: 4px; font-size: 0.88em; color: var(--purple-glow); }
.post-content a { color: var(--gold); }

/* â”€â”€ ABOUT â”€â”€ */
.about-block { margin-bottom: 48px; }
.about-block p { margin-bottom: 16px; font-size: 1.02rem; line-height: 1.85; }
.about-block h2 { margin: 12px 0 24px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; text-align: center; transition: all 0.3s; }
.value-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; }
.founder-note { margin-top: 64px; background: var(--bg-card); border: 1px solid rgba(201,168,76,0.3); border-radius: 20px; padding: 48px; }
.founder-note blockquote { border: none; padding: 0; }
.founder-note blockquote p { font-size: 1.15rem; font-style: italic; color: var(--text); line-height: 1.9; margin-bottom: 24px; }
.founder-note blockquote footer { color: var(--gold); }

/* â”€â”€ CONTACT â”€â”€ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-top: 32px; }
.contact-icon { width: 44px; height: 44px; background: var(--purple-dim); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail strong { color: var(--text); display: block; margin-bottom: 4px; }
.contact-detail p { font-size: 0.9rem; margin: 0; }
.contact-detail a { color: var(--gold); }
.contact-form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--gold); font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: rgba(201,168,76,0.5); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* â”€â”€ FOOTER â”€â”€ */
.footer { background: #0a0712; border-top: 1px solid var(--border); padding: 80px 0 0; position: relative; overflow: hidden; }
.footer-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(123,79,166,0.08), transparent 70%); pointer-events: none; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; position: relative; z-index: 2; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text); display: block; margin-bottom: 16px; }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; margin-top: 48px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

/* â”€â”€ ANIMATIONS â”€â”€ */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,10,20,0.98); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  .nav { position: relative; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { min-height: 80vh; padding: 80px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .bundles-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) { .steps-grid { grid-template-columns: 1fr; } }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #150f1f; border: 1px solid rgba(123,79,166,0.3); border-radius: 12px; padding: 8px; min-width: 220px; z-index: 1000; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu li a { display: block; padding: 10px 16px; color: #8a7a9a; font-size: 0.9rem; text-decoration: none; border-radius: 8px; transition: all 0.2s; white-space: nowrap; }
.nav-dropdown-menu li a:hover { background: rgba(123,79,166,0.15); color: #c9a84c; }

/* ── PERFORMANCE FIXES ── */
h1,h2,h3,h4,h5,.nav-logo,.bundle-price,.product-price,.stat-n{font-family:'Playfair Display',Georgia,'Times New Roman',serif}
body,.btn,.faq-q,.form-group input,.form-group textarea{font-family:'DM Sans',system-ui,-apple-system,sans-serif}
.grain{will-change:transform;transform:translateZ(0)}
.product-thumb img,.product-detail-img img{display:block;width:100%;height:100%;object-fit:cover}
.hero-content{min-height:480px}
.hero-title{min-height:4.5rem;display:block}
.hero-sub{min-height:3.5rem;display:block}
.nav-logo{min-width:140px;display:inline-block}
@media(prefers-reduced-motion:reduce){.grain{animation:none}.scroll-cue{animation:none}.marquee-track{animation-play-state:paused}[data-aos]{transition:none}}
