/** Shopify CDN: Minification failed

Line 78:0 All "@import" rules must come first

**/
/*
 * Keepsake Club — Shared Section Styles
 * File: assets/kc-sections.css
 * Dawn Theme Compatible
 *
 * Load this once in theme.liquid or via:
 * {{ 'kc-sections.css' | asset_url | stylesheet_tag }}
 *
 * Naming convention:
 *   kc-{section}___{element}--{modifier}
 *   All classes prefixed with "kc-" to avoid Dawn conflicts.
 */

/* ──────────────────────────────────────────────
   DESIGN TOKENS
   Override these per-theme in Settings > Colors
   ────────────────────────────────────────────── */
:root {
  --kc-cream:         #F7F3EE;
  --kc-warm-white:    #FDFAF6;
  --kc-ink:           #1C1814;
  --kc-brown:         #5C3D2E;
  --kc-amber:         #C8874A;
  --kc-amber-light:   #E8A96A;
  --kc-muted:         #8A7A6E;
  --kc-border:        #E2D9CE;
  --kc-dark-bg:       #1C1814;
  --kc-dark-surface:  #241A12;

  --kc-font-display:  "Crimson Pro", serif;
  --kc-font-body:     "Crimson Pro", serif;

  --kc-spacing-xs:    8px;
  --kc-spacing-sm:    16px;
  --kc-spacing-md:    28px;
  --kc-spacing-lg:    48px;
  --kc-spacing-xl:    80px;
  --kc-spacing-2xl:   120px;

  --kc-radius:        4px;
  --kc-transition:    0.22s ease;
}

.subscription-banner .banner__heading{
    font-size: 70px;
    font-family: "Crimson Pro", serif;
}

/* ──────────────────────────────────────────────
   UTILITY RESETS (Dawn-safe)
   ────────────────────────────────────────────── */
.kc-section *,
.kc-section *::before,
.kc-section *::after {
  box-sizing: border-box;
}

.kc-section .list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kc-identity-section{
    padding-bottom: 70px;
    padding-top: 70px;
    background: #f9f7f5;
}

/* ──────────────────────────────────────────────
   GOOGLE FONTS IMPORT
   ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ──────────────────────────────────────────────
   SHARED TYPOGRAPHY HELPERS
   ────────────────────────────────────────────── */
.kc-eyebrow,
.kc-hero__eyebrow,
.kc-value__eyebrow,
.kc-identity__eyebrow,
.kc-compare__eyebrow,
.kc-how-it-works__eyebrow,
.kc-trust__eyebrow,
.caption-with-letter-spacing {
  font-family: var(--kc-font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kc-amber);
  margin-bottom: 18px;
}
.kc-compare .caption-with-letter-spacing{
    color: #f9c18c;
}



/* ════════════════════════════════════════════════
   SECTION 1 — HERO
   ════════════════════════════════════════════════ */
.kc-hero {
  background-color: var(--kc-dark-bg);
  min-height: var(--kc-hero-min-height, 700px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--kc-spacing-xl) var(--kc-spacing-md);
  background-size: cover;
}

/* Grain texture overlay */
.kc-hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
}

/* Radial glow */
.kc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:rgb(68 31 10 / 56%);
  pointer-events: none;
}

.kc-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--kc-spacing-xl);
  align-items: center;
  width: 100%;
}

/* Eyebrow */
.kc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--kc-spacing-md);
  animation: kc-fade-up 0.55s ease both;
}

.kc-hero__eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--kc-amber);
  flex-shrink: 0;
}

/* Heading */
.kc-hero__heading {
  font-family: var(--kc-font-display);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--kc-cream);
  margin-bottom: var(--kc-spacing-md);
  letter-spacing: -0.01em;
  animation: kc-fade-up 0.55s 0.08s ease both;
  margin-top: 10px;
}
.kc-hero__heading p{
    margin: 0;
}

.kc-hero__heading em {
  font-style: italic;
  color: var(--kc-amber-light);
}

/* Subtext */
.kc-hero__subtext {
  font-family: var(--kc-font-body);
  font-size: 21px;
  line-height: 1.72;
  color: #fff;
  font-weight: 300;
  max-width: 730px;
  margin-bottom: 20px;
  animation: kc-fade-up 0.55s 0.15s ease both;
}

/* Value bullets */
.kc-hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--kc-spacing-lg);
  animation: kc-fade-up 0.55s 0.22s ease both;
}

.kc-hero__bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--kc-font-body);
  font-size: 20px;
  font-weight: 300;
  color: #fff;
}

.kc-hero__bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kc-amber);
  flex-shrink: 0;
}

/* CTA Card */
.kc-hero__card {
  background: #fbf5ee;
  border-radius: var(--kc-radius);
  padding: 44px 24px;
  position: relative;
  animation: kc-fade-up 0.65s 0.12s ease both;
  border: 1px solid rgba(200,135,74,0.22);
  border-radius: 10px;
}

.kc-hero__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.kc-hero__price-amount {
  font-family: var(--kc-font-display);
  font-size: 52px;
  font-weight: 500;
  color: var(--kc-ink);
  line-height: 1;
}

.kc-hero__price-period {
  font-family: var(--kc-font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--kc-muted);
}

.kc-hero__price-note {
  font-size: 16px;
  color: var(--kc-muted);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

/* CTA Button — uses Dawn's .button .button--primary as base */
.kc-hero__cta.button {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 500;
  margin-bottom: 14px;
  border: none;
  transition: background var(--kc-transition), transform var(--kc-transition);
  background-color: var(--color-secondary);
  color: #fff;
  transition: ease 0.3s;
  box-shadow: 0 1px 4px #f2e2cf;
  padding: 20px 50px;
  font-size: 1.6rem;
  font-family: var(--font-button-text);
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 30px;
}

.kc-hero__cta.button:hover {
      background-color: #fff;
    color: var(--color-primary);
    scale: 1.05;
  transform: translateY(-1px);
}

.kc-hero__microcopy {
  text-align: center;
  font-size: 14px;
  color: var(--kc-muted);
  letter-spacing: 0.04em;
}


/* ════════════════════════════════════════════════
   SECTION 2 — CLEAR VALUE
   ════════════════════════════════════════════════ */
.kc-value {
  background:#fff4e6;
  padding: 70px 0;
}

.kc-value__inner { }

.kc-value__header {
  margin-bottom: 20px;
}
.kc-value .kc-value__eyebrow{
    font-size: 18px;
}
.kc-value__heading {
  font-family: var(--kc-font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--kc-ink);
  max-width: 560px;
  margin-top: 20px;
}

/* Value grid */
.kc-value__grid {
  display: grid;
  gap: 1px;
  background: var(--kc-border);
  border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius);
  overflow: hidden;
}

.kc-value__grid--3-cols { grid-template-columns: repeat(3, 1fr); }
.kc-value__grid--2-cols { grid-template-columns: repeat(2, 1fr); }
.kc-value__grid--1-cols { grid-template-columns: 1fr; }

.kc-value__item {
  background: var(--kc-warm-white);
  padding: 44px 36px;
  transition: background var(--kc-transition);
}

.kc-value__item:hover { background: var(--kc-cream); }

.kc-value__symbol {
  font-family: var(--kc-font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--kc-amber);
  line-height: 1;
  margin-bottom: 16px;
}
.kc-value__symbol svg{
    width: 40px;
    height: 40px;
}
.kc-value__symbol svg path{
    fill: #ad6640;
}
.kc-value__item:nth-child(2) .kc-value__symbol svg path{
    fill: unset;
    stroke: #ad6640;
}
.kc-value__item-title {
  font-family: var(--kc-font-body);
  font-size: 21px;
  font-weight: 500;
  color: var(--kc-ink);
  margin-bottom: 10px;
}

.kc-value__item-description {
  font-family: var(--kc-font-body);
  font-size: 18px;
  color: var(--kc-muted);
  line-height: 1.65;
  font-weight: 300;
}


/* ════════════════════════════════════════════════
   SECTION 3 — IDENTITY MATCH
   ════════════════════════════════════════════════ */
.kc-identity {
  background: var(--kc-warm-white);
  padding: var(--kc-spacing-2xl) var(--kc-spacing-md);
  border-top: 1px solid var(--kc-border);
}

.kc-identity__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Audience cards grid */
.kc-identity__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--kc-border);
  border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius);
  overflow: hidden;
}

.kc-identity__card {
  background: #fff;
  padding: 32px 28px;
  transition: background var(--kc-transition);
}

.kc-identity__card:hover { background: var(--kc-warm-white); }

.kc-identity__card-icon {
  display: block;
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1;
}

.kc-identity__card-title {
  font-family: var(--kc-font-body);
  font-size: 21px;
  font-weight: 500;
  color: var(--kc-ink);
  margin-bottom: 6px;
  line-height: 1.4;
}

.kc-identity__card-description {
  font-size: 17px;
  color: var(--kc-muted);
  font-weight: 300;
  line-height: 1.55;
}

/* Text column */
.kc-identity__text .kc-identity__eyebrow {
  margin-bottom: 18px;
}

.kc-identity__heading {
  font-family: var(--kc-font-display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--kc-ink);
  margin: 15px 0;
}

.kc-identity__emotional-line {
  font-family: var(--kc-font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  color: var(--kc-brown);
  line-height: 1.4;
  padding-left: 20px;
  border-left: 2px solid var(--kc-amber);
  margin: 0;
}


/* ════════════════════════════════════════════════
   SECTION 4 — COMPARISON
   ════════════════════════════════════════════════ */
.kc-compare {
  background: #ad6640;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle glow */
.kc-compare::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(200,135,74,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.kc-compare__inner { position: relative; z-index: 1; }

.kc-compare__header {
  text-align: center;
  margin-bottom: 50px;
}

.kc-compare__eyebrow { margin-bottom: 16px; }

.kc-compare__heading {
  font-family: var(--kc-font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--kc-cream);
  line-height: 1.15;
  margin-top: 10px;
}

/* Columns */
.kc-compare__columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 1060px;
  margin: 0 auto;
  align-items: stretch;
}

.kc-compare__col {
  padding: 44px 40px;
  border-radius: 0;
}

.kc-compare__col--without {
  background: #7c4526;
  border: 1px solid rgba(255,255,255,0.06);
  border-right: none;
  border-radius: 10px;
}
.kc-compare__col--with {
  background: #cf8259;
  border: 1px solid rgba(200,135,74,0.22);
  border-radius: 10px;
}

.kc-compare__col-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--kc-spacing-md);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: capitalize;
}

.kc-compare__col--without .kc-compare__col-label { 
    color: rgba(255, 255, 255, 1);
    margin-top: 0;
}
.kc-compare__col--with .kc-compare__col-label { 
    color: #fff;
    margin-top: 0;
}

.kc-compare__col-label-icon {
  font-size: 10px;
  opacity: 0.5;
}

/* Divider */
.kc-compare__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  flex-shrink: 0;
}

.kc-compare__divider-vs {
  font-family: var(--kc-font-display);
  font-size: 13px;
  font-style: italic;
  color: rgba(247,243,238,0.25);
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

/* List items */
.kc-compare__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kc-compare__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--kc-font-body);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.55;
}

.kc-compare__list-item--without { color: #fff; }
.kc-compare__list-item--with    { color: #fff; }

.kc-compare__item-icon {
  font-size: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

.kc-compare__list-item--without .kc-compare__item-icon { color: rgba(247,243,238,0.18); }
.kc-compare__list-item--with .kc-compare__item-icon { color: var(--kc-amber); }

.kc-compare__list-item--without .kc-compare__item-icon svg line{
    stroke: rgb(178, 101, 60);
}
.kc-compare__list-item--with .kc-compare__item-icon svg path{
    fill: rgb(243 174 137);
}

/* ════════════════════════════════════════════════
   SECTION 5 — HOW IT WORKS
   ════════════════════════════════════════════════ */
.kc-how-it-works {
  background: var(--kc-cream);
  padding: 70px 0;
}

.kc-how-it-works__inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.kc-how-it-works__heading {
  font-family: var(--kc-font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--kc-ink);
  line-height: 1.15;
  margin: 20px 0;
}

.kc-how-it-works__trust-note {
  background: var(--kc-warm-white);
  border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius);
  padding: 22px 26px;
  font-family: var(--kc-font-display);
  font-size: 21px;
  font-style: italic;
  font-weight: 300;
  color: var(--kc-muted);
  line-height: 1.6;
  margin: 0;
}

.kc-how-it-works__trust-quote-mark {
  color: var(--kc-amber);
  opacity: 0.6;
}

/* Steps */
.kc-how-it-works__steps {
  display: flex;
  flex-direction: column;
}

.kc-how-it-works__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--kc-border);
  align-items: start;
}

.kc-how-it-works__step:first-child { padding-top: 4px; }
.kc-how-it-works__step--last       { border-bottom: none; }

.kc-how-it-works__step-number {
  font-family: var(--kc-font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--kc-amber);
  line-height: 1;
  padding-top: 2px;
  font-weight: 600;
}

.kc-how-it-works__step-title {
  font-family: var(--kc-font-body);
  font-size: 24px;
  font-weight: 500;
  color: var(--kc-ink);
  margin-bottom: 6px;
  margin-top: 0;
}

.kc-how-it-works__step-description {
  font-family: var(--kc-font-body);
  font-size: 18px;
  color: var(--kc-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 10px;
}


/* ════════════════════════════════════════════════
   SECTION 6 — TRUST & SAFETY
   ════════════════════════════════════════════════ */
.kc-trust {
  background: var(--kc-warm-white);
  padding: var(--kc-spacing-2xl) var(--kc-spacing-md);
  border-top: 1px solid var(--kc-border);
}
.kc-trust-section{
    background-color: #f1e6d8;
    padding: 50px 0;
}
.kc-trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.kc-trust__caption {
    font-size: 48px;
    text-transform: capitalize;
    letter-spacing: normal;
    margin-top: 0;
    color: #8c4a2f;
}

/* Bullets */
.kc-trust__bullets {
  display: flex;
  flex-direction: column;
}

.kc-trust__bullet {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--kc-border);
  font-family: var(--kc-font-body);
  font-size: 15px;
  color: var(--kc-ink);
  font-weight: 300;
}

.kc-trust__bullet:first-child { 
    border-top: 1px solid var(--kc-border);
}

.kc-trust__bullet-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ad6640;
  color: var(--kc-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  line-height: 32px;
  text-align: center;
}
.kc-trust__bullet-check svg path{
    fill: #fff;
}
.kc-trust__bullet-text{
    font-size: 24px;
    font-style: italic;
}


/* Reassurance */
.kc-trust__reassurance {
  font-family: var(--kc-font-display);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.3;
  color: #725c45;
  font-style: italic;
  margin: 0 0 16px;
  padding-left: 40px;
}

.kc-trust__reassurance-bold {
  font-family: var(--kc-font-display);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 600;
  color: var(--kc-brown);
  display: block;
  font-style: normal;
}


/* ════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════ */
.kc-final-cta {
  background: var(--kc-dark-bg);
  padding: var(--kc-spacing-2xl) var(--kc-spacing-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kc-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,135,74,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.kc-final-cta__inner {
  position: relative;
  z-index: 1;
}

.kc-final-cta__heading {
  font-family: var(--kc-font-display);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 300;
  color: var(--kc-cream);
  margin-bottom: 14px;
  line-height: 1.12;
}

.kc-final-cta__subtext {
  font-family: var(--kc-font-body);
  font-size: 15px;
  color: rgba(247,243,238,0.52);
  margin-bottom: var(--kc-spacing-lg);
  font-weight: 300;
}

.kc-final-cta__button.button {
  display: inline-block;
  padding: 19px 52px;
  background: var(--kc-amber);
  color: var(--kc-ink);
  font-family: var(--kc-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--kc-radius);
  border: none;
  transition: background var(--kc-transition), transform var(--kc-transition);
  margin-bottom: 18px;
}

.kc-final-cta__button.button:hover {
  background: var(--kc-amber-light);
  transform: translateY(-2px);
}

.kc-final-cta__microcopy {
  font-size: 11px;
  color: rgba(247,243,238,0.3);
  letter-spacing: 0.07em;
}


/* ──────────────────────────────────────────────
   ANIMATIONS
   ────────────────────────────────────────────── */
@keyframes kc-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered fade (JS enhancement) */
.kc-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.kc-animate.kc-animate--visible {
  opacity: 1;
  transform: translateY(0);
}


/* ──────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────── */
@media screen and (max-width: 990px) {

  .kc-hero__inner {
    grid-template-columns: 1fr;
  }

  .kc-hero__card {
    max-width: 480px;
  }

  .kc-value__grid--3-cols,
  .kc-value__grid--2-cols {
    grid-template-columns: 1fr;
  }

  .kc-identity__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .kc-identity__grid {
    grid-template-columns: 1fr 1fr;
  }

  .kc-compare__columns {
    grid-template-columns: 1fr;
  }

  .kc-compare__col--without {
    border-radius: var(--kc-radius) var(--kc-radius) 0 0;
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: none;
  }

  .kc-compare__col--with {
    border-radius: 0 0 var(--kc-radius) var(--kc-radius);
  }

  .kc-compare__divider {
    display: none;
  }

  .kc-how-it-works__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .kc-trust__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media screen and (max-width: 640px) {
  .kc-hero {
    align-items: flex-start;
    padding: 25px 0 40px 0;
  }

  .kc-hero__heading {
      font-size: 30px;
      margin-bottom: 20px;
  }
  .kc-hero__inner{
    gap: 30px;
  }
  .kc-hero__price-amount{
    font-size: 40px;
  }
  .kc-hero__cta.button {
      padding: 10px 0;
      font-size: 14px;
      font-family: var(--font-button-text);
      text-transform: uppercase;
      letter-spacing: 3px;
      border-radius: 30px;
      align-items: center;
      display: flex;
  }
  .kc-hero__subtext{
    font-size: 18px;
  }

  .kc-identity__grid {
    grid-template-columns: 1fr;
  }

  .kc-hero__card {
    padding: 15px 20px;
  }
  .kc-value .kc-value__eyebrow{
    margin-top: 0;
    margin-bottom: 10px;
  }
  .kc-value__item{
    padding: 15px 20px;
  }
  .kc-value__item-title{
    margin-top: 5px;
  }
  .kc-value__item-description{
    margin-top: 0;
    margin-bottom: 5px;
  }
  .kc-value__symbol{
    margin-bottom: 5px;
  }
  .kc-value__heading{
    font-size: 24px;
    margin-top: 0;
  }
  .kc-identity-section{
    padding-bottom: 30px;
    padding-top: 30px;
  }
  .kc-identity__card{
    padding: 15px 20px;
  }
  .kc-identity__card-title{
    margin-top: 10px;
  }
  .kc-identity__card-description{
    margin-top: 0;
    margin-bottom: 5px;
  }
  .kc-identity__card-icon{
    margin-bottom: 5px;
  }
  .kc-identity__inner{
    gap: 8px
  }
  .kc-identity__heading{
    font-size: 32px;
  }
  .kc-identity__emotional-line{
    font-size: 20px;
  }

  .kc-compare{
    padding: 30px 0;
  }
  .kc-compare .caption-with-letter-spacing{
    margin-top: 0;
  }
  .kc-compare__header{
    margin-bottom: 20px;
  }
  .kc-compare__heading{
    font-size: 22px;
  }
  .kc-compare__col{
    padding: 20px 25px;
  }
  .kc-value{
    padding: 30px 0;
  }
  .kc-compare__col-label{
    font-size: 20px;
    margin-bottom: 15px;
  }
  .kc-compare__list-item{
    font-size: 18px;
  }
  .kc-compare__list-item--without .kc-compare__item-icon svg{
    width: 18px;
  }
  .kc-compare__list-item--with .kc-compare__item-icon svg{
    width: 18px;
  }
  .kc-how-it-works{
    padding: 30px 0;
  }
  .kc-how-it-works__intro .kc-how-it-works__caption{
    margin-top: 0;
  }
  .kc-how-it-works__heading{
    font-size: 32px;
  }
  .kc-how-it-works__trust-note{
    padding: 12px 16px;
  }
  .kc-how-it-works__inner{
    gap: 20px;
  }
  .kc-how-it-works__step{
    padding: 15px 0;
  }
  .kc-how-it-works__step-title{
    font-size: 20px;
  }
  .kc-how-it-works__step-description{
    font-size: 16px;
  }
  .kc-how-it-works__step-number{
    font-size: 32px;
  }
  .kc-how-it-works__step{
    grid-template-columns: 50px 1fr;
  }
  .kc-how-it-works__step.kc-how-it-works__step--last{
    padding-bottom: 0;
  }
  .kc-trust-section{
    padding: 30px 0;
  }
  .kc-trust__caption{
    font-size: 32px;
  }
  .kc-trust__bullet{
    padding: 8px 0;
  }
  .kc-trust__bullet-check{
    width: 20px;
    height: 20px;
  }
  .kc-trust__bullet-text{
    font-size: 20px;
  }
  .kc-trust__bullet-check svg{
    width: 15px;
  }
  .kc-trust__inner{
    gap: 20px;
  }
  .kc-trust__reassurance{
    font-size: 23px;
    margin: 0 0 16px;
    padding-left: 20px;
  }
  .kc-hero__bullets {
    gap: 5px;
  }
  .kc-hero__bullet {
    font-size: 18px;
  }
}
