@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg:            #FBF9F5;
  --bg-soft:       #F1ECE1;
  --surface:       #FFFFFF;
  --surface-dark:  #14120F;
  --anthracite:    #1F1D1A;
  --gold:          #B8924A;
  --gold-dark:     #8F6F35;
  --gold-light:    #F4E9D3;
  --ink:           #1A1815;
  --text:          #362F27;
  --muted:         #857A6C;
  --line:          #E3DACB;
  --success:       #4C6B4F;

  --radius-sm: 3px;
  --radius-md: 10px;
  --radius-lg: 24px;

  --shadow-sm: 0 4px 16px rgba(26,24,21,.07);
  --shadow-md: 0 12px 40px rgba(26,24,21,.13);

  --container: 1200px;
  --content: 800px;
  --section-space: clamp(80px, 10vw, 140px);

  --font-heading: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html,
.page-root {
  scroll-behavior: smooth;
  font-size: 16px;
}

body,
.site-body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
.site-img {
  max-width: 100%;
  height: auto;
  display: block;
}

a,
.site-link {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover,
.site-link:hover {
  color: var(--gold-dark);
}

ul,
.site-list {
  list-style: none;
}

/* ===========================
   PRELOADER
   =========================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

.preloader-track {
  width: 240px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  transition: width 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===========================
   CONTAINER & LAYOUT
   =========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.content-narrow {
  max-width: var(--content);
  margin: 0 auto;
}

.section-space {
  padding: var(--section-space) 0;
}

.section-space-sm {
  padding: clamp(50px, 6vw, 80px) 0;
}

/* ===========================
   DISCLOSURE BAR
   =========================== */
.disclosure-bar {
  background: rgba(184, 146, 74, 0.12);
  border-bottom: 1px solid rgba(184, 146, 74, 0.22);
  text-align: center;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #D4C9B8;
  width: 100%;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(20, 18, 15, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 146, 74, 0.22);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-main-bar {
  padding: 12px 0;
  transition: padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(20, 18, 15, 0.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.site-header.scrolled .header-main-bar {
  padding: 8px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-monogram {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  line-height: 1;
}

.site-header.header-over-hero .logo-wordmark {
  color: #FFFFFF;
}

.site-header .nav-link,
.site-header.header-over-hero .nav-link {
  color: #EDE8DF;
}

.site-header .nav-link:hover,
.site-header.header-over-hero .nav-link:hover {
  color: var(--gold);
}

.site-header.header-over-hero .hamburger span,
.site-header .hamburger span {
  background: #EDE8DF;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: 300;
  color: var(--surface);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--gold);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
  padding-top: 135px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,24,21,0.95) 0%, rgba(26,24,21,0.7) 50%, rgba(26,24,21,0.3) 100%);
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.55;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 0;
  min-height: calc(100vh - 90px);
  padding: clamp(60px, 8vw, 100px) 0;
  width: 100%;
}

.hero-content {
  padding-right: clamp(30px, 5vw, 80px);
}

.hero-micro-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-micro-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--surface);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hero-heading em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.65;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(184,146,74,0.15);
  border: 1px solid rgba(184,146,74,0.3);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
}

.trust-pill-icon {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,146,74,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--surface);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: var(--surface);
  transform: translateY(-2px);
}

.hero-legal-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-img-clip {
  width: 100%;
  height: clamp(380px, 60vh, 600px);
  position: relative;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-img-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--ink);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  z-index: 3;
  line-height: 1.4;
}

/* ===========================
   STATS STRIP
   =========================== */
.stats-strip {
  background: var(--surface-dark);
  padding: clamp(50px, 6vw, 80px) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 30px 20px;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  line-height: 1.4;
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-heading-line {
  display: block;
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 28px;
}

.section-heading-line.centered {
  margin: 18px auto 28px;
}

.section-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ===========================
   OVERVIEW SECTION
   =========================== */
.overview-section {
  background: var(--bg);
}

.disclaimer-box {
  background: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 32px;
}

/* ===========================
   SPLIT SECTION (Image + Text)
   =========================== */
.split-section {
  background: var(--bg-soft);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.split-grid.reverse {
  direction: rtl;
}

.split-grid.reverse > * {
  direction: ltr;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-image img {
  width: 100%;
  height: clamp(280px, 45vw, 480px);
  object-fit: cover;
}

.spec-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.spec-item:first-child {
  border-top: 1px solid var(--line);
}

.spec-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  min-width: 140px;
}

.spec-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-align: right;
}

/* ===========================
   PROCESS SECTION
   =========================== */
.process-section {
  background: var(--bg);
}

.process-intro {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}

.process-intro .section-heading {
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(40px, 5vw, 60px);
  counter-reset: steps;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}

.process-step-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.process-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.process-image-wrap img {
  width: 100%;
  height: clamp(260px, 35vw, 420px);
  object-fit: cover;
}

/* ===========================
   TARGET AUDIENCE
   =========================== */
.target-section {
  background: var(--bg-soft);
}

.target-intro {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.target-intro .section-heading {
  text-align: center;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.target-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}

.target-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.target-card-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}

.target-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}

.target-card-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===========================
   SPECS TABLE
   =========================== */
.specs-section {
  background: var(--bg);
}

.specs-intro {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.specs-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

.specs-table th {
  background: var(--anthracite);
  color: var(--surface);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 24px;
  text-align: left;
}

.specs-table th:last-child {
  text-align: right;
}

.specs-table td {
  padding: 16px 24px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.specs-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--ink);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:hover td {
  background: var(--bg-soft);
}

.repr-example {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.7;
}

.repr-example strong {
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===========================
   PROS & CONS
   =========================== */
.pros-cons-section {
  background: var(--bg-soft);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pros-box,
.cons-box {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--line);
}

.pros-box {
  border-top: 3px solid var(--success);
}

.cons-box {
  border-top: 3px solid var(--gold);
}

.pros-cons-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pros-cons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pros-cons-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
}

.pros-icon {
  color: var(--success);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.cons-icon {
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
  background: var(--bg);
}

.faq-intro {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.faq-intro .section-heading {
  text-align: center;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.3s ease;
}

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

.faq-question.active {
  color: var(--gold-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 300;
}

.faq-question.active .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  position: relative;
  background: var(--surface-dark);
  overflow: hidden;
  padding: clamp(80px, 10vw, 130px) 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: var(--surface);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.cta-heading em {
  font-style: italic;
  color: var(--gold);
}

.cta-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: var(--transition);
}

.btn-primary-lg:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--surface);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(184,146,74,0.4);
}

.cta-legal {
  margin-top: 20px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
}

/* ===========================
   TRANSPARENCY SECTION
   =========================== */
.transparency-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.transparency-inner {
  max-width: 720px;
}

.transparency-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.transparency-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.transparency-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--anthracite);
  padding: clamp(40px, 5vw, 60px) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo .logo-wordmark {
  color: rgba(255,255,255,0.8);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.03em;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-header {
  background: black;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-back-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.legal-back-link:hover {
  color: var(--gold-dark);
}

.legal-page {
  background: var(--bg);
  min-height: 100vh;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 60px);
}

.legal-date {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.03em;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content ul li {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  background: var(--anthracite);
  padding: 28px 0;
  text-align: center;
}

.legal-footer-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ===========================
   RESPONSIVE — TABLET (768px)
   =========================== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto clamp(40px, 5vw, 60px);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-list {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: clamp(40px, 6vw, 60px);
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-image-wrap {
    justify-content: center;
  }

  .hero-img-clip {
    border-radius: var(--radius-lg);
    height: 280px;
    width: 100%;
  }

  .hero-img-badge {
    bottom: 12px;
    left: 12px;
  }

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

  .split-grid.reverse {
    direction: ltr;
  }

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

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-item::after {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

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

  .trust-pills {
    gap: 8px;
  }

  .spec-item {
    flex-direction: column;
    gap: 4px;
  }

  .spec-value {
    text-align: left;
  }
}

/* ===========================
   BRAND LOGO IMAGE
   =========================== */
.brand-logo-img {
  height: 36px;
  width: auto;
  max-width: 170px;
  display: block;
  object-fit: contain;
}

/* ===========================
   COOKIE CONSENT POPUP
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: -150%;
  left: 0;
  right: 0;
  z-index: 99998;
  display: flex;
  justify-content: center;
  padding: 16px 20px;
  pointer-events: none;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}

.cookie-banner.visible {
  bottom: 0;
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.hidden {
  bottom: -150%;
  opacity: 0;
  pointer-events: none;
}

.cookie-content {
  background: var(--surface-dark);
  color: #EDE8DF;
  border: 1px solid rgba(184, 146, 74, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  max-width: 960px;
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text-wrap {
  flex: 1;
}

.cookie-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.cookie-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(184, 146, 74, 0.2);
  color: var(--gold);
  border: 1px solid rgba(184, 146, 74, 0.4);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.cookie-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
}

.cookie-desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #B5ACA0;
}

.cookie-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-link:hover {
  color: #FFFFFF;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--gold);
  color: #FFFFFF;
  border: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background: var(--gold-dark);
}

.btn-cookie-reject {
  background: transparent;
  color: #B5ACA0;
  border: 1px solid rgba(181, 172, 160, 0.35);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .btn-cookie-accept,
  .btn-cookie-reject {
    flex: 1;
    text-align: center;
  }
}

/* ===========================
   CONTACT PAGE & FORM STYLES
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.contact-link {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-link:hover {
  color: var(--gold-dark);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.15);
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}

.form-checkbox {
  margin-top: 4px;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-submit-btn {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.contact-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(76, 107, 79, 0.12);
  color: var(--success);
  border: 1px solid rgba(76, 107, 79, 0.35);
  display: none;
}

.contact-feedback.visible {
  display: block;
  animation: fadeIn 0.4s ease;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 20px;
  }
}

