/* ============================================
   MYFIRSTPRINT.COM — COMPLETE STYLESHEET
   Dark Luxury Theme | Mobile First
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --bg:        #080810;
  --bg-card:   rgba(255,255,255,0.03);
  --bg-card2:  rgba(255,255,255,0.06);
  --gold:      #C9A84C;
  --gold-lt:   #E8C97A;
  --purple:    #7C6AF7;
  --pink:      #E85D75;
  --green:     #4CAF74;
  --red:       #E85757;
  --text:      #F0EDE8;
  --text-2:    rgba(240,237,232,0.6);
  --text-3:    rgba(240,237,232,0.35);
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.14);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

/* ── Utility ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation: fadeUp 0.7s 0.1s ease both; }
.fade-up-2 { animation: fadeUp 0.7s 0.2s ease both; }
.fade-up-3 { animation: fadeUp 0.7s 0.3s ease both; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,16,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--text-2); font-size: 13px; display: block; font-family: var(--font-body); letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--gold);
  color: #080810;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  border: none;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }
.nav-mobile-toggle {
  display: none;
  background: none; border: none;
  color: var(--text); font-size: 22px;
  padding: 4px;
}
.nav-mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(8,8,16,0.98);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column; gap: 20px; z-index: 99;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { font-size: 16px; color: var(--text-2); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.hero-orb-1 {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,106,247,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  padding: 6px 14px; border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
}
.hero-tag::before { content: '✦'; font-size: 9px; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}
.hero-subtitle {
  font-size: 17px; color: var(--text-2);
  line-height: 1.7; margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: #080810;
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm);
  border: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-2); transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  margin-top: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-3);
}
.trust-item .icon { color: var(--green); font-size: 14px; }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 420px; }
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px; margin-bottom: 12px;
  animation: float 4s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 0.5s; }
.hero-card:nth-child(3) { animation-delay: 1s; }
.hero-card-label { font-size: 11px; color: var(--text-3); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.hero-card-value { font-family: var(--font-head); font-size: 24px; color: var(--gold); }
.hero-card-sub { font-size: 13px; color: var(--text-2); margin-top: 4px; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 32px; color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-2); margin-top: 4px; }

/* ============================================
   SECTION COMMON
   ============================================ */
.section { padding: 80px 24px; }
.section-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400; line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--text-2);
  max-width: 560px; line-height: 1.7;
}
.section-header { margin-bottom: 48px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}
.how-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all 0.25s;
}
.how-step:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.how-number {
  font-family: var(--font-head);
  font-size: 48px; color: rgba(201,168,76,0.15);
  line-height: 1; margin-bottom: 16px;
}
.how-icon { font-size: 28px; margin-bottom: 12px; }
.how-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.how-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.product-thumb {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-thumb-eloquent {
  background: linear-gradient(135deg, #12121F 0%, #1a1a30 100%);
}
.product-thumb-hire {
  background: linear-gradient(135deg, #0F1A12 0%, #1a2a1a 100%);
}
.product-thumb-icon { font-size: 64px; }
.product-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: #080810;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: 1px; text-transform: uppercase;
}
.product-badge.new { background: var(--green); }
.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-category {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 400;
  margin-bottom: 10px;
}
.product-desc {
  font-size: 14px; color: var(--text-2);
  line-height: 1.6; margin-bottom: 20px; flex: 1;
}
.product-what {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-sm);
  padding: 14px; margin-bottom: 20px;
}
.product-what-title { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.product-what-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-2);
  margin-bottom: 6px;
}
.product-what-item::before { content: '✓'; color: var(--green); font-size: 12px; flex-shrink: 0; }
.product-pricing {
  display: flex; gap: 12px; margin-bottom: 16px;
  flex-wrap: wrap;
}
.price-option {
  flex: 1; min-width: 120px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px; text-align: center;
  transition: all 0.2s; cursor: pointer;
}
.price-option:hover, .price-option.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.price-option-label { font-size: 11px; color: var(--text-3); margin-bottom: 4px; }
.price-option-amount { font-family: var(--font-head); font-size: 20px; color: var(--gold); }
.price-option-strike {
  font-size: 12px; color: var(--text-3);
  text-decoration: line-through; margin-bottom: 2px;
}
.product-actions { display: flex; gap: 10px; }
.btn-demo {
  flex: 1; background: transparent;
  border: 1px solid var(--border-2);
  color: var(--text); font-size: 14px; font-weight: 500;
  padding: 12px; border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.btn-demo:hover { border-color: var(--purple); color: var(--purple); }
.btn-buy {
  flex: 2; background: var(--gold);
  border: none; color: #080810;
  font-size: 14px; font-weight: 700;
  padding: 12px; border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.btn-buy:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ============================================
   DEMO MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #0E0E1A;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 720px;
  max-height: 90vh; overflow-y: auto;
  padding: 32px;
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg-card2); border: 1px solid var(--border);
  color: var(--text); font-size: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.modal-close:hover { background: var(--red); border-color: var(--red); }
.modal-tag { font-size: 11px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.modal-title { font-family: var(--font-head); font-size: 28px; margin-bottom: 16px; }
.modal-video {
  background: #000;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; overflow: hidden;
  border: 1px solid var(--border);
}
.modal-video-placeholder {
  text-align: center; padding: 40px;
}
.modal-video-placeholder .play-icon {
  font-size: 64px; color: var(--gold); margin-bottom: 16px;
  display: block;
}
.modal-video-placeholder p { font-size: 14px; color: var(--text-2); }
.modal-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.modal-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.modal-feature-icon { font-size: 20px; margin-bottom: 8px; }
.modal-feature-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.modal-feature-desc { font-size: 12px; color: var(--text-2); }
.modal-cta { display: flex; gap: 12px; }

/* ============================================
   SERVICE FORM
   ============================================ */
.service-section {
  background: linear-gradient(135deg, rgba(124,106,247,0.05) 0%, rgba(201,168,76,0.03) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 48px;
}
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; color: var(--text-2); margin-bottom: 8px; font-weight: 500; }
.form-label span { color: var(--red); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: #0E0E1A; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-checklist { margin-bottom: 20px; }
.form-check-title { font-size: 13px; color: var(--text-2); margin-bottom: 10px; font-weight: 500; }
.form-check-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; cursor: pointer; }
.form-check-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.form-check-item span { font-size: 14px; color: var(--text-2); }
.form-submit {
  width: 100%; background: var(--gold);
  border: none; color: #080810;
  font-size: 16px; font-weight: 700;
  padding: 16px; border-radius: var(--radius-sm);
  transition: all 0.2s; margin-top: 8px;
}
.form-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--text-3); text-align: center; margin-top: 12px; }
.service-info h3 { font-family: var(--font-head); font-size: 28px; margin-bottom: 16px; }
.service-info p { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.service-include-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.service-include-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.service-include-text strong { display: block; font-size: 14px; margin-bottom: 2px; }
.service-include-text span { font-size: 13px; color: var(--text-2); }
.service-price {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px; margin-top: 24px; text-align: center;
}
.service-price-intro { font-size: 12px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.service-price-amount {
  font-family: var(--font-head);
  font-size: 42px; color: var(--gold); line-height: 1.1;
}
.service-price-strike {
  font-size: 16px; color: var(--text-3);
  text-decoration: line-through; margin-left: 8px;
}
.service-price-note { font-size: 12px; color: var(--text-3); margin-top: 4px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #080810;
}
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--text-3); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; background: none; border: none;
  color: var(--text); font-family: var(--font-body);
  font-size: 16px; font-weight: 500;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; text-align: left; cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-answer {
  font-size: 15px; color: var(--text-2);
  line-height: 1.7; padding-bottom: 20px;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee-box {
  background: linear-gradient(135deg, rgba(76,175,116,0.08) 0%, rgba(201,168,76,0.05) 100%);
  border: 1px solid rgba(76,175,116,0.3);
  border-radius: var(--radius-lg);
  padding: 48px; text-align: center;
}
.guarantee-icon { font-size: 64px; margin-bottom: 20px; }
.guarantee-title { font-family: var(--font-head); font-size: 32px; color: var(--green); margin-bottom: 16px; }
.guarantee-text { font-size: 16px; color: var(--text-2); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand-name { font-family: var(--font-head); font-size: 24px; color: var(--gold); margin-bottom: 12px; }
.footer-brand-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 14px;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-size: 12px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-2); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-text { font-size: 13px; color: var(--text-3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text-2); }

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.2s; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page { padding: 120px 24px 80px; max-width: 760px; margin: 0 auto; }
.legal-title { font-family: var(--font-head); font-size: 36px; margin-bottom: 8px; }
.legal-date { font-size: 13px; color: var(--text-3); margin-bottom: 40px; }
.legal-section { margin-bottom: 32px; }
.legal-section h2 { font-size: 18px; font-weight: 600; color: var(--gold); margin-bottom: 12px; }
.legal-section h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; margin-top: 16px; }
.legal-section p { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 12px; }
.legal-section ul { padding-left: 20px; margin-bottom: 12px; }
.legal-section ul li { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 4px; }
.legal-divider { height: 1px; background: var(--border); margin: 32px 0; }
.grievance-box {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius); padding: 24px;
  margin-top: 24px;
}
.grievance-box h3 { color: var(--gold); margin-bottom: 12px; }
.grievance-box p { font-size: 14px; color: var(--text-2); margin-bottom: 6px; }

/* ============================================
   SUCCESS/THANK YOU
   ============================================ */
.success-page {
  min-height: 100vh; display: flex;
  align-items: center; justify-content: center;
  padding: 24px; text-align: center;
}
.success-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px; max-width: 480px;
}
.success-icon { font-size: 64px; margin-bottom: 20px; }
.success-title { font-family: var(--font-head); font-size: 32px; color: var(--green); margin-bottom: 16px; }
.success-text { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.password-box {
  background: var(--bg-card2); border: 1px solid var(--gold);
  border-radius: var(--radius-sm); padding: 16px;
  font-family: monospace; font-size: 18px; color: var(--gold);
  letter-spacing: 3px; margin-bottom: 8px;
}

/* ============================================
   NOTIFICATION TOAST
   ============================================ */
.toast {
  position: fixed; bottom: 90px; right: 24px; z-index: 300;
  background: var(--green); color: #080810;
  font-size: 14px; font-weight: 600;
  padding: 12px 20px; border-radius: var(--radius-sm);
  transform: translateY(20px); opacity: 0;
  transition: all 0.3s; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .modal-features { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .how-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .service-section { padding: 28px 20px; }
  .modal { padding: 20px; }
  .modal-cta { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
}
