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

/* ===========================
   CSS VARIABLES — WARM EARTH TONE THEME
   =========================== */
:root {
  --cream: #FAF7F2;
  --cream-dark: #F0EBE0;
  --warm-white: #FFFDF8;
  --brown: #4A3728;
  --brown-mid: #6B4E3D;
  --brown-light: #8B6B5A;
  --forest: #2C5F2E;
  --forest-dark: #1E4620;
  --forest-light: #4A8B4B;
  --forest-pale: #E8F2E6;
  --terracotta: #C4703B;
  --terracotta-dark: #A85C2E;
  --terracotta-light: #F5E6DB;
  --sand: #D4C4A8;
  --sand-light: #EDE6D6;
  --charcoal: #2D2420;
  --text: #3D3028;
  --text-soft: #6B5D52;
  --muted: #9E8A7D;
  --border: #E0D5C5;

  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --shadow-xs: 0 1px 4px rgba(74,55,40,0.06);
  --shadow-sm: 0 3px 12px rgba(74,55,40,0.09);
  --shadow-md: 0 8px 30px rgba(74,55,40,0.11);
  --shadow-lg: 0 20px 60px rgba(74,55,40,0.14);

  --container: 1180px;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--forest); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--forest-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

/* ===========================
   PRELOADER — 3 Second Loader
   =========================== */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(135deg, var(--brown) 0%, var(--forest-dark) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-text {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.preloader-bar-wrap {
  width: 200px; height: 2px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden;
}
.preloader-bar-fill {
  height: 100%; width: 0%; background: var(--terracotta);
  border-radius: 2px; transition: width 3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   DISCLOSURE BAR
   =========================== */
.disclosure-bar {
  background: var(--brown);
  color: rgba(255,255,255,0.8);
  text-align: center; padding: 8px 16px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em;
}

/* ===========================
   HEADER — ELEGANT NAVIGATION
   =========================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs); transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-main-bar { padding: 10px 0; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 28px; width: auto; display: block; }
.logo-text {
  font-family: var(--font-serif); font-size: 1.6rem;
  color: var(--brown); letter-spacing: -0.01em; line-height: 1;
}
.logo-text span { color: var(--forest); }

.nav-list { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav-link {
  font-size: 0.86rem; font-weight: 500; color: var(--text-soft);
  text-decoration: none; padding: 4px 0; position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1.5px; background: var(--terracotta);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--brown); }
.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(--brown); 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: rgba(44,36,32,0.97); z-index: 990;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-link {
  font-family: var(--font-serif); font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: var(--cream); text-decoration: none; transition: color 0.3s ease;
}
.mobile-nav-link:hover { color: var(--terracotta); }

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  padding-top: clamp(120px, 14vw, 155px);
  padding-bottom: clamp(60px, 8vw, 100px);
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; bottom: -30%; right: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,95,46,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest-pale); border: 1px solid rgba(44,95,46,0.2);
  color: var(--forest-dark); padding: 5px 14px;
  border-radius: var(--radius-full); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-heading {
  font-family: var(--font-serif); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400; line-height: 1.15; color: var(--brown);
  margin-bottom: 18px; letter-spacing: -0.01em;
}
.hero-heading em { font-style: italic; color: var(--forest); }
.hero-sub {
  font-size: clamp(0.92rem, 1.4vw, 1.02rem); color: var(--text-soft);
  margin-bottom: 26px; max-width: 440px; line-height: 1.72;
}
.trust-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.trust-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--warm-white); border: 1px solid var(--border);
  padding: 5px 13px; border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 600; color: var(--text);
}
.trust-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--forest); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terracotta); color: var(--warm-white);
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius-sm);
  text-decoration: none; border: 2px solid var(--terracotta);
  transition: var(--transition); cursor: pointer; letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--terracotta-dark); border-color: var(--terracotta-dark);
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(196,112,59,0.3);
  color: var(--warm-white);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--brown);
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  padding: 13px 26px; border-radius: var(--radius-sm);
  text-decoration: none; border: 2px solid var(--sand);
  transition: var(--transition); cursor: pointer;
}
.btn-secondary:hover { border-color: var(--terracotta); color: var(--terracotta); transform: translateY(-2px); }
.hero-legal { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.02em; }

.hero-image-wrap { position: relative; }
.hero-image-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand-light);
}
.hero-image-frame img { width: 100%; height: clamp(300px, 48vw, 500px); object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--forest); color: white;
  padding: 10px 18px; border-radius: var(--radius-md);
  font-size: 0.8rem; font-weight: 700;
  box-shadow: 0 4px 15px rgba(44,95,46,0.35);
}

/* ===========================
   STATS STRIP
   =========================== */
.stats-strip { background: var(--forest-dark); padding: clamp(36px, 5vw, 56px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { padding: 20px 16px; 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-serif); font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--terracotta); line-height: 1; margin-bottom: 8px; display: block;
}
.stat-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}

/* ===========================
   SECTION STYLES
   =========================== */
.section-space { padding: clamp(60px, 8vw, 100px) 0; }
.section-space-sm { padding: clamp(40px, 5vw, 60px) 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--terracotta); margin-bottom: 12px;
}
.section-label::before { content: ''; display: block; width: 18px; height: 1.5px; background: var(--terracotta); }
.section-heading {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--brown); line-height: 1.2; margin-bottom: 12px;
}
.section-heading-line { width: 36px; height: 2px; background: var(--sand); border-radius: 2px; margin: 12px 0 22px; }
.section-heading-line.centered { margin: 12px auto 22px; }
.section-text { font-size: 0.97rem; color: var(--text-soft); line-height: 1.78; margin-bottom: 16px; }
.disclaimer-box {
  background: var(--terracotta-light); border-left: 3px solid var(--terracotta);
  padding: 13px 17px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem; color: var(--text-soft); line-height: 1.6; margin-top: 22px;
}

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

/* ===========================
   SPLIT SECTION
   =========================== */
.split-section { background: var(--cream-dark); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--sand-light); }
.split-image img { width: 100%; height: clamp(260px, 40vw, 440px); object-fit: cover; }
.spec-list { margin-top: 22px; display: flex; flex-direction: column; }
.spec-item {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--border);
}
.spec-item:last-child { border-bottom: none; }
.spec-label { font-size: 0.85rem; font-weight: 500; color: var(--text-soft); }
.spec-value { font-size: 0.85rem; font-weight: 700; color: var(--forest); }

/* ===========================
   FEATURES
   =========================== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.feature-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 26px 22px;
  box-shadow: var(--shadow-xs); transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.feature-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--forest-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; font-size: 1.3rem;
}
.feature-title { font-size: 1rem; font-weight: 700; color: var(--brown); margin-bottom: 8px; }
.feature-text { font-size: 0.86rem; color: var(--text-soft); line-height: 1.65; }

/* ===========================
   PROCESS
   =========================== */
.process-section { background: var(--cream); }
.process-intro { text-align: center; margin-bottom: 36px; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.process-step {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 26px 22px; text-align: center;
  transition: var(--transition); position: relative;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.process-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--forest); color: white; font-size: 0.9rem; font-weight: 700;
  margin-bottom: 14px;
}
.process-step-title { font-size: 0.98rem; font-weight: 700; color: var(--brown); margin-bottom: 8px; }
.process-step-text { font-size: 0.86rem; color: var(--text-soft); line-height: 1.65; }
.process-image-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); max-width: 680px; margin: 0 auto; }
.process-image-wrap img { width: 100%; height: clamp(200px, 28vw, 340px); object-fit: cover; }

/* ===========================
   TARGET SECTION
   =========================== */
.target-section { background: var(--cream-dark); }
.target-intro { text-align: center; margin-bottom: 36px; }
.target-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.target-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 26px;
  box-shadow: var(--shadow-xs); transition: var(--transition);
}
.target-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.target-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.target-title { font-size: 1rem; font-weight: 700; color: var(--brown); margin-bottom: 8px; }
.target-text { font-size: 0.86rem; color: var(--text-soft); line-height: 1.65; }

/* ===========================
   SPECS TABLE
   =========================== */
.specs-section { background: var(--cream); }
.specs-intro { margin-bottom: 28px; }
.specs-table-wrap {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-xs);
  max-width: 800px; margin: 0 auto 22px;
}
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th {
  text-align: left; padding: 13px 18px;
  background: var(--cream-dark); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-soft); border-bottom: 1px solid var(--border);
}
.specs-table td { padding: 13px 18px; font-size: 0.88rem; color: var(--text); border-bottom: 1px solid var(--border); }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:nth-child(even) td { background: rgba(240,235,224,0.5); }
.specs-table td:last-child { text-align: right; font-weight: 700; color: var(--forest); }
.repr-example {
  background: var(--forest-pale); border: 1px solid rgba(44,95,46,0.2);
  border-radius: var(--radius-md); padding: 16px 20px;
  font-size: 0.84rem; color: var(--text-soft); line-height: 1.65; max-width: 800px; margin: 0 auto;
}
.repr-example strong { color: var(--forest-dark); }

/* ===========================
   PROS & CONS
   =========================== */
.pros-cons-section { background: var(--cream-dark); }
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.pros-box, .cons-box {
  background: var(--warm-white); border-radius: var(--radius-md);
  padding: 26px; box-shadow: var(--shadow-xs); border: 1px solid var(--border);
}
.pros-cons-title { font-size: 1.05rem; font-weight: 700; color: var(--brown); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pros-cons-list { display: flex; flex-direction: column; gap: 10px; }
.pros-cons-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.87rem; color: var(--text-soft); line-height: 1.55; }
.pros-icon { color: var(--forest); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cons-icon { color: var(--terracotta); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ===========================
   FAQ
   =========================== */
.faq-section { background: var(--cream); }
.faq-intro { text-align: center; margin-bottom: 36px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(196,112,59,0.3); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 17px 22px; cursor: pointer; font-size: 0.95rem; font-weight: 600;
  color: var(--brown); background: none; border: none; width: 100%; text-align: left;
  font-family: var(--font-sans); transition: color 0.3s ease;
}
.faq-question:hover { color: var(--terracotta); }
.faq-question.active { color: var(--terracotta); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition); font-size: 1rem; font-weight: 400; color: var(--terracotta);
}
.faq-question.active .faq-icon { background: var(--terracotta); border-color: var(--terracotta); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 0.9rem; color: var(--text-soft); line-height: 1.72; }

/* ===========================
   CTA
   =========================== */
.cta-section { position: relative; background: var(--brown); padding: clamp(70px, 9vw, 110px) 0; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,95,46,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,112,59,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-heading {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream); line-height: 1.15; margin-bottom: 14px;
}
.cta-heading em { font-style: italic; color: var(--terracotta); }
.cta-text { font-size: 0.98rem; color: rgba(250,247,242,0.65); line-height: 1.7; margin-bottom: 30px; }
.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--terracotta); color: var(--warm-white);
  font-family: var(--font-sans); font-size: 1rem; font-weight: 700;
  padding: 17px 36px; border-radius: var(--radius-sm);
  text-decoration: none; border: 2px solid var(--terracotta);
  transition: var(--transition); letter-spacing: 0.01em;
}
.btn-primary-lg:hover {
  background: var(--terracotta-dark); border-color: var(--terracotta-dark);
  transform: translateY(-3px); box-shadow: 0 10px 30px rgba(196,112,59,0.35);
  color: var(--warm-white);
}
.cta-legal { margin-top: 16px; font-size: 0.72rem; color: rgba(250,247,242,0.3); }

/* ===========================
   TRANSPARENCY
   =========================== */
.transparency-section { background: var(--cream-dark); border-top: 1px solid var(--border); }
.transparency-inner { max-width: 720px; }
.transparency-heading { font-size: 0.82rem; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.transparency-text { font-size: 0.87rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 10px; }
.transparency-link { font-weight: 600; color: var(--forest-dark); }

/* ===========================
   FOOTER
   =========================== */
.site-footer { background: var(--charcoal); padding: clamp(32px, 5vw, 52px) 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer-logo .logo-text { color: rgba(250,247,242,0.8); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px 22px; }
.footer-link { font-size: 0.78rem; color: rgba(250,247,242,0.4); text-decoration: none; transition: color 0.3s ease; letter-spacing: 0.03em; }
.footer-link:hover { color: var(--terracotta); }
.footer-copy { font-size: 0.72rem; color: rgba(250,247,242,0.25); letter-spacing: 0.04em; }

/* ===========================
   COOKIE BANNER
   =========================== */
.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 ease; opacity: 0;
}
.cookie-banner.visible { bottom: 0; opacity: 1; pointer-events: auto; }
.cookie-banner.hidden { bottom: -150%; opacity: 0; }
.cookie-content {
  background: var(--warm-white); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); max-width: 920px; 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: 5px; }
.cookie-badge {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; background: var(--forest-pale);
  color: var(--forest-dark); border: 1px solid rgba(44,95,46,0.2);
  padding: 2px 8px; border-radius: var(--radius-xs);
}
.cookie-title { font-size: 1.08rem; font-weight: 700; color: var(--brown); }
.cookie-desc { font-size: 0.84rem; line-height: 1.55; color: var(--text-soft); }
.cookie-link { color: var(--forest); }
.cookie-link:hover { color: var(--forest-dark); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--forest); color: white; border: none;
  font-family: var(--font-sans); font-size: 0.86rem; font-weight: 700;
  padding: 10px 20px; border-radius: var(--radius-sm); cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--forest-dark); }
.btn-cookie-reject {
  background: transparent; color: var(--text-soft); border: 1px solid var(--border);
  font-family: var(--font-sans); font-size: 0.86rem; font-weight: 600;
  padding: 10px 18px; border-radius: var(--radius-sm); cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-reject:hover { border-color: var(--terracotta); color: var(--terracotta); }

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.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; }

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-header {
  background: var(--warm-white); border-bottom: 1px solid var(--border);
  padding: 14px 0; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-xs);
}
.legal-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-back-link {
  font-size: 0.82rem; font-weight: 600; color: var(--text-soft);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.3s ease;
}
.legal-back-link:hover { color: var(--terracotta); }
.legal-page { background: var(--cream); min-height: 100vh; }
.legal-content { max-width: 820px; margin: 0 auto; padding: clamp(32px, 5vw, 60px) clamp(20px, 5vw, 60px); }
.legal-date { font-size: 0.78rem; color: var(--muted); margin-bottom: 26px; padding-bottom: 12px; border-bottom: 1px solid var(--border); letter-spacing: 0.03em; }
.legal-content h1 { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--brown); margin-bottom: 8px; }
.legal-content h2 { font-size: 1.08rem; font-weight: 700; color: var(--brown); margin-top: 26px; margin-bottom: 10px; }
.legal-content h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-top: 14px; margin-bottom: 6px; }
.legal-content p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }
.legal-content ul li { font-size: 0.9rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 4px; }
.legal-content a { color: var(--forest); }
.legal-footer { background: var(--charcoal); padding: 22px 0; text-align: center; }
.legal-footer-text { font-size: 0.72rem; color: rgba(250,247,242,0.3); }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 28px; margin-top: 22px; }
.contact-info-card { background: var(--cream-dark); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
.contact-form-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-xs); }
.contact-info-card h2, .contact-form-card h2 { font-size: 0.98rem; font-weight: 700; color: var(--brown); margin-bottom: 10px; margin-top: 18px; }
.contact-info-card h2:first-child, .contact-form-card h2:first-child { margin-top: 0; }
.contact-info-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 10px; }
.contact-link { color: var(--forest); font-weight: 600; }
.form-group { margin-bottom: 15px; }
.form-label { display: block; font-size: 0.84rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.form-input, .form-textarea {
  width: 100%; padding: 11px 13px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-sans);
  font-size: 0.9rem; color: var(--text); background: var(--warm-white);
  transition: var(--transition);
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,112,59,0.12);
}
.form-checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.form-checkbox { margin-top: 3px; accent-color: var(--forest); width: 15px; height: 15px; cursor: pointer; }
.form-checkbox-label { font-size: 0.82rem; color: var(--text-soft); line-height: 1.5; }
.contact-submit-btn { width: 100%; justify-content: center; border: none; cursor: pointer; }
.contact-feedback {
  margin-top: 14px; padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 0.87rem; font-weight: 600;
  background: rgba(44,95,46,0.1); color: var(--forest-dark);
  border: 1px solid rgba(44,95,46,0.25); display: none;
}
.contact-feedback.visible { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .features-grid, .target-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 36px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-list { display: none; }
  .mobile-nav { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { order: -1; }
  .hero-image-frame img { height: 240px; }
  .split-grid { grid-template-columns: 1fr; }
  .features-grid, .target-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-heading { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none !important; }
  .spec-item { flex-direction: column; gap: 3px; }
  .spec-value { text-align: left; }
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-reject { flex: 1; text-align: center; }
}
