/* ═══════════════════════════════════════════════
   JEWELLOSOFT — style.css
   Theme: Ultra-Premium Luxury Jewellery Brand
═══════════════════════════════════════════════ */

/* ── Google Fonts (fallback declaration) ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Poppins:wght@300;400;500;600&display=swap');

/* ─────────────────────────────────────────────
   CSS VARIABLES — THEMES
───────────────────────────────────────────── */
:root {
  --gold:          #C9A84C;
  --gold-light:    #e4c76b;
  --gold-pale:     #f2e0a0;
  --gold-dim:      rgba(201,168,76,0.15);
  --gold-border:   rgba(201,168,76,0.35);
  --transition:    0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* — THEME: Dark (Black + Gold) — */
body.theme-dark {
  --bg-primary:    #0a0a0a;
  --bg-alt:        #111111;
  --bg-card:       #141414;
  --bg-elevated:   #1a1a1a;
  --text-primary:  #f0ece0;
  --text-secondary:#b0a898;
  --text-muted:    #6b6560;
  --border-color:  rgba(201,168,76,0.2);
  --nav-bg:        rgba(10,10,10,0.92);
  --shadow-card:   0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold:   0 0 24px rgba(201,168,76,0.2);
  --mockup-bg:     #1a1a1a;
  --mockup-screen: #0f0f0f;
  --mockup-sidebar:#141414;
  --swatch-ring:   #0a0a0a;
}

/* — THEME: Deep Green + Gold — */
body.theme-green {
  --bg-primary:    #061a0e;
  --bg-alt:        #081f10;
  --bg-card:       #0c2614;
  --bg-elevated:   #102c18;
  --text-primary:  #e8f0ea;
  --text-secondary:#9eb8a4;
  --text-muted:    #5a7a62;
  --border-color:  rgba(201,168,76,0.25);
  --nav-bg:        rgba(6,26,14,0.92);
  --shadow-card:   0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold:   0 0 24px rgba(201,168,76,0.2);
  --mockup-bg:     #102c18;
  --mockup-screen: #061a0e;
  --mockup-sidebar:#0c2614;
  --swatch-ring:   #061a0e;
}

/* — THEME: Cream + Gold — */
body.theme-light {
  --bg-primary:    #f8f4eb;
  --bg-alt:        #f0ead8;
  --bg-card:       #ffffff;
  --bg-elevated:   #fdf9f0;
  --text-primary:  #1a1208;
  --text-secondary:#5a4e35;
  --text-muted:    #9a8e75;
  --border-color:  rgba(201,168,76,0.3);
  --nav-bg:        rgba(248,244,235,0.95);
  --shadow-card:   0 8px 40px rgba(100,80,30,0.12);
  --shadow-gold:   0 0 24px rgba(201,168,76,0.25);
  --mockup-bg:     #ede5d0;
  --mockup-screen: #f8f4eb;
  --mockup-sidebar:#e8e0cc;
  --swatch-ring:   #f8f4eb;
}

/* ─────────────────────────────────────────────
   BASE RESET & GLOBALS
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  transition: background-color var(--transition), color var(--transition);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; }

.text-gold { color: var(--gold) !important; }

/* ── Utility ── */
.mb-section { margin-bottom: 4rem; }
.mb-feature  { margin-bottom: 6rem; }

/* ─────────────────────────────────────────────
   THEME SWITCHER
───────────────────────────────────────────── */
.theme-switcher {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 2rem;
  padding: 1rem 0.6rem;
  box-shadow: var(--shadow-card);
  transition: background var(--transition), border var(--transition);
}

.theme-label {
  font-size: 0.6rem;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin-bottom: 0.25rem;
}

.theme-swatches {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  background: transparent;
  padding: 0;
}

.swatch-inner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: block;
}

.swatch-dark  .swatch-inner { background: radial-gradient(circle at 40% 40%, #2a2a2a, #0a0a0a); }
.swatch-green .swatch-inner { background: radial-gradient(circle at 40% 40%, #1a4a28, #061a0e); }
.swatch-light .swatch-inner { background: radial-gradient(circle at 40% 40%, #fdf6e4, #e8dfc0); }

.swatch:hover {
  transform: scale(1.15);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(201,168,76,0.4);
}

.swatch.active {
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(201,168,76,0.5), 0 0 4px rgba(201,168,76,0.3);
}

.swatch-tip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.swatch:hover .swatch-tip { opacity: 1; }

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  background: transparent;
  padding: 1.4rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary) !important;
}

.brand-gem { font-size: 1.2rem; }
.brand-name { letter-spacing: 0.02em; }

.nav-link {
  color: var(--text-secondary) !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.8rem !important;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left 0.3s, right 0.3s;
}

.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after { left: 0.8rem; right: 0.8rem; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a8883a);
  color: #0a0a0a !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2.2rem;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
  filter: brightness(1.08);
}

.btn-gold:active { transform: translateY(0); }

.btn-gold-outline {
  background: transparent;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: #0a0a0a !important;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary) !important;
  border: 1.5px solid var(--border-color);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  transition: border-color 0.3s, color 0.3s;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

/* ─────────────────────────────────────────────
   GOLD DIVIDERS
───────────────────────────────────────────── */
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
  width: 100%;
}

.gold-line-center {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ─────────────────────────────────────────────
   SECTION TYPOGRAPHY
───────────────────────────────────────────── */
.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.animate-fadein        { animation: fadeInUp    0.7s ease both; }
.animate-fadein-delay  { animation: fadeInUp    0.7s 0.25s ease both; }
.animate-slide-left    { animation: fadeInLeft  0.7s ease both; }
.animate-slide-right   { animation: fadeInRight 0.7s ease both; }

/* ─────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────── */
.hero-section {
  position: relative;
  background: var(--bg-primary);
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
  padding: 0;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-checks li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }

.hero-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ── Desktop Mockup ── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.desktop-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

.mockup-screen {
  width: 100%;
  background: var(--mockup-bg);
  border-radius: 12px 12px 0 0;
  border: 1.5px solid var(--border-color);
  overflow: hidden;
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mockup-sidebar);
  padding: 0.5rem 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

.dot { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dot-red    { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #27c93f; }

.titlebar-text {
  margin-left: 0.75rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
}

.mockup-body {
  display: flex;
  min-height: 340px;
}

.mockup-sidebar {
  width: 52px;
  background: var(--mockup-sidebar);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 0;
  gap: 0;
  flex-shrink: 0;
}

.sidebar-logo {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  width: 100%;
}

.sidebar-nav li {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.55rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border-radius: 4px;
}

.sidebar-nav li.active,
.sidebar-nav li:hover { color: var(--gold); background: var(--gold-dim); }

/* Invoice panel */
.mockup-content {
  flex: 1;
  padding: 0.9rem;
  background: var(--mockup-screen);
  overflow: hidden;
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.6rem;
}

.inv-shop {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
}

.inv-sub { font-size: 0.6rem; color: var(--text-muted); }

.inv-badge {
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--gold-border);
  letter-spacing: 0.05em;
}

.inv-customer {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.6rem;
}

.inv-label { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.inv-val   { font-size: 0.72rem; color: var(--text-primary); font-weight: 600; }

.inv-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.6rem;
}

.inv-table th {
  font-size: 0.58rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.3rem;
  border-bottom: 1px solid var(--border-color);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.inv-table td {
  font-size: 0.63rem;
  color: var(--text-secondary);
  padding: 0.3rem 0.3rem;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}

.inv-table tr:last-child td { border-bottom: none; }

.inv-footer { border-top: 1px solid var(--border-color); padding-top: 0.5rem; }

.inv-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.63rem;
  color: var(--text-secondary);
  padding: 0.15rem 0;
}

.inv-total {
  color: var(--gold) !important;
  font-weight: 700;
  font-size: 0.75rem !important;
  margin-top: 0.2rem;
}

.inv-btn {
  background: linear-gradient(135deg, var(--gold), #a8883a);
  color: #0a0a0a;
  font-size: 0.6rem;
  font-weight: 700;
  border: none;
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  margin-top: 0.5rem;
  cursor: pointer;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.04em;
}

/* Mockup stand */
.mockup-stand {
  width: 120px;
  height: 14px;
  background: var(--mockup-sidebar);
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 4px 4px;
}

.mockup-base {
  width: 220px;
  height: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 50px;
}

/* ─────────────────────────────────────────────
   MARQUEE STRIP
───────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold-dim);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
  gap: 0;
}

.marquee-track span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0.5rem;
}

.marquee-track i { color: var(--gold); opacity: 0.6; }

/* ─────────────────────────────────────────────
   SECTIONS — SHARED
───────────────────────────────────────────── */
section { padding: 6rem 0; }
.alt-bg { background: var(--bg-alt); }

/* ─────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────── */
.about-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.aig-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-card);
}

.aig-card i {
  font-size: 1.75rem;
  color: var(--gold);
}

.aig-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.highlight-line {
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1.25rem;
  background: var(--gold-dim);
  border-radius: 0 8px 8px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  margin-top: 1.75rem;
}

/* ─────────────────────────────────────────────
   FEATURES SECTION
───────────────────────────────────────────── */
.section-features { background: var(--bg-primary); }

/* Feature Visuals */
.feature-visual {
  height: 280px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-visual:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.fv-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.85;
}

.fv-lines {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 60%;
}

.fvl {
  height: 4px;
  background: var(--bg-elevated);
  border-radius: 4px;
}

.fvl.long  { width: 100%; }
.fvl.mid   { width: 70%; }
.fvl.short { width: 45%; }
.fvl.gold  { background: linear-gradient(to right, var(--gold), var(--gold-light)); }

.fv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 80%;
}

.chip {
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.7rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
}

.gold-chip {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold);
  font-weight: 600;
}

.fv-offline-badge {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.2;
}

.fv-pdf-preview {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 55%;
  position: relative;
}

.pdf-line {
  height: 5px;
  background: var(--bg-elevated);
  border-radius: 4px;
}

.pdf-line.bold  { height: 7px; background: var(--border-color); }
.pdf-line.short { width: 50%; }
.pdf-line.long  { width: 100%; }
.pdf-line.mid   { width: 75%; }

.pdf-badge {
  position: absolute;
  bottom: -24px;
  right: -8px;
  background: linear-gradient(135deg, var(--gold), #a8883a);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
}

/* Feature Text */
.feature-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -0.5rem;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.feature-list li i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

/* Mini Feature Cards */
.mini-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.mini-feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.mfc-icon {
  font-size: 2.25rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.mini-feature-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.mini-feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─────────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────────── */
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-icon i { color: var(--gold); font-size: 1.2rem; }

.why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

.why-highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  opacity: 0.9;
  padding: 2rem;
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  background: var(--gold-dim);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────── */
.section-hiw { background: var(--bg-primary); }

.hiw-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  padding: 0 0.5rem;
}

.hiw-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.hiw-connector {
  position: absolute;
  top: 42px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0.4;
}

.hiw-step:last-child .hiw-connector { display: none; }

.hiw-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 1.5px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.hiw-step:hover .hiw-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.hiw-icon i { color: var(--gold); font-size: 1.3rem; }

.hiw-step h5 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.hiw-step p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ─────────────────────────────────────────────
   PRICING SECTION
───────────────────────────────────────────── */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-card);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.pricing-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 0 1px var(--gold-border), var(--shadow-gold);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #a8883a);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.pricing-tier {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-currency { font-size: 1.4rem; color: var(--text-secondary); line-height: 1; margin-bottom: 0.3rem; font-family: 'Poppins', sans-serif; }
.price-amount   { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: var(--text-primary); line-height: 1; }
.price-period   { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; font-family: 'Poppins', sans-serif; }

.pricing-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pricing-features li i { color: var(--gold); flex-shrink: 0; }
.pricing-features li.disabled { opacity: 0.4; }
.pricing-features li.disabled i { color: var(--text-muted); }

.btn-pricing-outline {
  background: transparent;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold-border);
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.btn-pricing-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,0.2);
}

/* ─────────────────────────────────────────────
   SECURITY SECTION
───────────────────────────────────────────── */
.section-security { background: var(--bg-primary); }

.security-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: var(--shadow-card);
}

.security-shield {
  width: 180px;
  height: 180px;
  background: var(--gold-dim);
  border: 2px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(201,168,76,0.12);
}

.security-shield i { font-size: 5rem; color: var(--gold); }

.security-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.sec-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.sec-point > i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.sec-point strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.sec-point p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   FAQ SECTION
───────────────────────────────────────────── */
.faq-item {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: var(--gold-border) !important; }

.faq-btn {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) { color: var(--gold) !important; }

.faq-btn::after {
  filter: invert(70%) sepia(30%) saturate(400%) hue-rotate(5deg);
}

.faq-body {
  background: var(--bg-card) !important;
  color: var(--text-secondary) !important;
  font-size: 0.9rem !important;
  line-height: 1.8 !important;
  padding: 0 1.5rem 1.25rem !important;
}

/* ─────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────── */
.section-cta {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.cta-title em { color: var(--gold); font-style: italic; }

.cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.btn-cta-main { min-width: 280px; }

.cta-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-sub { font-size: 0.82rem; color: var(--text-muted); }

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-socials { display: flex; gap: 0.75rem; }

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.footer-bottom { padding-top: 1.5rem; }

.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

/* ─────────────────────────────────────────────
   DOWNLOAD MODAL
───────────────────────────────────────────── */
.modal-premium {
  background: var(--bg-card) !important;
  border: 1px solid var(--gold-border);
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-gold);
}

.modal-premium-header {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-color) !important;
  padding: 1.5rem 1.75rem !important;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-family: 'Poppins', sans-serif;
}

.modal-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.4rem !important;
  color: var(--text-primary) !important;
  margin: 0 !important;
}

.btn-close-modal {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1rem;
  transition: border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}

.btn-close-modal:hover { border-color: var(--gold); color: var(--gold); }

.modal-premium-body { padding: 1.75rem !important; }

.dl-version-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.dl-version-badge {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.dl-size { font-size: 0.72rem; color: var(--text-muted); }

.dl-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  margin-bottom: 0.75rem;
  border: 1.5px solid var(--border-color);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
  cursor: pointer;
  text-decoration: none !important;
  color: var(--text-primary) !important;
}

.dl-btn-primary {
  border-color: var(--gold-border);
  background: var(--gold-dim);
}

.dl-btn-primary:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
}

.dl-btn-secondary { background: var(--bg-elevated); }

.dl-btn-secondary:hover {
  border-color: var(--gold-border);
  transform: translateX(4px);
}

.dl-btn-disabled {
  background: var(--bg-elevated);
  opacity: 0.45;
  cursor: not-allowed;
}

.dl-btn-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dl-btn-primary .dl-btn-icon { background: rgba(201,168,76,0.1); border-color: var(--gold-border); }
.dl-btn-icon i { font-size: 1.2rem; color: var(--gold); }

.dl-btn-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dl-btn-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
}

.dl-btn-sub { font-size: 0.72rem; color: var(--text-muted); }

.dl-btn-arrow { font-size: 1rem; color: var(--text-muted); }
.dl-btn-primary .dl-btn-arrow { color: var(--gold); }

.dl-coming-soon {
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-transform: uppercase;
}

.dl-mac-waitlist {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.dl-email-input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  color: var(--text-primary);
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

.dl-email-input:focus { border-color: var(--gold); }
.dl-email-input::placeholder { color: var(--text-muted); }

.dl-email-btn {
  background: linear-gradient(135deg, var(--gold), #a8883a);
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  transition: filter 0.2s, transform 0.2s;
}

.dl-email-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

.dl-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-color);
}

/* ─────────────────────────────────────────────
   FEEDBACK & BUG REPORT SECTION
───────────────────────────────────────────── */
.section-feedback {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.section-feedback::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Contact Cards */
.feedback-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feedback-contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.fcc-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.fcc-icon i { font-size: 1.3rem; color: var(--gold); }

.feedback-contact-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.feedback-contact-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.fcc-link {
  font-size: 0.85rem;
  color: var(--gold) !important;
  font-weight: 500;
  word-break: break-all;
  transition: opacity 0.2s;
}

.fcc-link:hover { opacity: 0.8; }

/* Suggestions Box */
.feedback-suggest-box {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}

.fsb-header {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fsb-header i { font-size: 1rem; }

.feedback-suggest-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feedback-suggest-box li {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 0.75rem;
  border-left: 2px solid var(--gold-border);
}

.feedback-suggest-box li strong {
  color: var(--text-primary);
}

/* Feedback Form Card */
.feedback-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.feedback-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.feedback-form { display: flex; flex-direction: column; gap: 1.25rem; }

.feedback-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feedback-field { display: flex; flex-direction: column; gap: 0.4rem; }

.feedback-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.feedback-label i { color: var(--gold); }

.feedback-input {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}

.feedback-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.feedback-input::placeholder { color: var(--text-muted); font-size: 0.82rem; }

.feedback-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A84C' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.feedback-select option {
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 0.5rem;
}

.feedback-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.feedback-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.feedback-submit-btn {
  width: 100%;
  padding: 0.9rem 2rem !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.06em;
}

.feedback-privacy-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.feedback-privacy-note i { color: var(--gold); font-size: 0.8rem; }

/* Feedback Success State */
.feedback-success {
  text-align: center;
  padding: 3rem 2rem;
}

.feedback-success-icon {
  font-size: 3.5rem;
  color: #4caf7a;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.5s ease;
}

.feedback-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feedback-success p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — COMPLETE MOBILE OVERHAUL
───────────────────────────────────────────── */

/* ── Tablet & Small Desktop (≤991px) ── */
@media (max-width: 991px) {
  /* Navbar */
  .navbar-collapse {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-top: 0.75rem;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-card);
  }

  .navbar-nav {
    gap: 0 !important;
    align-items: stretch !important;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid var(--border-color);
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 0.5rem !important;
    font-size: 0.9rem;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-item.ms-lg-3 {
    margin-left: 0 !important;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-bottom: none;
  }

  .navbar-nav .nav-item.ms-lg-3 .btn {
    width: 100%;
    text-align: center;
    padding: 0.65rem 1rem;
  }

  .navbar-toggler {
    border: 1px solid var(--gold-border) !important;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    transition: background 0.3s;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(201,168,76,0.3);
  }

  /* Hero */
  .hero-title { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-section .row { min-height: auto !important; padding-top: 2rem; padding-bottom: 2rem; }

  /* Sections */
  .section-title { font-size: 2rem; }
  .mb-feature { margin-bottom: 4rem; }

  /* How It Works */
  .hiw-steps { gap: 1rem; }
  .hiw-connector { display: none; }

  /* Security */
  .security-inner { padding: 2.5rem 1.75rem; }
  .security-shield { width: 140px; height: 140px; }
  .security-shield i { font-size: 3.5rem; }

  /* Theme */
  .theme-switcher { right: 0.75rem; }

  /* Feedback */
  .feedback-card { padding: 1.75rem; }

  /* Footer */
  .footer-brand img { width: 8% !important; }

  /* CTA */
  .cta-title { font-size: 2rem; }
  .btn-cta-main { min-width: auto; width: 100%; max-width: 360px; }
}

/* ── Mobile (≤767px) ── */
@media (max-width: 767px) {
  /* Base */
  section { padding: 3.5rem 0; }
  .mb-section { margin-bottom: 2.5rem; }
  .mb-feature { margin-bottom: 3rem; }

  /* Theme switcher */
  .theme-switcher { display: none; }

  /* Navbar */
  .brand-logo img { width: 28px !important; }
  .brand-name { font-size: 1.1rem; }

  /* Hero */
  .hero-section { padding-top: 70px; }
  .hero-section .row { min-height: auto !important; padding-top: 1.5rem; padding-bottom: 0; }
  .hero-left { text-align: center; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero-sub { 
    font-size: 0.9rem; 
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-checks {
    align-items: flex-start;
    padding-left: 0;
  }
  .hero-checks li { font-size: 0.85rem; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-actions .btn-ghost { margin-left: 0 !important; }
  .hero-note { text-align: center; font-size: 0.7rem; }

  /* Hero Mockup */
  .hero-right { padding-top: 2rem; padding-bottom: 1rem; }
  .desktop-mockup { max-width: 100%; }
  .mockup-body { min-height: 240px; }
  .mockup-sidebar { width: 42px; }
  .sidebar-logo img { width: 65% !important; }
  .sidebar-nav li { padding: 0.4rem 0; font-size: 0.8rem; }
  .mockup-content { padding: 0.6rem; }
  .inv-shop { font-size: 0.7rem; }
  .inv-table th { font-size: 0.52rem; padding: 0.2rem; }
  .inv-table td { font-size: 0.55rem; padding: 0.2rem; }
  .inv-row { font-size: 0.58rem; }
  .inv-total { font-size: 0.65rem !important; }
  .inv-btn { font-size: 0.55rem; padding: 0.25rem 0.6rem; }
  .mockup-stand { width: 80px; height: 10px; }
  .mockup-base { width: 160px; height: 8px; }

  /* Marquee */
  .marquee-track span { font-size: 0.7rem; }

  /* About */
  .about-icon-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .aig-card { padding: 1.25rem 1rem; }
  .aig-card i { font-size: 1.5rem; }
  .aig-card span { font-size: 0.75rem; }
  .highlight-line { font-size: 0.9rem; padding: 0.6rem 1rem; }

  /* Features */
  .feature-visual { height: 200px; border-radius: 14px; }
  .fv-icon { font-size: 2.5rem; }
  .fv-offline-badge { font-size: 1.2rem; }
  .feature-number { font-size: 2.5rem; }
  .feature-title { font-size: 1.4rem; }
  .feature-desc { font-size: 0.88rem; }
  .feature-list li { font-size: 0.82rem; }

  /* Mini Feature Cards */
  .mini-feature-card { padding: 1.5rem 1.25rem; }
  .mfc-icon { font-size: 1.8rem; }
  .mini-feature-card h4 { font-size: 1rem; }
  .mini-feature-card p { font-size: 0.8rem; }

  /* Why Choose Us */
  .why-card { padding: 1.75rem 1.5rem; }
  .why-icon { width: 44px; height: 44px; margin-bottom: 1rem; }
  .why-icon i { font-size: 1rem; }
  .why-card h4 { font-size: 1rem; }
  .why-card p { font-size: 0.82rem; }
  .why-highlight { 
    font-size: 1.1rem; 
    padding: 1.25rem;
    margin-top: 2rem;
  }

  /* How It Works */
  .hiw-steps { 
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .hiw-step {
    min-width: auto;
    max-width: 280px;
    width: 100%;
  }
  .hiw-icon { width: 52px; height: 52px; margin-bottom: 0.75rem; }
  .hiw-icon i { font-size: 1.1rem; }
  .hiw-step h5 { font-size: 0.9rem; }
  .hiw-step p { font-size: 0.75rem; }

  /* Security */
  .security-inner { padding: 2rem 1.25rem; border-radius: 16px; }
  .security-shield { width: 120px; height: 120px; margin-bottom: 1.5rem; }
  .security-shield i { font-size: 3rem; }
  .sec-point { gap: 0.75rem; }
  .sec-point > i { font-size: 1.2rem; }
  .sec-point strong { font-size: 0.9rem; }
  .sec-point p { font-size: 0.8rem; }

  /* FAQ */
  .faq-btn { 
    font-size: 0.88rem !important; 
    padding: 1rem 1rem !important;
  }
  .faq-body { 
    font-size: 0.85rem !important;
    padding: 0 1rem 1rem !important;
  }

  /* CTA */
  .section-cta { padding: 3rem 0; }
  .cta-title { font-size: 1.6rem; }
  .cta-title br { display: none; }
  .cta-sub { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .btn-cta-main { 
    min-width: auto; 
    width: 100%; 
    font-size: 0.85rem;
    padding: 0.7rem 1.5rem;
  }
  .cta-note { font-size: 0.68rem; }

  /* Feedback */
  .feedback-row { grid-template-columns: 1fr; }
  .feedback-card { padding: 1.5rem; }
  .feedback-contact-card { padding: 1.25rem; }
  .feedback-contact-card h5 { font-size: 0.95rem; }
  .fcc-icon { width: 40px; height: 40px; margin-bottom: 0.75rem; }
  .fcc-icon i { font-size: 1.1rem; }
  .feedback-suggest-box { padding: 1rem 1.25rem; }
  .feedback-suggest-box li { font-size: 0.75rem; }

  /* Footer */
  .site-footer { padding: 3rem 0 1.5rem; }
  .footer-brand { margin-bottom: 0.5rem; }
  .footer-brand img { width: 24px !important; }
  .footer-brand .brand-name { font-size: 1.1rem; }
  .footer-tagline { font-size: 0.82rem; }
  .footer-sub { font-size: 0.78rem; }
  .footer-heading { margin-bottom: 0.75rem; margin-top: 0.5rem; }
  .footer-links a { font-size: 0.8rem; }
  .footer-copy { font-size: 0.72rem; }
  .footer-bottom { padding-top: 1rem; }

  /* Download Modal */
  .modal-premium { border-radius: 16px !important; margin: 0.75rem; }
  .modal-premium-header { padding: 1.25rem 1.25rem !important; }
  .modal-title { font-size: 1.2rem !important; }
  .modal-eyebrow { font-size: 0.65rem; }
  .modal-premium-body { padding: 1.25rem !important; }
  .dl-version-info { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .dl-version-badge { font-size: 0.65rem; }
  .dl-size { font-size: 0.65rem; }
  .dl-btn { padding: 0.85rem 1rem; border-radius: 12px; gap: 0.75rem; }
  .dl-btn-icon { width: 36px; height: 36px; border-radius: 8px; }
  .dl-btn-icon i { font-size: 1rem; }
  .dl-btn-title { font-size: 0.82rem; }
  .dl-btn-sub { font-size: 0.68rem; }
  .dl-mac-waitlist { flex-direction: column; gap: 0.5rem; }
  .dl-email-input { font-size: 0.78rem; padding: 0.55rem 0.75rem; }
  .dl-email-btn { padding: 0.55rem 1rem; font-size: 0.78rem; }
  .dl-disclaimer { font-size: 0.68rem; }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  /* Hero */
  .hero-title { font-size: 1.75rem; letter-spacing: -0.02em; }
  .hero-sub { font-size: 0.85rem; line-height: 1.7; }
  .hero-checks li { font-size: 0.8rem; gap: 0.4rem; }
  .hero-checks li i { font-size: 0.85rem; }
  .hero-badge { font-size: 0.65rem; padding: 0.3rem 0.75rem; }

  /* Mockup */
  .mockup-body { min-height: 200px; }
  .mockup-sidebar { width: 36px; }
  .sidebar-nav li { font-size: 0.7rem; padding: 0.3rem 0; }
  .mockup-content { padding: 0.4rem; }
  .invoice-header { margin-bottom: 0.4rem; padding-bottom: 0.4rem; }
  .inv-shop { font-size: 0.6rem; }
  .inv-sub { font-size: 0.5rem; }
  .inv-badge { font-size: 0.5rem; padding: 0.15rem 0.35rem; }
  .inv-customer { margin-bottom: 0.4rem; }
  .inv-label { font-size: 0.5rem; }
  .inv-val { font-size: 0.6rem; }
  .inv-table th { font-size: 0.48rem; }
  .inv-table td { font-size: 0.5rem; }
  .inv-footer { padding-top: 0.3rem; }
  .inv-row { font-size: 0.52rem; }
  .inv-total { font-size: 0.58rem !important; }
  .inv-btn { font-size: 0.5rem; padding: 0.2rem 0.5rem; margin-top: 0.3rem; }
  .mockup-stand { width: 60px; height: 8px; }
  .mockup-base { width: 120px; height: 6px; }

  /* Sections */
  section { padding: 2.5rem 0; }
  .section-title { font-size: 1.6rem; }
  .section-eyebrow { font-size: 0.65rem; letter-spacing: 0.15em; }
  .section-body { font-size: 0.88rem; }

  /* About */
  .about-icon-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .aig-card { padding: 1rem 0.75rem; border-radius: 12px; }
  .aig-card i { font-size: 1.3rem; }
  .aig-card span { font-size: 0.7rem; }

  /* Features */
  .feature-visual { height: 170px; border-radius: 12px; }
  .feature-number { font-size: 2rem; }
  .feature-title { font-size: 1.25rem; }
  .feature-list li { font-size: 0.8rem; }

  /* Mini Cards */
  .mini-feature-card { padding: 1.25rem 1rem; border-radius: 12px; }

  /* Why */
  .why-card { padding: 1.5rem 1.25rem; border-radius: 12px; }
  .why-highlight { font-size: 0.95rem; padding: 1rem; }

  /* How It Works */
  .hiw-step { max-width: 100%; }

  /* CTA */
  .cta-title { font-size: 1.4rem; }
  .cta-sub { font-size: 0.82rem; }

  /* Feedback */
  .feedback-card { padding: 1.25rem; border-radius: 14px; }
  .feedback-submit-btn { font-size: 0.85rem !important; padding: 0.75rem 1rem !important; }
  .feedback-input { font-size: 0.82rem; padding: 0.65rem 0.85rem; }
  .feedback-label { font-size: 0.7rem; }
  .feedback-textarea { min-height: 110px; }
  .feedback-contact-card { padding: 1rem; border-radius: 12px; }
  .feedback-suggest-box { padding: 0.85rem 1rem; border-radius: 10px; }
  .feedback-suggest-box li { font-size: 0.72rem; }
  .feedback-success-icon { font-size: 2.5rem; }
  .feedback-success h4 { font-size: 1.2rem; }
  .feedback-success p { font-size: 0.82rem; }

  /* Footer */
  .site-footer { padding: 2rem 0 1rem; }
  .footer-brand .brand-name { font-size: 1rem; }
  .footer-socials a { width: 32px; height: 32px; font-size: 0.8rem; }

  /* Download Modal */
  .modal-premium { border-radius: 14px !important; margin: 0.5rem; }
  .modal-premium-header { padding: 1rem !important; }
  .modal-title { font-size: 1.05rem !important; }
  .modal-premium-body { padding: 1rem !important; }
  .dl-btn { padding: 0.75rem 0.85rem; gap: 0.6rem; }
  .dl-btn-icon { width: 32px; height: 32px; }
  .dl-btn-title { font-size: 0.78rem; }
  .dl-btn-sub { font-size: 0.62rem; }

  /* Marquee */
  .marquee-strip { padding: 0.6rem 0; }
  .marquee-track span { font-size: 0.65rem; margin: 0 0.3rem; }
  .marquee-track i { font-size: 0.65rem; }
}

/* ── Extra Small (≤360px) — Small phones ── */
@media (max-width: 360px) {
  .hero-title { font-size: 1.5rem; }
  .hero-sub { font-size: 0.8rem; }
  .section-title { font-size: 1.4rem; }
  .btn-gold { padding: 0.6rem 1.5rem; font-size: 0.82rem; }
  .btn-ghost { padding: 0.6rem 1.25rem; font-size: 0.82rem; }
  .feature-title { font-size: 1.15rem; }
  .about-icon-grid { gap: 0.5rem; }
  .aig-card { padding: 0.85rem 0.6rem; }
  .aig-card i { font-size: 1.1rem; }
  .aig-card span { font-size: 0.65rem; }
  .why-card { padding: 1.25rem 1rem; }
  .why-highlight { font-size: 0.85rem; }
  .cta-title { font-size: 1.25rem; }
  .feedback-card { padding: 1rem; }
  .feedback-input { padding: 0.6rem 0.75rem; font-size: 0.78rem; }
  .modal-premium { margin: 0.35rem; }
}