/* ==========================================================================
   Product LP Base CSS — Universal Template System
   3-Layer Token Architecture: Primitives > Semantic > Components
   Mobile-first | 375px primary | 1200px desktop

   Class prefix: kw (replaced per-site for anti-correlation)
   ========================================================================== */


/* ==========================================================================
   LAYER 1 — PRIMITIVE TOKENS
   Raw design values. Never reference these directly in component styles.
   ========================================================================== */

:root {
  /* --- Neutral Palette --- */
  --clr-white: #FFFFFF;
  --clr-black: #000000;
  --clr-gray-50: #F9FAFB;
  --clr-gray-100: #F3F4F6;
  --clr-gray-200: #E5E7EB;
  --clr-gray-300: #D1D5DB;
  --clr-gray-400: #9CA3AF;
  --clr-gray-500: #6B7280;
  --clr-gray-600: #4B5563;
  --clr-gray-700: #374151;
  --clr-gray-800: #1F2937;
  --clr-gray-900: #111827;
  --clr-gray-950: #030712;

  /* --- Spacing Scale (4px base) --- */
  --sz-1: 4px;
  --sz-2: 8px;
  --sz-3: 12px;
  --sz-4: 16px;
  --sz-5: 20px;
  --sz-6: 24px;
  --sz-8: 32px;
  --sz-10: 40px;
  --sz-12: 48px;
  --sz-16: 64px;
  --sz-20: 80px;
  --sz-24: 96px;

  /* --- Typography Scale --- */
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-lg: 18px;
  --fs-xl: 20px;
  --fs-2xl: 24px;
  --fs-3xl: 30px;
  --fs-4xl: 36px;
  --fs-5xl: 48px;
  --fs-6xl: 64px;

  /* --- Border Radius --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* --- Transitions --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
}


/* ==========================================================================
   LAYER 2 — SEMANTIC TOKENS
   Meaningful aliases that themes override. Components use ONLY these.
   ========================================================================== */

:root {
  /* --- Backgrounds --- */
  --bg-page: var(--clr-white);
  --bg-surface: var(--clr-gray-50);
  --bg-card: var(--clr-white);
  --bg-nav: var(--clr-white);
  --bg-footer: var(--clr-gray-900);
  --bg-sticky-cta: var(--clr-white);

  /* --- Text --- */
  --text-primary: var(--clr-gray-900);
  --text-secondary: var(--clr-gray-600);
  --text-muted: var(--clr-gray-400);
  --text-inverse: var(--clr-white);
  --text-on-accent: var(--clr-white);

  /* --- Accent (overridden at runtime by config.js) --- */
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --accent-light: rgba(37, 99, 235, 0.1);

  /* --- Typography Families --- */
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* --- Borders --- */
  --border-color: var(--clr-gray-200);
  --border-light: var(--clr-gray-100);

  /* --- Rating Stars --- */
  --star-filled: #FBBF24;
  --star-empty: var(--clr-gray-300);
}


/* ==========================================================================
   LAYER 3 — COMPONENT STYLES
   All visual rules. Reference only semantic tokens from Layer 2.
   ========================================================================== */


/* --------------------------------------------------------------------------
   3.0  Reset & Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* Focus visible — accessibility baseline */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}


/* --------------------------------------------------------------------------
   3.1  Utility Classes
   -------------------------------------------------------------------------- */

.kw-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sz-4);
  padding-right: var(--sz-4);
}

.kw-section {
  padding-top: var(--sz-12);
  padding-bottom: var(--sz-12);
}

@media (min-width: 1024px) {
  .kw-section {
    padding-top: var(--sz-16);
    padding-bottom: var(--sz-16);
  }
}

.kw-text-center {
  text-align: center;
}

.kw-hidden {
  display: none !important;
}

.kw-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.kw-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: var(--sz-3);
}

.kw-section-subheading {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 640px;
}

.kw-text-center .kw-section-subheading {
  margin-left: auto;
  margin-right: auto;
}


/* --------------------------------------------------------------------------
   3.2  NAV (sticky)
   -------------------------------------------------------------------------- */

.kw-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding-left: var(--sz-4);
  padding-right: var(--sz-4);
}

.kw-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.kw-nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sz-2);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-lg);
  color: var(--text-primary);
  white-space: nowrap;
  min-width: 0;
}

.kw-nav-logo img {
  height: 36px;
  width: auto;
}

.kw-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 var(--sz-5);
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: var(--fs-sm);
  font-weight: 700;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background var(--duration-fast) var(--ease-out);
}

.kw-nav-cta:hover {
  background: var(--accent-hover);
}

@media (min-width: 1024px) {
  .kw-nav {
    height: 72px;
  }

  .kw-nav-logo {
    font-size: var(--fs-xl);
  }

  .kw-nav-logo img {
    height: 44px;
  }

  .kw-nav-cta {
    height: 44px;
    padding: 0 var(--sz-6);
    font-size: var(--fs-base);
  }
}


/* --------------------------------------------------------------------------
   3.3  HERO Section
   -------------------------------------------------------------------------- */

.kw-hero {
  min-height: calc(100svh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--sz-8);
  padding-bottom: var(--sz-8);
}

.kw-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--sz-6);
}

.kw-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.kw-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 540px;
}

.kw-hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.kw-hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sz-3);
}

@media (min-width: 1024px) {
  .kw-hero {
    min-height: calc(100svh - 72px);
  }

  .kw-hero-image {
    max-height: 500px;
  }

  .kw-hero-actions {
    flex-direction: row;
    align-items: center;
  }
}

/* --- Hero Layout: Split (text left, image right) --- */

[data-hero-style="split"] .kw-hero-content {
  gap: var(--sz-8);
}

@media (min-width: 1024px) {
  [data-hero-style="split"] .kw-hero-content {
    flex-direction: row;
    align-items: center;
  }

  [data-hero-style="split"] .kw-hero-text {
    flex: 0 0 58%;
    max-width: 58%;
  }

  [data-hero-style="split"] .kw-hero-media {
    flex: 0 0 42%;
    max-width: 42%;
  }
}

/* --- Hero Layout: Stacked (image top, text bottom, centered) --- */

[data-hero-style="stacked"] .kw-hero-content {
  align-items: center;
  text-align: center;
}

[data-hero-style="stacked"] .kw-hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

[data-hero-style="stacked"] .kw-hero-media {
  order: -1;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

[data-hero-style="stacked"] .kw-hero-actions {
  align-items: center;
}

/* --- Hero Layout: Video (background media with overlay) --- */

[data-hero-style="video"] {
  position: relative;
}

[data-hero-style="video"] .kw-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

[data-hero-style="video"] .kw-hero-bg img,
[data-hero-style="video"] .kw-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-hero-style="video"] .kw-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

[data-hero-style="video"] .kw-hero-content {
  position: relative;
  z-index: 1;
}

[data-hero-style="video"] .kw-hero h1,
[data-hero-style="video"] .kw-hero-subtitle {
  color: var(--text-inverse);
}

[data-hero-style="video"] .kw-hero-subtitle {
  opacity: 0.9;
}

/* --- Hero Layout: Overlay (full-width image, text overlay) --- */

[data-hero-style="overlay"] {
  position: relative;
}

[data-hero-style="overlay"] .kw-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

[data-hero-style="overlay"] .kw-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-hero-style="overlay"] .kw-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

[data-hero-style="overlay"] .kw-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

[data-hero-style="overlay"] .kw-hero h1,
[data-hero-style="overlay"] .kw-hero-subtitle {
  color: var(--text-inverse);
}

[data-hero-style="overlay"] .kw-hero-subtitle {
  opacity: 0.9;
}


/* --------------------------------------------------------------------------
   3.4  CTA Buttons
   -------------------------------------------------------------------------- */

.kw-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sz-2);
  min-height: 52px;
  padding: var(--sz-4) var(--sz-10);
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: var(--fs-lg);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
  text-decoration: none;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

.kw-cta-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.kw-cta-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.kw-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sz-2);
  min-height: 52px;
  padding: var(--sz-4) var(--sz-10);
  background: transparent;
  color: var(--accent);
  font-size: var(--fs-lg);
  font-weight: 700;
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
  text-decoration: none;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

.kw-cta-secondary:hover {
  background: var(--accent-light);
}

.kw-cta-secondary:active {
  background: var(--accent);
  color: var(--text-on-accent);
}

@media (min-width: 640px) {
  .kw-cta-primary,
  .kw-cta-secondary {
    width: auto;
    min-width: 280px;
  }
}


/* --------------------------------------------------------------------------
   3.5  TRUST BAR
   -------------------------------------------------------------------------- */

.kw-trust {
  background: var(--bg-surface);
  padding: var(--sz-4) 0;
  overflow: hidden;
}

.kw-trust-list {
  display: flex;
  gap: var(--sz-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--sz-2) var(--sz-4);
  scrollbar-width: none;
}

.kw-trust-list::-webkit-scrollbar {
  display: none;
}

.kw-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sz-3);
  flex-shrink: 0;
  scroll-snap-align: start;
  white-space: nowrap;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.kw-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--accent);
}

.kw-trust-icon svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .kw-trust-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    padding: var(--sz-2) 0;
    gap: var(--sz-4);
  }

  .kw-trust-item {
    justify-content: center;
  }
}


/* --------------------------------------------------------------------------
   3.6  BENEFITS Cards
   -------------------------------------------------------------------------- */

.kw-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sz-6);
}

@media (min-width: 640px) {
  .kw-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .kw-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.kw-benefit-card {
  padding: var(--sz-6);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--duration-normal) var(--ease-out);
}

.kw-benefit-card:hover {
  box-shadow: var(--shadow-md);
}

.kw-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--sz-4);
  color: var(--accent);
}

.kw-benefit-icon svg {
  width: 32px;
  height: 32px;
}

.kw-benefit-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--text-primary);
  margin-bottom: var(--sz-2);
}

.kw-benefit-desc {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.6;
}


/* --------------------------------------------------------------------------
   3.7  SHOWCASE Gallery
   -------------------------------------------------------------------------- */

.kw-showcase {
  overflow: hidden;
}

.kw-showcase-track {
  display: flex;
  gap: var(--sz-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--sz-4);
  scrollbar-width: none;
}

.kw-showcase-track::-webkit-scrollbar {
  display: none;
}

.kw-showcase-slide {
  flex: 0 0 85%;
  scroll-snap-align: center;
}

.kw-showcase-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.kw-showcase-dots {
  display: flex;
  justify-content: center;
  gap: var(--sz-2);
  margin-top: var(--sz-4);
}

.kw-showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--clr-gray-300);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out);
}

.kw-showcase-dot[aria-current="true"],
.kw-showcase-dot.active {
  background: var(--accent);
  width: 24px;
}

@media (min-width: 640px) {
  .kw-showcase-slide {
    flex: 0 0 60%;
  }
}

@media (min-width: 1024px) {
  .kw-showcase-track {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .kw-showcase-slide {
    flex: 0 0 70%;
  }
}


/* --------------------------------------------------------------------------
   3.8  SOCIAL PROOF (Reviews/Testimonials)
   -------------------------------------------------------------------------- */

.kw-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sz-6);
}

@media (min-width: 640px) {
  .kw-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .kw-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.kw-review-card {
  padding: var(--sz-6);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  position: relative;
}

.kw-review-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sz-3);
  right: var(--sz-4);
  font-size: var(--fs-6xl);
  line-height: 1;
  color: var(--accent-light);
  font-family: Georgia, serif;
  pointer-events: none;
}

.kw-review-header {
  display: flex;
  align-items: center;
  gap: var(--sz-3);
  margin-bottom: var(--sz-3);
}

.kw-review-photo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
}

.kw-review-author {
  min-width: 0;
}

.kw-review-name {
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--text-primary);
}

.kw-review-city {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.kw-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sz-3);
}

.kw-review-star {
  width: 16px;
  height: 16px;
}

.kw-review-star--filled {
  color: var(--star-filled);
}

.kw-review-star--empty {
  color: var(--star-empty);
}

.kw-review-text {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}


/* --------------------------------------------------------------------------
   3.9  HOW IT WORKS (Steps)
   -------------------------------------------------------------------------- */

.kw-steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--sz-8);
  counter-reset: step-counter;
}

.kw-step {
  display: flex;
  align-items: flex-start;
  gap: var(--sz-5);
  counter-increment: step-counter;
}

.kw-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--text-on-accent);
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
}

.kw-step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--text-primary);
  margin-bottom: var(--sz-1);
}

.kw-step-desc {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .kw-steps-list {
    flex-direction: row;
    gap: var(--sz-8);
    position: relative;
  }

  .kw-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
  }

  /* Connecting line between steps */
  .kw-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(50% + 32px);
    width: calc(100% - 64px);
    height: 2px;
    background: var(--border-color);
  }

  .kw-step-number {
    position: relative;
    z-index: 1;
  }
}


/* --------------------------------------------------------------------------
   3.10  SPECS Table
   -------------------------------------------------------------------------- */

.kw-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.kw-specs-table tr {
  border-bottom: 1px solid var(--border-light);
}

.kw-specs-table tr:nth-child(even) {
  background: var(--bg-surface);
}

.kw-specs-table th,
.kw-specs-table td {
  padding: var(--sz-3) var(--sz-4);
  text-align: left;
  font-size: var(--fs-base);
  vertical-align: top;
}

.kw-specs-table th {
  font-weight: 700;
  color: var(--text-primary);
  width: 40%;
}

.kw-specs-table td {
  color: var(--text-secondary);
}

/* dl-based variant */
.kw-specs-dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.kw-specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sz-2);
  padding: var(--sz-3) var(--sz-4);
  border-bottom: 1px solid var(--border-light);
}

.kw-specs-row:nth-child(even) {
  background: var(--bg-surface);
}

.kw-specs-row dt {
  font-weight: 700;
  color: var(--text-primary);
  font-size: var(--fs-base);
}

.kw-specs-row dd {
  color: var(--text-secondary);
  font-size: var(--fs-base);
}

@media (max-width: 639px) {
  .kw-specs-row {
    grid-template-columns: 1fr;
    gap: var(--sz-1);
  }
}


/* --------------------------------------------------------------------------
   3.11  COMPARISON Table
   -------------------------------------------------------------------------- */

.kw-comparison-wrapper {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Right edge fade for scroll hint */
.kw-comparison-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 32px;
  background: linear-gradient(to right, transparent, var(--bg-page));
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.kw-comparison-wrapper.scrolled-end::after {
  opacity: 0;
}

.kw-comparison {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.kw-comparison thead th {
  padding: var(--sz-3) var(--sz-4);
  text-align: center;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
}

.kw-comparison thead th:first-child {
  text-align: left;
}

/* Highlighted column (our product) */
.kw-comparison th.kw-highlight,
.kw-comparison td.kw-highlight {
  background: var(--accent-light);
}

.kw-comparison thead th.kw-highlight {
  border-top: 3px solid var(--accent);
  color: var(--accent);
}

.kw-comparison tbody td {
  padding: var(--sz-3) var(--sz-4);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.kw-comparison tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  position: sticky;
  left: 0;
  background: var(--bg-page);
  z-index: 1;
}

.kw-comparison tbody tr:nth-child(even) td:first-child {
  background: var(--bg-surface);
}

.kw-comparison tbody tr:nth-child(even) {
  background: var(--bg-surface);
}

/* Checkmarks and X marks */
.kw-check {
  color: #16A34A;
  font-weight: 700;
}

.kw-xmark {
  color: var(--clr-gray-300);
}


/* --------------------------------------------------------------------------
   3.12  PRICING
   -------------------------------------------------------------------------- */

.kw-pricing {
  text-align: center;
}

.kw-price-original {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: var(--sz-1);
}

.kw-price-current {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--sz-2);
  font-family: var(--font-heading);
}

.kw-price-currency {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 700;
}

.kw-price-installments {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  margin-bottom: var(--sz-6);
}

.kw-payment-icons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--sz-2);
  justify-content: center;
  margin-top: var(--sz-4);
  margin-bottom: var(--sz-6);
}

.kw-payment-icon {
  height: 28px;
  width: auto;
  opacity: 0.7;
}

.kw-guarantee {
  display: inline-flex;
  align-items: center;
  gap: var(--sz-3);
  padding: var(--sz-3) var(--sz-5);
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-top: var(--sz-6);
}

.kw-guarantee-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #16A34A;
}


/* --------------------------------------------------------------------------
   3.13  FAQ (details/summary)
   -------------------------------------------------------------------------- */

.kw-faq-list {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

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

.kw-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sz-4);
  padding: var(--sz-4) 0;
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

/* Remove default marker (Safari, Chrome) */
.kw-faq-item summary::-webkit-details-marker {
  display: none;
}

.kw-faq-item summary::marker {
  content: '';
}

/* Custom chevron indicator */
.kw-faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--duration-normal) var(--ease-out);
}

.kw-faq-item[open] .kw-faq-chevron {
  transform: rotate(180deg);
}

/* Smooth open/close using grid trick */
.kw-faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-normal) var(--ease-out);
}

.kw-faq-item[open] .kw-faq-body {
  grid-template-rows: 1fr;
}

.kw-faq-body-inner {
  overflow: hidden;
}

.kw-faq-answer {
  padding-bottom: var(--sz-4);
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.7;
}


/* --------------------------------------------------------------------------
   3.14  STICKY CTA BAR (mobile only)
   -------------------------------------------------------------------------- */

.kw-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: calc(72px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  display: flex;
  align-items: center;
  padding-left: var(--sz-4);
  padding-right: var(--sz-4);
  gap: var(--sz-3);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-out);
}

.kw-sticky-cta.visible {
  transform: translateY(0);
}

.kw-sticky-info {
  flex: 1;
  min-width: 0;
}

.kw-sticky-name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kw-sticky-price {
  font-size: var(--fs-base);
  font-weight: 800;
  color: var(--accent);
}

.kw-sticky-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 var(--sz-6);
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: var(--fs-sm);
  font-weight: 700;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background var(--duration-fast) var(--ease-out);
}

.kw-sticky-btn:hover {
  background: var(--accent-hover);
}

@media (min-width: 1024px) {
  .kw-sticky-cta {
    display: none;
  }
}


/* --------------------------------------------------------------------------
   3.15  CTA FINAL Section
   -------------------------------------------------------------------------- */

.kw-cta-final {
  background: var(--accent);
  color: var(--text-on-accent);
  text-align: center;
  padding: var(--sz-20) 0;
}

.kw-cta-final h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--sz-4);
}

.kw-cta-final-subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  opacity: 0.9;
  margin-bottom: var(--sz-8);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.kw-cta-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sz-2);
  min-height: 56px;
  padding: var(--sz-4) var(--sz-12);
  background: var(--clr-white);
  color: var(--accent);
  font-size: var(--fs-lg);
  font-weight: 800;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
  text-decoration: none;
}

.kw-cta-final-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.kw-cta-final-btn:active {
  transform: translateY(0);
}

.kw-cta-final-guarantee {
  margin-top: var(--sz-5);
  font-size: var(--fs-sm);
  opacity: 0.85;
}


/* --------------------------------------------------------------------------
   3.16  FOOTER
   -------------------------------------------------------------------------- */

.kw-footer {
  background: var(--bg-footer);
  color: var(--text-inverse);
  padding: var(--sz-12) 0 var(--sz-6);
}

.kw-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sz-8);
  margin-bottom: var(--sz-8);
}

@media (min-width: 768px) {
  .kw-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.kw-footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-base);
  margin-bottom: var(--sz-3);
  opacity: 1;
}

.kw-footer-link {
  display: block;
  font-size: var(--fs-sm);
  opacity: 0.7;
  padding: var(--sz-1) 0;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.kw-footer-link:hover {
  opacity: 1;
}

.kw-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--sz-6);
  font-size: var(--fs-sm);
  opacity: 0.6;
  line-height: 1.6;
}

.kw-footer-legal p + p {
  margin-top: var(--sz-1);
}


/* --------------------------------------------------------------------------
   3.17  Scroll Reveal Animation
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grid children */
[data-reveal-stagger] > [data-reveal]:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(6) { transition-delay: 400ms; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* --------------------------------------------------------------------------
   3.18  Print Styles
   -------------------------------------------------------------------------- */

@media print {
  .kw-nav,
  .kw-sticky-cta,
  .kw-cta-final {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* === THEME: kitchen-warm === */
/* kitchen-warm.css
 * Theme for KITCHEN/HOME products (air fryers, blenders, kitchen appliances, home gadgets)
 * Design: Warm, organic, homey, inviting
 */

:root {
  /* === SEMANTIC TOKEN OVERRIDES === */

  /* Backgrounds */
  --bg-page: #FAFAF7;
  --bg-surface: #F5F0E8;
  --bg-card: #FFFFFF;
  --bg-nav: rgba(250, 250, 247, 0.95);
  --bg-footer: #2C2420;
  --bg-sticky-cta: rgba(255, 255, 255, 0.98);

  /* Text */
  --text-primary: #1A1A1A;
  --text-secondary: #6B5B4E;
  --text-muted: #8C7B6B;
  --text-inverse: #FAFAF7;
  --text-on-accent: #FFFFFF;

  /* Accent & Interactive */
  --accent: #C4623B;
  --accent-hover: #A8522D;
  --accent-light: rgba(196, 98, 59, 0.1);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans Pro', system-ui, sans-serif;

  /* Borders & Dividers */
  --border-color: #E8DDD0;
  --border-light: #F0E8DC;
}

/* === CARD ENHANCEMENTS === */
.card,
[class*="card"],
.product-card,
.feature-card,
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(44, 36, 32, 0.08);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.card:hover,
[class*="card"]:hover,
.product-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(196, 98, 59, 0.12);
  border-color: rgba(196, 98, 59, 0.15);
  transform: translateY(-2px);
}

/* === CTA BUTTON STYLING === */
.cta-button,
.cta,
button[class*="cta"],
a[class*="cta"],
.btn-primary {
  background-color: var(--accent);
  color: var(--text-on-accent);
  border: none;
  border-radius: 8px;
  padding: 13px 32px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(196, 98, 59, 0.2);
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}

.cta-button:hover,
.cta:hover,
button[class*="cta"]:hover,
a[class*="cta"]:hover,
.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 6px 16px rgba(196, 98, 59, 0.25);
  transform: translateY(-2px);
}

.cta-button:active,
.cta:active,
button[class*="cta"]:active,
a[class*="cta"]:active,
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(196, 98, 59, 0.15);
}

/* === STICKY CTA (Bottom Bar) === */
.sticky-cta,
.sticky-bottom,
[class*="sticky-cta"] {
  background-color: var(--bg-sticky-cta);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 16px rgba(44, 36, 32, 0.1);
}

/* === TRUST BAR / ICONS === */
.trust-bar,
.trust-icons,
[class*="trust"],
.security-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-bar svg,
.trust-icons svg,
[class*="trust"] svg,
.security-badges svg {
  color: #7D9B76;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* === TESTIMONIAL CARDS === */
.testimonial,
.testimonial-item,
[class*="testimonial"] {
  border-left: 5px solid var(--accent);
  padding-left: 20px;
  background-color: var(--bg-card);
  border-radius: 8px;
  padding: 20px;
  padding-left: 20px;
  margin-left: 0;
}

.testimonial:hover,
.testimonial-item:hover,
[class*="testimonial"]:hover {
  border-left-color: var(--accent-hover);
}

.testimonial-photo,
[class*="testimonial"] img {
  border-radius: 50%;
  border: 3px solid var(--border-color);
  width: 48px;
  height: 48px;
  object-fit: cover;
  margin-bottom: 12px;
}

/* === HERO SECTION === */
.hero,
[class*="hero"] {
  background-color: var(--bg-page);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title,
[class*="hero"] h1,
[class*="hero"] h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-subtitle,
[class*="hero"] p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.hero-visual,
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-surface);
  border-radius: 16px;
  min-height: 360px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Mobile: stack vertically, image on top */
@media (max-width: 768px) {
  .hero,
  [class*="hero"] {
    grid-template-columns: 1fr;
    grid-auto-flow: row-dense;
    gap: 32px;
    padding: 40px 0;
  }

  .hero-visual,
  .hero-image {
    order: -1;
    min-height: 280px;
  }

  .hero-content {
    order: 0;
  }

  .hero-title,
  [class*="hero"] h1,
  [class*="hero"] h2 {
    font-size: 32px;
  }
}

/* === PRICING SECTION === */
.pricing-section,
[class*="pricing"] {
  background: linear-gradient(135deg, var(--bg-surface) 0%, #F0E5D8 100%);
  padding: 60px 0;
  border-radius: 16px;
}

.pricing-card,
[class*="pricing-card"] {
  border: 1px solid var(--border-color);
  padding: 40px 32px;
  text-align: center;
  background-color: var(--bg-card);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pricing-card:hover,
[class*="pricing-card"]:hover {
  box-shadow: 0 8px 24px rgba(196, 98, 59, 0.1);
  transform: translateY(-4px);
}

.pricing-card.featured,
[class*="pricing-card"].featured {
  border: 2px solid var(--accent);
  box-shadow: 0 12px 32px rgba(196, 98, 59, 0.2);
  transform: scale(1.05);
}

.price-amount {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 42px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1;
}

.price-currency {
  font-size: 20px;
  vertical-align: super;
}

.price-period {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
}

/* === FEATURES GRID === */
.features,
.features-grid,
[class*="features"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  padding: 48px 0;
}

.feature,
.feature-item,
[class*="feature-item"] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background-color: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.feature:hover,
.feature-item:hover,
[class*="feature-item"]:hover {
  box-shadow: 0 6px 16px rgba(196, 98, 59, 0.08);
  transform: translateY(-2px);
}

.feature-icon,
[class*="feature"] svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.feature-description,
[class*="feature"] p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* === TRUST BADGES === */
.badge,
.badge-success,
[class*="badge"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background-color: var(--accent-light);
  border: 1px solid rgba(196, 98, 59, 0.2);
}

.badge svg,
[class*="badge"] svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* === SPECS TABLE === */
.specs,
.specs-table,
[class*="specs"] table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background-color: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
}

.specs th,
[class*="specs"] table th {
  background-color: var(--accent);
  color: var(--text-on-accent);
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.specs td,
[class*="specs"] table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-body);
}

.specs tbody tr:nth-child(even),
[class*="specs"] table tbody tr:nth-child(even) {
  background-color: var(--bg-surface);
}

.specs tbody tr:hover,
[class*="specs"] table tbody tr:hover {
  background-color: var(--accent-light);
}

.specs tbody tr:last-child td,
[class*="specs"] table tbody tr:last-child td {
  border-bottom: none;
}

/* === FAQ SECTION === */
.faq,
[class*="faq"] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 48px 0;
}

.faq-item,
.faq-question,
[class*="faq-item"],
details {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--bg-card);
  transition: all 0.3s ease;
}

.faq-item:hover,
.faq-question:hover,
[class*="faq-item"]:hover,
details:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(196, 98, 59, 0.08);
}

.faq-item summary,
details summary,
[class*="faq-item"] summary {
  padding: 20px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: background-color 0.2s ease;
  font-size: 16px;
}

.faq-item summary:hover,
details summary:hover,
[class*="faq-item"] summary:hover {
  background-color: var(--accent-light);
}

.faq-item summary::after,
details summary::after,
[class*="faq-item"] summary::after {
  content: '';
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C4623B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after,
details[open] summary::after,
[class*="faq-item"][open] summary::after {
  transform: rotate(180deg);
}

.faq-answer,
details p {
  padding: 0 20px 20px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  font-family: var(--font-body);
  margin: 0;
  border-top: 1px solid var(--border-light);
}

/* === FINAL CTA SECTION === */
.cta-final,
.cta-section,
[class*="cta-final"] {
  background: linear-gradient(135deg, var(--accent) 0%, #B55530 100%);
  color: var(--text-on-accent);
  padding: 56px 40px;
  border-radius: 16px;
  text-align: center;
  margin-top: 56px;
  box-shadow: 0 12px 32px rgba(196, 98, 59, 0.25);
}

.cta-final h2,
.cta-section h2,
[class*="cta-final"] h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--text-on-accent);
  line-height: 1.3;
}

.cta-final p,
.cta-section p,
[class*="cta-final"] p {
  font-family: var(--font-body);
  font-size: 16px;
  margin: 0 0 28px 0;
  opacity: 0.98;
  line-height: 1.6;
}

.cta-final button,
.cta-final .cta,
.cta-section button,
.cta-section .cta,
[class*="cta-final"] button,
[class*="cta-final"] .cta {
  background-color: var(--bg-card);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
}

.cta-final button:hover,
.cta-final .cta:hover,
.cta-section button:hover,
.cta-section .cta:hover,
[class*="cta-final"] button:hover,
[class*="cta-final"] .cta:hover {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* === NAVIGATION === */
nav,
header,
[class*="nav"],
[class*="header"] {
  background-color: var(--bg-nav);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav a,
[class*="nav"] a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover,
[class*="nav"] a:hover {
  color: var(--accent);
}

/* === FOOTER === */
footer,
[class*="footer"] {
  background-color: var(--bg-footer);
  color: var(--text-inverse);
  padding: 56px 0 28px;
}

footer a,
[class*="footer"] a {
  color: rgba(250, 250, 247, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

footer a:hover,
[class*="footer"] a:hover {
  color: var(--text-inverse);
}

footer p,
[class*="footer"] p {
  color: rgba(250, 250, 247, 0.75);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
}

body, p {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--text-primary);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}

.bg-surface {
  background-color: var(--bg-surface);
}

.bg-page {
  background-color: var(--bg-page);
}

.border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.mt-large {
  margin-top: 56px;
}

.mb-large {
  margin-bottom: 56px;
}

.gap-large {
  gap: 32px;
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-page: #1A1714;
    --bg-surface: #2C2420;
    --bg-card: #332D27;
    --bg-nav: rgba(26, 23, 20, 0.95);
    --bg-footer: #0D0A08;
    --bg-sticky-cta: rgba(51, 45, 39, 0.98);

    --text-primary: #F5F0E8;
    --text-secondary: #D4C4B4;
    --text-muted: #A89A88;

    --accent: #E8824D;
    --accent-hover: #F29664;
    --accent-light: rgba(232, 130, 77, 0.15);

    --border-color: #4A3F35;
    --border-light: #3D3228;
  }

  .card,
  [class*="card"],
  .product-card,
  .feature-card,
  .testimonial-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  .card:hover,
  [class*="card"]:hover,
  .product-card:hover,
  .feature-card:hover,
  .testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(232, 130, 77, 0.2);
  }
}
