:root {
  --purple: #8b2d8b;
  --purple-dark: #5f1e5f;
  --purple-light: #b84eb8;
  --ink: #0c0000;
  --ink-2: #2a1a2a;
  --text: #1a1a1a;
  --muted: #6b6670;
  --bg: #ffffff;
  --bg-soft: #f7f4f7;
  --bg-dark: #0c0000;
  --line: #ececec;
  --accent: #859957;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(12,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(12,0,0,0.18);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--purple-dark); }
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; transition: all .18s ease;
  white-space: nowrap;
}
.btn-sm { padding: 8px 18px; font-size: .88rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-primary { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn-primary:hover { background: var(--purple-dark); border-color: var(--purple-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 40px; width: auto; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav > a { color: var(--ink); font-weight: 500; font-size: .95rem; }
.nav > a:hover { color: var(--purple); }
.nav .btn { color: #fff; }
.lang-switch { display: inline-flex; gap: 6px; align-items: center; padding-left: 8px; border-left: 1px solid var(--line); }
.lang-flag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; font-size: 1rem;
  filter: grayscale(70%); opacity: .55; transition: all .18s ease;
  text-decoration: none;
}
.lang-flag:hover { filter: grayscale(0); opacity: 1; transform: scale(1.1); }
.lang-flag.is-active { filter: grayscale(0); opacity: 1; box-shadow: 0 0 0 2px var(--purple); }

/* Hero */
.hero {
  position: relative;
  color: #fff;
  padding: 120px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,0,0,0.85) 0%, rgba(139,45,139,0.75) 100%);
  z-index: -1;
}
.hero-inner { max-width: 820px; }
.eyebrow {
  display: inline-block; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; background: rgba(255,255,255,.15); padding: 8px 16px; border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.lede { font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: rgba(255,255,255,0.92); max-width: 680px; }
.lede strong { color: #fff; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 32px 0 40px; }
.hero-trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 24px;
  color: rgba(255,255,255,0.85); font-size: .9rem;
}
.hero-trust li { position: relative; padding-left: 20px; }
.hero-trust li::before {
  content: "✓"; position: absolute; left: 0; color: #fff; font-weight: 700;
}

/* Sections */
section { padding: 90px 0; }
.section-title { text-align: center; }
.section-lede {
  text-align: center; font-size: 1.1rem; color: var(--muted);
  max-width: 680px; margin: 0 auto 56px;
}

/* Why */
.why { background: var(--bg-soft); }
.why-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.why-card {
  background: #fff; border-radius: var(--radius); padding: 36px 28px;
  border: 1px solid var(--line); transition: all .2s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-num {
  font-size: .85rem; font-weight: 700; color: var(--purple);
  letter-spacing: .2em; margin-bottom: 14px;
}
.why-card h3 { margin-bottom: 10px; }
.why-card p { color: var(--muted); margin: 0; }

/* Products */
.product-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.product {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: all .2s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-media {
  aspect-ratio: 16 / 10; background-size: cover; background-position: center;
  background-color: var(--purple);
}
.product-media--pattern {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.15) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.1) 0, transparent 40%);
}
.product-media--accent {
  background-color: var(--purple);
  background-image:
    linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.2) 0, transparent 50%);
}
.product-media--dark {
  background-color: var(--ink);
  background-image: linear-gradient(135deg, var(--ink) 0%, var(--purple-dark) 100%);
}
.product-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { margin-bottom: 8px; }
.product-pitch { color: var(--text); margin-bottom: 12px; font-weight: 500; }
.product-desc { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.product-facts {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 6px;
  color: var(--muted); font-size: .92rem;
}
.product-facts li { padding-left: 18px; position: relative; }
.product-facts li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--purple);
}
.product-body .btn { align-self: flex-start; margin-top: auto; }
.product--featured { border-color: var(--purple); }
.product--featured .product-body { position: relative; }

/* Testimonial */
.testimonial {
  background: linear-gradient(135deg, var(--ink) 0%, var(--purple-dark) 100%);
  color: #fff; padding: 80px 0;
}
.testimonial blockquote {
  max-width: 820px; margin: 0 auto; padding: 0 24px; text-align: center;
}
.testimonial blockquote p {
  font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500;
  line-height: 1.4; margin-bottom: 24px; font-style: italic;
}
.testimonial blockquote p::before { content: "“"; color: var(--purple-light); font-size: 1.4em; vertical-align: -0.2em; margin-right: .1em; }
.testimonial blockquote p::after { content: "”"; color: var(--purple-light); font-size: 1.4em; vertical-align: -0.2em; margin-left: .1em; }
.testimonial footer { color: rgba(255,255,255,.75); font-size: .95rem; font-style: normal; }
.testimonial footer strong { color: #fff; }

/* About */
.about-grid {
  display: grid; gap: 56px;
  grid-template-columns: 1.2fr 1fr; align-items: center;
}
.about-badges { display: flex; flex-direction: column; gap: 16px; }
.badge {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px; background: var(--bg-soft); border-radius: var(--radius);
  border: 1px solid var(--line);
}
.badge img { height: 48px; width: auto; }
.badge span { color: var(--muted); font-size: .92rem; }
.badge--text strong {
  font-size: 1.8rem; color: var(--purple); font-weight: 700; letter-spacing: -.02em;
  display: block; line-height: 1;
}
.badge--text { display: grid; grid-template-columns: auto 1fr; gap: 4px 20px; align-items: center; }
.badge--text strong { grid-row: span 2; }

/* Final CTA */
.final-cta {
  background: var(--bg-soft); text-align: center; padding: 100px 0;
}
.final-cta h2 { margin-bottom: 12px; }
.final-cta p { color: var(--muted); max-width: 540px; margin: 0 auto 32px; font-size: 1.05rem; }

/* Footer */
.site-footer { background: var(--ink); color: #fff; padding: 56px 0 32px; }
.footer-inner {
  display: grid; gap: 40px;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
}
.footer-wordmark {
  display: inline-block; color: #fff; font-weight: 500;
  font-size: 1.5rem; letter-spacing: -.02em; line-height: 1;
}
.footer-wordmark span { color: var(--purple-light); font-weight: 400; }
.footer-wordmark:hover { color: #fff; }
.footer-wordmark:hover span { color: #fff; }
.footer-tag { color: rgba(255,255,255,.65); margin-top: 14px; font-size: .92rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.85); font-size: .95rem; }
.footer-links a:hover { color: #fff; }
.footer-meta { color: rgba(255,255,255,.6); font-size: .88rem; }
.footer-meta p { margin: 0 0 6px; }

/* Mobile */
@media (max-width: 760px) {
  .nav { gap: 14px; }
  .nav a:not(.btn) { display: none; }
  .hero { padding: 80px 0 70px; }
  section { padding: 64px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-row .btn { flex: 1; }
}
