@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

/* === RESET === */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* === CUSTOM PROPERTIES === */
:root {
  --c-bg:          #FAFAF6;
  --c-bg-alt:      #F2F5EE;
  --c-bg-card:     #FFFFFF;
  --c-bg-dark:     #0D1C12;
  --c-primary:     #2D6A4F;
  --c-primary-dk:  #1B4A34;
  --c-primary-lt:  #E8F5EE;
  --c-accent:      #B8960C;
  --c-accent-lt:   #FBF5DC;
  --c-text:        #0D1C12;
  --c-text-sec:    #2C3E30;
  --c-text-muted:  #7A9080;
  --c-border:      #D4E4DA;
  --c-cta:         #2D6A4F;
  --c-cta-hov:     #1B4A34;
  --c-ok:          #2D6A4F;
  --c-star:        #B8960C;

  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  18px;
  --shadow-sm:  0 2px 8px rgba(45,106,79,0.07);
  --shadow-md:  0 4px 24px rgba(45,106,79,0.11);
  --shadow-lg:  0 8px 48px rgba(45,106,79,0.15);
  --transition: all 0.3s ease;
  --container:  1200px;
  --section-py: clamp(60px, 7vw, 100px);

  --font-heading: 'EB Garamond', serif;
  --font-body: 'Outfit', sans-serif;
}

/* === PRELOADER === */
.preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--c-bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader-circles {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}
.preloader-circle {
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 60px;
  border: 1.5px solid var(--c-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spinCW 3s linear infinite;
}
.preloader-circle--inner {
  width: 40px; height: 40px;
  animation: spinCCW 3s linear infinite;
}
@keyframes spinCW { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spinCCW { to { transform: translate(-50%, -50%) rotate(-360deg); } }
.preloader-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184,150,12,0.5);
}
.loaded .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* === BODY === */
.page-body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  font-size: clamp(15px, 1.6vw, 17px);
  overflow-x: hidden;
}

/* === DISCLOSURE BAR === */
.disclosure-bar {
  background: var(--c-bg-alt);
  color: var(--c-primary);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  padding: 9px 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1000;
}

/* === HEADER / NAVBAR === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--c-bg);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header--scrolled {
  border-bottom-color: var(--c-primary);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.header-logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--c-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.nav-link:hover {
  color: var(--c-primary);
}
.nav-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  background: var(--c-cta);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.25s;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--c-cta-hov); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1002;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  transition: var(--transition);
}
.hamburger--active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger--active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger--active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--c-text);
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}
.mobile-nav-overlay {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--c-bg);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  transition: right 0.35s ease;
  box-shadow: var(--shadow-lg);
}
.mobile-nav-overlay--open {
  right: 0;
}
.mobile-nav-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav-backdrop--visible {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--c-text);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--c-border);
  transition: color 0.25s;
}
.mobile-nav-link:hover { color: var(--c-primary); }
.mobile-nav-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  background: var(--c-cta);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  margin-top: 16px;
  transition: background 0.25s;
}
.mobile-nav-cta:hover { background: var(--c-cta-hov); }

/* === HERO SECTION === */
.hero-section {
  display: flex;
  min-height: 85vh;
}
.hero-image-col {
  width: 45%;
  position: relative;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-right: 3px solid var(--c-primary);
  box-shadow: 4px 0 24px rgba(184,150,12,0.08);
}
.hero-content-col {
  width: 55%;
  background: var(--c-bg-alt);
  display: flex;
  align-items: center;
  padding: clamp(32px, 5vw, 80px);
}
.hero-content {
  max-width: 540px;
}
.hero-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(30px, 3.8vw, 52px);
  color: var(--c-text);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--c-text-sec);
  margin-bottom: 20px;
  line-height: 1.7;
}
.hero-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--c-accent);
  margin-bottom: 18px;
}
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.trust-pill {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--c-primary);
  background: var(--c-primary-lt);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  background: var(--c-cta);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--c-cta-hov); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--c-primary);
  background: transparent;
  border: 1.5px solid var(--c-primary);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-secondary:hover { background: var(--c-primary); color: #fff; }

/* === SECTION UTILITIES === */
.section-wrap {
  padding: var(--section-py) 0;
}
.section-wrap--alt {
  background: var(--c-bg-alt);
}
.section-wrap--dark {
  background: var(--c-bg-dark);
  color: #fff;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 42px);
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-title--italic {
  font-style: italic;
}
.section-title--outfit {
  font-family: var(--font-body);
  font-weight: 600;
}
.section-title--white {
  color: #fff;
}
.section-title--centered {
  text-align: center;
}
.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--c-text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}
.section-subtitle--centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* === FEATURE STRIP === */
.feature-strip {
  background: var(--c-bg-dark);
  padding: 40px 0;
}
.feature-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.feature-strip-item-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-accent);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.feature-strip-item-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* === SPLIT SECTION === */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.split-section--reverse {
  direction: rtl;
}
.split-section--reverse .split-content,
.split-section--reverse .split-image-wrap {
  direction: ltr;
}
.split-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
}
.split-content-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--c-text-sec);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* === CARDS GRID === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--c-bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--c-border);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--c-text);
  margin-bottom: 12px;
}
.card-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.7;
}

/* === SPECS TABLE === */
.specs-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table-row {
  border-bottom: 1px solid var(--c-border);
}
.specs-table-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-text);
  padding: 12px 16px 12px 0;
  width: 40%;
  vertical-align: top;
}
.specs-table-value {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  padding: 12px 0;
}
.specs-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: block;
}

/* === REVIEW CARDS === */
.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--c-bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
}
.review-stars {
  color: var(--c-star);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.7;
  margin-bottom: 14px;
}
.review-author {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--c-text-muted);
}

/* === FAQ ACCORDION === */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-question {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--c-text);
  padding: 20px 40px 20px 0;
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  line-height: 1.5;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--c-primary);
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item--active .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  padding: 0 0 20px;
  line-height: 1.7;
}
.faq-link {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-primary);
  text-decoration: none;
  margin-top: 16px;
  transition: color 0.25s;
}
.faq-link:hover { color: var(--c-cta-hov); }

/* === ABOUT / TEXT BLOCK === */
.text-block {
  max-width: 780px;
  margin: 0 auto;
}
.text-block-paragraph {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--c-text-sec);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* === FINAL CTA === */
.final-cta {
  text-align: center;
  padding: var(--section-py) 0;
}
.final-cta-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(26px, 3vw, 40px);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
}
.final-cta-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 18px;
}

/* === FOOTER === */
.site-footer {
  background: var(--c-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.footer-email {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.footer-email:hover { color: var(--c-accent); }
.footer-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-list {
  list-style: none;
}
.footer-list-item {
  margin-bottom: 10px;
}
.footer-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-link:hover { color: var(--c-accent); }
.footer-address {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-style: normal;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 24px 0;
}
.footer-bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  text-align: center;
}
.footer-copyright {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.footer-disclosure {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* === COOKIE POPUP === */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--c-bg-card);
  border-top: 2px solid var(--c-accent);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 360px;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.cookie-popup--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cookie-popup-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text);
  margin-bottom: 10px;
}
.cookie-popup-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--c-text-sec);
  line-height: 1.6;
  margin-bottom: 18px;
}
.cookie-popup-buttons {
  display: flex;
  gap: 10px;
}
.cookie-btn-accept {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  background: var(--c-cta);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.25s;
}
.cookie-btn-accept:hover { background: var(--c-cta-hov); }
.cookie-btn-decline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--c-text-muted);
  background: transparent;
  border: 1px solid var(--c-border);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btn-decline:hover { border-color: var(--c-text-muted); }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--c-text);
  margin-bottom: 6px;
  display: block;
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.25s;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--c-primary);
}
.form-textarea {
  min-height: 130px;
  resize: vertical;
}
.form-submit {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  background: var(--c-cta);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.25s;
}
.form-submit:hover { background: var(--c-cta-hov); }
.form-success {
  display: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-ok);
  background: var(--c-primary-lt);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
}
.form-success--visible {
  display: block;
}
.contact-info-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-text);
  margin-bottom: 20px;
}
.contact-info-row {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  margin-bottom: 10px;
  line-height: 1.6;
}
.contact-info-label {
  font-weight: 500;
  color: var(--c-text);
}
.contact-info-link {
  color: var(--c-primary);
  text-decoration: none;
}
.contact-info-link:hover { text-decoration: underline; }

/* === ORDER PAGE === */
.order-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
.order-gallery {
  margin-bottom: 32px;
}
.order-main-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
  margin-bottom: 16px;
  transition: opacity 0.3s ease;
}
.order-thumbnails {
  display: flex;
  gap: 12px;
}
.order-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.6;
}
.order-thumb--active {
  border-color: var(--c-primary);
  opacity: 1;
}
.order-thumb:hover { opacity: 1; }
.order-product-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--c-text);
  margin-bottom: 16px;
}
.order-product-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--c-text-sec);
  line-height: 1.8;
  margin-bottom: 24px;
}
.order-features-list {
  list-style: none;
  margin-bottom: 32px;
}
.order-features-item {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--c-border);
}
.order-features-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-weight: 600;
}
.order-shipping-box {
  background: var(--c-bg-alt);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-top: 24px;
}
.order-shipping-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text);
  margin-bottom: 10px;
}
.order-shipping-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.7;
}
.order-shipping-link {
  color: var(--c-primary);
  text-decoration: none;
  font-weight: 500;
}
.order-shipping-link:hover { text-decoration: underline; }

/* Sticky Card */
.order-sticky {
  position: sticky;
  top: 100px;
}
.order-card {
  background: var(--c-bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.order-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-text);
  margin-bottom: 8px;
}
.order-card-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 28px;
  color: var(--c-accent);
  margin-bottom: 20px;
}
.order-card-cta {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background: var(--c-cta);
  padding: 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  transition: background 0.25s;
  margin-bottom: 14px;
}
.order-card-cta:hover { background: var(--c-cta-hov); }
.order-card-disclosure {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--c-text-sec);
}
.trust-badge-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--c-primary);
}

/* === REVIEW PAGE === */
.review-hero {
  background: var(--c-bg-alt);
  padding: var(--section-py) 0;
}
.review-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.review-category {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}
.review-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.review-meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--c-text-muted);
}
.review-hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
}
.review-body {
  max-width: 780px;
  margin: 0 auto;
}
.review-section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--c-text);
  margin-bottom: 16px;
  margin-top: 8px;
}
.review-paragraph {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--c-text-sec);
  line-height: 1.8;
  margin-bottom: 18px;
}
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.pros-list,
.cons-list {
  list-style: none;
}
.pros-title,
.cons-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}
.pros-title { color: var(--c-ok); }
.cons-title { color: #9A4040; }
.pros-item,
.cons-item {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}
.pros-item::before { content: '✅'; position: absolute; left: 0; }
.cons-item::before { content: '❌'; position: absolute; left: 0; }
.verdict-box {
  background: var(--c-bg-alt);
  padding: 32px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--c-accent);
  margin-bottom: 32px;
}
.verdict-score {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.verdict-stars {
  color: var(--c-star);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.customer-quote {
  background: var(--c-bg-card);
  border-left: 3px solid var(--c-primary);
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.customer-quote-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  font-style: italic;
  line-height: 1.7;
}
.customer-quote-author {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 8px;
}

/* === LEGAL PAGES === */
.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--section-py) clamp(16px, 4vw, 48px);
}
.legal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--c-text);
  margin-bottom: 8px;
}
.legal-updated {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
}
.legal-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-text);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-list-item {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text-sec);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-link {
  color: var(--c-primary);
  text-decoration: none;
}
.legal-link:hover { text-decoration: underline; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-section { flex-direction: column; min-height: auto; }
  .hero-image-col { width: 100%; height: 50vh; }
  .hero-image { border-right: none; border-bottom: 3px solid var(--c-primary); }
  .hero-content-col { width: 100%; padding: 40px clamp(16px, 4vw, 48px); }
  .split-section { grid-template-columns: 1fr; }
  .split-section--reverse { direction: ltr; }
  .specs-section { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .order-sticky { position: static; }
  .review-hero-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-list { display: none; }
  .hamburger { display: flex; }
  .feature-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; text-align: center; }
  .feature-strip-inner { grid-template-columns: 1fr; }
  .order-thumbnails { flex-wrap: wrap; }
}
