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

   Class prefix: tk (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
   -------------------------------------------------------------------------- */

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

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

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

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

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

.tk-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;
}

.tk-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);
}

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

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


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

.tk-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);
}

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

.tk-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;
}

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

.tk-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);
}

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

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

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

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

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


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

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

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

.tk-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[data-hero-style="video"] .tk-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"] .tk-hero-content {
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

[data-hero-style="overlay"] .tk-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"] .tk-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

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

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


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

.tk-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;
}

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

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

.tk-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;
}

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

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

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


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

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

.tk-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;
}

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

.tk-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);
}

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

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

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

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


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

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

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

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

.tk-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);
}

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

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

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

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

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


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

.tk-showcase {
  overflow: hidden;
}

.tk-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;
}

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

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

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

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

.tk-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);
}

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

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

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

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


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

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

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

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

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

.tk-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;
}

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

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

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

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

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

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

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

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

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

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


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

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

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

.tk-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;
}

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

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

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

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

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

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


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

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

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

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

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

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

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

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

.tk-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);
}

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

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

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

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


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

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

/* Right edge fade for scroll hint */
.tk-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);
}

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

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

.tk-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;
}

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

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

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

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

.tk-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;
}

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

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

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

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


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

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

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

.tk-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);
}

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

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

.tk-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);
}

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

.tk-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);
}

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


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

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

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

.tk-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) */
.tk-faq-item summary::-webkit-details-marker {
  display: none;
}

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

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

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

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

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

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

.tk-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)
   -------------------------------------------------------------------------- */

.tk-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);
}

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

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

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

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

.tk-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);
}

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

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


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

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

.tk-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);
}

.tk-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;
}

.tk-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;
}

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

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

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


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

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

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

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

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

.tk-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);
}

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

.tk-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;
}

.tk-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 {
  .tk-nav,
  .tk-sticky-cta,
  .tk-cta-final {
    display: none;
  }

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

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


/* === THEME: tech-dark === */
/* ==========================================================================
   TECH DARK THEME — Product LP Semantic Token Overrides
   Futuristic, premium dark aesthetic for TECH products
   (electric scooters, drones, gadgets, tech accessories)
   ========================================================================== */


/* ==========================================================================
   LAYER 2 OVERRIDES — SEMANTIC TOKENS
   All other styles inherit from base style.css. Only customize colors,
   fonts, and borders here.
   ========================================================================== */

:root {
  /* --- Backgrounds --- */
  --bg-page: #0F172A;
  --bg-surface: #1E293B;
  --bg-card: #1E293B;
  --bg-nav: rgba(15, 23, 42, 0.95);
  --bg-footer: #030712;
  --bg-sticky-cta: rgba(15, 23, 42, 0.98);

  /* --- Text --- */
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-inverse: #0F172A;
  --text-on-accent: #FFFFFF;

  /* --- Accent (Electric Indigo) --- */
  --accent: #6F00FF;
  --accent-hover: #5B00D9;
  --accent-light: rgba(111, 0, 255, 0.15);

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

  /* --- Borders --- */
  --border-color: rgba(148, 163, 184, 0.15);
  --border-light: rgba(148, 163, 184, 0.08);

  /* --- Rating Stars --- */
  --star-filled: #A78BFA;
  --star-empty: #475569;
}


/* ==========================================================================
   LAYER 3 OVERRIDES — COMPONENT ENHANCEMENTS
   Add theme-specific visual effects only. Do NOT duplicate base layout.
   ========================================================================== */


/* --------------------------------------------------------------------------
   NAV — Glassmorphic Dark
   -------------------------------------------------------------------------- */

.tk-nav {
  background: rgba(15, 23, 42, 0.7);
  border-bottom: 1px solid rgba(111, 0, 255, 0.1);
}

.tk-nav-logo {
  color: #F8FAFC;
  font-weight: 800;
}

.tk-nav-cta {
  background: var(--accent);
  transition:
    background var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.tk-nav-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 16px rgba(111, 0, 255, 0.4);
}


/* --------------------------------------------------------------------------
   HERO — Futuristic with Gradient Potential
   -------------------------------------------------------------------------- */

.tk-hero {
  background: linear-gradient(
    135deg,
    #0F172A 0%,
    #1a1f3a 100%
  );
}

.tk-hero h1 {
  color: #F8FAFC;
  text-shadow: 0 0 30px rgba(111, 0, 255, 0.2);
}

.tk-hero-subtitle {
  color: #94A3B8;
}

.tk-hero-image {
  border-radius: var(--radius-lg);
  box-shadow: 0 0 40px rgba(111, 0, 255, 0.15);
}

/* Hero split layout — subtle accent tint on image */
[data-hero-style="split"] .tk-hero-image {
  position: relative;
}

[data-hero-style="split"] .tk-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(111, 0, 255, 0.08) 0%,
    transparent 100%
  );
  pointer-events: none;
}


/* --------------------------------------------------------------------------
   CTA BUTTONS — Electric Glow Effect
   -------------------------------------------------------------------------- */

.tk-cta-primary {
  background: var(--accent);
  box-shadow: 0 0 20px rgba(111, 0, 255, 0.3);
  transition:
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.tk-cta-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(111, 0, 255, 0.5);
}

.tk-cta-primary:active {
  transform: translateY(0);
  box-shadow: 0 0 15px rgba(111, 0, 255, 0.3);
}

.tk-cta-secondary {
  color: var(--accent);
  border: 2px solid var(--accent);
  background: transparent;
  transition:
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.tk-cta-secondary:hover {
  background: var(--accent-light);
  box-shadow: 0 0 20px rgba(111, 0, 255, 0.2);
}

.tk-cta-secondary:active {
  background: var(--accent);
  color: #FFFFFF;
}


/* --------------------------------------------------------------------------
   TRUST BAR — Darker Surface with Accent Icons
   -------------------------------------------------------------------------- */

.tk-trust {
  background: rgba(30, 41, 59, 0.6);
  border-top: 1px solid rgba(111, 0, 255, 0.1);
  border-bottom: 1px solid rgba(111, 0, 255, 0.1);
}

.tk-trust-item {
  color: #94A3B8;
}

.tk-trust-icon {
  color: var(--accent);
}


/* --------------------------------------------------------------------------
   BENEFITS CARDS — Elevated with Glow Hover
   -------------------------------------------------------------------------- */

.tk-benefit-card {
  background: #1E293B;
  border: 1px solid rgba(111, 0, 255, 0.1);
  transition:
    box-shadow var(--duration-normal) var(--ease-out),
    border-color var(--duration-normal) var(--ease-out),
    transform var(--duration-normal) var(--ease-out);
}

.tk-benefit-card:hover {
  border-color: rgba(111, 0, 255, 0.3);
  box-shadow: 0 0 24px rgba(111, 0, 255, 0.15);
  transform: translateY(-4px);
}

.tk-benefit-icon {
  color: var(--accent);
}

.tk-benefit-title {
  color: #F8FAFC;
}

.tk-benefit-desc {
  color: #94A3B8;
}


/* --------------------------------------------------------------------------
   SHOWCASE GALLERY — Dark with Accent Dots
   -------------------------------------------------------------------------- */

.tk-showcase-slide img {
  border-radius: var(--radius-lg);
  box-shadow: 0 0 24px rgba(111, 0, 255, 0.12);
}

.tk-showcase-dot {
  background: #475569;
  transition: background var(--duration-fast) var(--ease-out);
}

.tk-showcase-dot[aria-current="true"],
.tk-showcase-dot.active {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(111, 0, 255, 0.5);
}


/* --------------------------------------------------------------------------
   REVIEWS/TESTIMONIALS — Premium Dark Cards
   -------------------------------------------------------------------------- */

.tk-review-card {
  background: #1E293B;
  border: 1px solid rgba(111, 0, 255, 0.1);
  transition:
    box-shadow var(--duration-normal) var(--ease-out),
    border-color var(--duration-normal) var(--ease-out);
}

.tk-review-card:hover {
  border-color: rgba(111, 0, 255, 0.2);
  box-shadow: 0 0 20px rgba(111, 0, 255, 0.1);
}

.tk-review-card::before {
  color: rgba(111, 0, 255, 0.2);
}

.tk-review-name {
  color: #F8FAFC;
}

.tk-review-city {
  color: #64748B;
}

.tk-review-text {
  color: #94A3B8;
}


/* --------------------------------------------------------------------------
   STEPS (HOW IT WORKS) — Accent Numbers with Dark Connectors
   -------------------------------------------------------------------------- */

.tk-step-number {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(111, 0, 255, 0.3);
}

.tk-step-title {
  color: #F8FAFC;
}

.tk-step-desc {
  color: #94A3B8;
}

@media (min-width: 1024px) {
  .tk-step:not(:last-child)::after {
    background: rgba(111, 0, 255, 0.2);
  }
}


/* --------------------------------------------------------------------------
   SPECS TABLE — Alternating Dark Rows with Subtle Contrast
   -------------------------------------------------------------------------- */

.tk-specs-table tr {
  border-bottom: 1px solid rgba(111, 0, 255, 0.08);
}

.tk-specs-table tr:nth-child(even) {
  background: rgba(30, 41, 59, 0.5);
}

.tk-specs-table th {
  color: #F8FAFC;
}

.tk-specs-table td {
  color: #94A3B8;
}

/* DL variant */
.tk-specs-row {
  border-bottom: 1px solid rgba(111, 0, 255, 0.08);
}

.tk-specs-row:nth-child(even) {
  background: rgba(30, 41, 59, 0.5);
}

.tk-specs-row dt {
  color: #F8FAFC;
}

.tk-specs-row dd {
  color: #94A3B8;
}


/* --------------------------------------------------------------------------
   COMPARISON TABLE — Dark Premium with Accent Highlights
   -------------------------------------------------------------------------- */

.tk-comparison-wrapper::after {
  background: linear-gradient(
    to right,
    transparent,
    #0F172A
  );
}

.tk-comparison thead th {
  color: #F8FAFC;
  border-bottom: 2px solid rgba(111, 0, 255, 0.2);
}

.tk-comparison thead th.tk-highlight {
  color: var(--accent);
  border-top: 3px solid var(--accent);
  background: rgba(111, 0, 255, 0.08);
}

.tk-comparison td.tk-highlight {
  background: rgba(111, 0, 255, 0.08);
}

.tk-comparison tbody td {
  color: #94A3B8;
  border-bottom: 1px solid rgba(111, 0, 255, 0.08);
}

.tk-comparison tbody td:first-child {
  color: #F8FAFC;
  background: #0F172A;
}

.tk-comparison tbody tr:nth-child(even) td:first-child {
  background: rgba(30, 41, 59, 0.4);
}

.tk-comparison tbody tr:nth-child(even) {
  background: rgba(30, 41, 59, 0.4);
}

.tk-check {
  color: #6EE7B7;
}

.tk-xmark {
  color: #64748B;
}


/* --------------------------------------------------------------------------
   PRICING — Gradient Background with Large Accent Price
   -------------------------------------------------------------------------- */

.tk-pricing {
  background: linear-gradient(
    135deg,
    rgba(111, 0, 255, 0.08) 0%,
    rgba(111, 0, 255, 0.04) 100%
  );
  padding: var(--sz-12) var(--sz-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(111, 0, 255, 0.1);
}

.tk-price-original {
  color: #64748B;
}

.tk-price-current {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(111, 0, 255, 0.3);
}

.tk-price-installments {
  color: #94A3B8;
}

.tk-guarantee {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(111, 0, 255, 0.1);
  color: #94A3B8;
}

.tk-guarantee-icon {
  color: #6EE7B7;
}


/* --------------------------------------------------------------------------
   FAQ — Expandable with Light Hover Accent
   -------------------------------------------------------------------------- */

.tk-faq-item {
  border-bottom: 1px solid rgba(111, 0, 255, 0.1);
}

.tk-faq-item summary {
  color: #F8FAFC;
  transition: color var(--duration-fast) var(--ease-out);
}

.tk-faq-item summary:hover {
  color: var(--accent);
}

.tk-faq-chevron {
  color: #64748B;
}

.tk-faq-answer {
  color: #94A3B8;
}


/* --------------------------------------------------------------------------
   STICKY CTA BAR — Dark Glass with Accent Glow
   -------------------------------------------------------------------------- */

.tk-sticky-cta {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 24px rgba(111, 0, 255, 0.15);
  border-top: 1px solid rgba(111, 0, 255, 0.1);
}

.tk-sticky-name {
  color: #F8FAFC;
}

.tk-sticky-price {
  color: var(--accent);
}

.tk-sticky-btn {
  background: var(--accent);
  box-shadow: 0 0 16px rgba(111, 0, 255, 0.3);
  transition:
    background var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.tk-sticky-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 24px rgba(111, 0, 255, 0.5);
}


/* --------------------------------------------------------------------------
   CTA FINAL — Accent Gradient Background
   -------------------------------------------------------------------------- */

.tk-cta-final {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    #5B00D9 100%
  );
  color: #FFFFFF;
}

.tk-cta-final h2 {
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tk-cta-final-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.tk-cta-final-btn {
  background: #F8FAFC;
  color: var(--accent);
  font-weight: 800;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

.tk-cta-final-btn:hover {
  background: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(111, 0, 255, 0.25);
}

.tk-cta-final-btn:active {
  transform: translateY(-1px);
}

.tk-cta-final-guarantee {
  color: rgba(255, 255, 255, 0.85);
}


/* --------------------------------------------------------------------------
   FOOTER — Darkest Background
   -------------------------------------------------------------------------- */

.tk-footer {
  background: #030712;
  color: #E2E8F0;
}

.tk-footer-col-title {
  color: #F8FAFC;
  opacity: 1;
}

.tk-footer-link {
  color: #CBD5E1;
  opacity: 0.7;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.tk-footer-link:hover {
  opacity: 1;
  color: var(--accent);
}

.tk-footer-legal {
  border-top: 1px solid rgba(111, 0, 255, 0.1);
  color: #94A3B8;
  opacity: 1;
}


/* --------------------------------------------------------------------------
   SCROLLBAR — Thin, Accent Colored
   -------------------------------------------------------------------------- */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(111, 0, 255, 0.4);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(111, 0, 255, 0.6);
}

/* Firefox scrollbar */
* {
  scrollbar-color: rgba(111, 0, 255, 0.4) transparent;
  scrollbar-width: thin;
}

:hover {
  scrollbar-color: rgba(111, 0, 255, 0.6) transparent;
}


/* --------------------------------------------------------------------------
   FOCUS STATES — Accent Outline with Glow
   -------------------------------------------------------------------------- */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 12px rgba(111, 0, 255, 0.3);
}
