/* ======================================
   LOGTIME AGENCY — PREMIUM DESIGN SYSTEM
   Clean, professional, no emojis
   ====================================== */

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --c-primary: #CC2200;
  --c-primary-hover: #E03311;
  --c-primary-glow: rgba(204, 34, 0, 0.25);
  --c-primary-light: rgba(204, 34, 0, 0.06);
  --c-bg: #FFFFFF;
  --c-bg-alt: #F8F8FA;
  --c-surface: #FFFFFF;
  --c-border: #E8E8EC;
  --c-text: #111118;
  --c-text-secondary: #4A4A5A;
  --c-text-muted: #8E8EA0;
  --c-dark: #0D0D14;
  --c-white: #FFFFFF;
  --f-heading: 'Outfit', sans-serif;
  --f-body: 'Inter', sans-serif;
  --s-section: 110px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.10);
  --shadow-glow: 0 4px 30px var(--c-primary-glow);
  --t-fast: 0.2s ease;
  --t-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 90px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4 {
  font-family: var(--f-heading);
  line-height: 1.15;
  color: var(--c-text);
}

.text-accent {
  color: var(--c-primary);
}

.text-accent-light {
  color: #FF7755;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--t-normal);
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  background: var(--c-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 40px var(--c-primary-glow);
}

.btn--white {
  background: var(--c-white);
  color: var(--c-primary);
  box-shadow: var(--shadow-md);
  font-weight: 800;
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  font-size: 1.1rem;
  padding: 18px 42px;
}

.btn--full {
  width: 100%;
}

.btn--nav {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 2px solid var(--c-text);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--c-text);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline svg {
  transition: transform var(--t-fast);
}

.btn--outline:hover svg {
  transform: translateX(3px);
}

/* Hero actions */
.hero__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── TRUST STATS BAR ─── */
.trust-bar {
  background: var(--c-dark);
  padding: 20px 0;
  position: relative;
}

.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
}

.trust-bar::before {
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(204, 34, 0, 0.3), transparent);
}

.trust-bar::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(204, 34, 0, 0.2), transparent);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.trust-bar__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.trust-bar__number {
  font-family: var(--f-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--c-white);
  letter-spacing: -0.02em;
}

.trust-bar__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.trust-bar__divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
}

/* ─── HEADER — Liquid Island ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 14px 20px 0;
  pointer-events: none;
  transition: padding var(--t-normal);
}

.header--scrolled {
  padding-top: 8px;
}

.header__pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 820px;
  width: 100%;
  height: 56px;
  padding: 0 10px 0 24px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  pointer-events: auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header--scrolled .header__pill {
  max-width: 920px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.06);
}

.header__logo {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo-log {
  color: var(--c-text);
}

.logo-time {
  color: var(--c-primary);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-text-secondary);
  transition: color var(--t-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--c-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width var(--t-normal);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 4px;
  transition: all var(--t-normal);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── SECTIONS ─── */
.section {
  padding: var(--s-section) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient decorations for depth */
#historia {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(204, 34, 0, 0.07) 30%, rgba(204, 34, 0, 0.08) 60%, rgba(204, 34, 0, 0.03) 85%, #FFFFFF 100%);
}

#historia::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 34, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

#oferta {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(204, 34, 0, 0.06) 30%, rgba(204, 34, 0, 0.07) 55%, rgba(204, 34, 0, 0.03) 80%, #FFFFFF 100%);
}

#oferta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-primary), transparent);
  opacity: 0.25;
}

#oferta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 34, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

#proceso {
  background: linear-gradient(180deg, #F8F8FA 0%, rgba(13, 13, 20, 0.015) 40%, #F8F8FA 100%);
}

#proceso::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 13, 20, 0.025) 0%, transparent 65%);
  pointer-events: none;
}

#faq::before {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 34, 0, 0.025) 0%, transparent 70%);
  pointer-events: none;
}

.section--alt {
  background: linear-gradient(180deg, #F8F8FA 0%, #FFFFFF 100%);
  position: relative;
}

.section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 13, 20, 0.06), transparent);
}

.section__title {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.section__lead {
  text-align: center;
  font-size: 1.1rem;
  color: var(--c-text-secondary);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

/* ─── HERO ─── */
.hero {
  padding-top: 140px;
  padding-bottom: var(--s-section);
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 34, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 13, 20, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  line-height: 1.08;
}

.hero__subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-text-secondary);
  margin-bottom: 20px;
}

.hero__description {
  color: var(--c-text-secondary);
  margin-bottom: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Hero Visual — Mascot */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

/* Speech bubble */
.hero__bubble {
  position: relative;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  max-width: 220px;
  animation: bubblePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

.hero__bubble::after {
  content: '';
  position: absolute;
  bottom: 18px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--c-white);
  border-right: 1.5px solid var(--c-border);
  border-bottom: 1.5px solid var(--c-border);
  transform: rotate(-45deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.03);
}

@keyframes bubblePop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(8px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero__mascot {
  max-height: 260px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.12));
  animation: mascotFloat 4s ease-in-out infinite;
}

@keyframes mascotFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ─── STORYTELLING ─── */
.story-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.story-section {
  max-width: none;
  margin: 0;
}

.story-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-primary);
  margin-bottom: 16px;
  text-align: center;
}

.story-heading {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ─── SITUATION CARDS ─── */
.story-situations {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.situation {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: all var(--t-normal);
}

.situation:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.situation__number {
  font-family: var(--f-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--c-primary);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.situation p {
  color: var(--c-text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

.situation strong {
  color: var(--c-text);
}

.story-quote {
  margin: 24px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--c-primary);
  background: var(--c-primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--c-text);
  line-height: 1.75;
}

.story-pivot {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-text);
  margin-top: 24px;
  text-align: center;
  line-height: 1.7;
}

/* ─── NOTEBOOK — Client Stories ─── */
.notebook {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.notebook__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--c-dark);
  color: var(--c-white);
  font-family: var(--f-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.notebook__tab svg {
  opacity: 0.7;
}

.notebook__pages {
  position: relative;
  min-height: 340px;
}

.notebook__page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 24px 20px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.notebook__page.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.notebook__name {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 2px;
}

.notebook__tagline {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--c-text-muted);
  margin-bottom: 16px !important;
}

.notebook__page p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-text-secondary);
  margin-bottom: 10px;
}

.notebook__page strong {
  color: var(--c-text);
}

.notebook__moral {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
  font-weight: 600;
  font-style: italic;
  color: var(--c-text) !important;
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
}

.notebook__nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px 20px;
}

.notebook__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  padding: 0;
}

.notebook__dot:hover {
  border-color: var(--c-primary);
}

.notebook__dot.active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  transform: scale(1.2);
}

/* ─── CREATIVE ANIMATIONS ─── */

/* Hero title gradient shimmer */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero__title .text-accent {
  background: linear-gradient(90deg, var(--c-primary) 0%, #FF7755 25%, var(--c-primary) 50%, #FF7755 75%, var(--c-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* Floating particles on hero */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  width: 6px;
  height: 6px;
  background: var(--c-primary);
  border-radius: 50%;
  opacity: 0.15;
  animation: floatDot 6s ease-in-out infinite;
}

@keyframes floatDot {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.5);
  }
}

/* Staggered reveal with scale */
.reveal-scale {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Offer card header glow pulse */
@keyframes headerGlow {

  0%,
  100% {
    box-shadow: inset 0 -1px 40px rgba(204, 34, 0, 0);
  }

  50% {
    box-shadow: inset 0 -1px 40px rgba(204, 34, 0, 0.15);
  }
}

.offer-card__header {
  animation: headerGlow 4s ease-in-out infinite;
}

/* Smooth number count style */
.offer-card__price {
  position: relative;
}

/* Hover tilt on pillar cards */
.pillar {
  transition: all var(--t-normal), transform 0.3s ease;
}

.pillar:hover {
  transform: translateY(-6px) rotate(-0.5deg);
}

/* ─── OFFER CARD ─── */
.offer-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--c-surface);
  border: 1px solid rgba(204, 34, 0, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(204, 34, 0, 0.08), 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--t-normal);
}

.offer-card:hover {
  box-shadow: 0 12px 48px rgba(204, 34, 0, 0.14), 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.offer-card__header {
  background: linear-gradient(135deg, var(--c-dark) 0%, #1A1A2E 100%);
  color: var(--c-white);
  text-align: center;
  padding: 22px 24px 18px;
}

.offer-card__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.offer-card__tag {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--c-primary);
  color: var(--c-white);
  padding: 3px 12px;
  border-radius: 50px;
}

.offer-card__discount {
  font-size: 0.68rem;
  font-weight: 800;
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.12);
  padding: 3px 10px;
  border-radius: 50px;
}

.offer-card__pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.offer-card__old {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}

.offer-card__price {
  font-family: var(--f-heading);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.offer-card__sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

.offer-card__body {
  padding: 20px 24px 22px;
}

/* Checklist */
.offer-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.4;
}

.offer-checklist svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #4ADE80;
}

/* CTA Button */
.offer-card__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  font-family: var(--f-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-white);
  background: linear-gradient(135deg, var(--c-primary) 0%, #E03311 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-normal);
  box-shadow: 0 4px 20px rgba(204, 34, 0, 0.3);
}

.offer-card__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(204, 34, 0, 0.4);
}

.offer-card__cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--t-fast);
}

.offer-card__cta-btn:hover svg {
  transform: translateX(3px);
}

/* Footer */
.offer-card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  text-align: center;
}

.offer-card__urgency {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-primary);
}

.offer-card__guarantee {
  font-size: 0.72rem;
  color: var(--c-text-muted);
}

/* Shimmer animation on offer header */
.offer-card__shimmer {
  position: relative;
  overflow: hidden;
}

.offer-card__shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(255, 255, 255, 0.06) 45%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0.06) 55%,
      transparent 60%);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(350%);
  }
}

/* Pulse glow on CTA */
@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(204, 34, 0, 0.3);
  }

  50% {
    box-shadow: 0 4px 30px rgba(204, 34, 0, 0.5), 0 0 0 4px rgba(204, 34, 0, 0.08);
  }
}

.offer-card__cta-btn {
  animation: ctaPulse 3s ease-in-out infinite;
}

/* ─── PILLAR GRID (Why LogTime) ─── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--t-normal);
}

.pillar:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(204, 34, 0, 0.2);
}

.pillar__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary-light);
  color: var(--c-primary);
  border-radius: 14px;
  margin: 0 auto 18px;
}

.pillar h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  line-height: 1.65;
}

/* ─── PROCESS TIMELINE ─── */
.process-timeline {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-primary), var(--c-border));
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.process-step__marker {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary);
  color: var(--c-white);
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  z-index: 1;
}

.process-step__content {
  padding-top: 8px;
}

.process-step__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-step__content p {
  color: var(--c-text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--c-primary-light);
  color: var(--c-primary);
  padding: 2px 10px;
  border-radius: 50px;
  vertical-align: middle;
  margin-left: 8px;
}

/* ─── BOLD STATEMENT ─── */
.bold-statement {
  background: var(--c-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bold-statement::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(204, 34, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.bold-statement__text {
  font-family: var(--f-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto 20px;
  position: relative;
}

.bold-statement__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  position: relative;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  gap: 16px;
  transition: color var(--t-fast);
}

.faq-question:hover {
  color: var(--c-primary);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--c-text-muted);
  transition: transform var(--t-normal);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--c-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-slow);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--c-text-secondary);
  font-size: 0.94rem;
  line-height: 1.75;
}

.faq-answer a {
  color: var(--c-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── CTA SECTION ─── */
.section--cta {
  background: linear-gradient(135deg, var(--c-dark) 0%, #131320 50%, #1e1012 100%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(circle, rgba(204, 34, 0, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.section__title--white {
  color: var(--c-white);
}

.cta-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.cta-lead {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 44px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

/* Numbered steps */
.cta-steps-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 20px;
}

.cta-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.cta-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cta-step__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204, 34, 0, 0.15);
  color: #FF7755;
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: 8px;
  border: 1px solid rgba(204, 34, 0, 0.2);
}

.cta-step strong {
  display: block;
  color: var(--c-white);
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.cta-step p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

.cta-reassurance {
  font-size: 0.82rem;
  color: #4ADE80;
  font-weight: 600;
}

/* Dual CTA layout */
.cta-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}

.cta-dual__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-dual__right {
  display: flex;
  justify-content: center;
}

.cta-form-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 0 40px rgba(204, 34, 0, 0.06);
}

.cta-form-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.15);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.cta-form-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 10px;
}

.cta-form-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 22px;
  line-height: 1.65;
}

.cta-form-sub {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Trust strip */
.cta-trust-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.cta-trust-item svg {
  opacity: 0.5;
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--c-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0 24px;
}

.footer__inner {
  text-align: left;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  flex-shrink: 0;
}

.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.footer__logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer__logo-text {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  font-weight: 900;
}

.footer__logo-text .logo-log {
  color: #FFF;
}

.footer__logo-text .logo-time {
  color: var(--c-primary);
}

.footer__brand p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__links {
  text-align: right;
}

.footer__ig {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t-fast);
  display: inline-block;
  margin-bottom: 10px;
}

.footer__ig:hover {
  color: var(--c-primary);
}

.footer__legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--t-fast);
}

.footer__legal a:hover {
  color: var(--c-white);
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
}

/* ─── STICKY BOTTOM BAR ─── */
.sticky-bar {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 24px));
  z-index: 900;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 12px 24px 14px;
  max-width: 520px;
  width: calc(100% - 32px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-bar.visible {
  transform: translateX(-50%) translateY(0);
}

.sticky-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sticky-bar__pricing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-bar__flash {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--c-primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.sticky-bar__flash svg {
  width: 14px;
  height: 14px;
}

.sticky-bar__old {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.35);
  text-decoration: line-through;
  font-weight: 500;
}

.sticky-bar__price {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-text);
}

.sticky-bar__badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--c-primary);
  background: rgba(204, 34, 0, 0.1);
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: -0.01em;
}

.sticky-bar__cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--f-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-white);
  background: linear-gradient(135deg, var(--c-primary) 0%, #E03311 100%);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-normal);
  box-shadow: 0 4px 16px rgba(204, 34, 0, 0.25);
}

.sticky-bar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(204, 34, 0, 0.35);
}

.sticky-bar__cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t-fast);
}

.sticky-bar__cta:hover svg {
  transform: translateX(3px);
}

.sticky-bar__trust {
  font-size: 0.65rem;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.01em;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CTA PULSE ─── */
@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: var(--shadow-glow);
  }

  50% {
    box-shadow: 0 4px 44px rgba(204, 34, 0, 0.4);
  }
}



.hero .btn--lg:hover {
  animation: none;
}

/* ─── MOBILE NAV OVERLAY ─── */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero__inner {
    gap: 24px;
  }



  .hero__description {
    max-width: 100%;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-dual {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .cta-dual__left {
    align-items: center;
  }

  .cta-steps {
    text-align: left;
    max-width: 400px;
  }

  .cta-trust-strip {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-form-card {
    max-width: 420px;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .notebook {
    position: static;
  }

  .footer__top {
    flex-direction: column;
    gap: 20px;
  }

  .footer__links {
    text-align: left;
  }

  .footer__legal {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --s-section: 48px;
  }

  .header {
    padding: 8px 12px 0;
  }

  .header__pill {
    border-radius: 20px;
    padding: 0 8px 0 18px;
    height: 48px;
  }

  .header__logo {
    font-size: 1.25rem;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--c-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right var(--t-normal);
    z-index: 999;
    border-radius: 0;
  }

  .header__nav.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-link {
    font-size: 1rem;
  }

  .hero {
    padding-top: 88px;
  }

  .hero__inner {
    gap: 16px;
  }

  .hero__eyebrow {
    font-size: 0.7rem;
    margin-bottom: 14px;
  }

  .hero__title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
    margin-bottom: 10px;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .hero__description {
    font-size: 0.88rem;
    margin-bottom: 24px;
    line-height: 1.65;
  }

  .hero__mascot {
    max-height: 180px;
  }


  .trust-bar {
    padding: 16px 0;
  }

  .trust-bar__inner {
    gap: 24px;
  }

  .trust-bar__number {
    font-size: 1.3rem;
  }

  .trust-bar__label {
    font-size: 0.72rem;
  }

  .trust-bar__divider {
    height: 22px;
  }

  .btn {
    font-size: 0.9rem;
    padding: 12px 28px;
  }

  .btn--lg {
    font-size: 0.95rem;
    padding: 14px 30px;
  }

  .btn--outline {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .section__title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    margin-bottom: 14px;
  }

  .section__lead {
    font-size: 0.95rem;
    margin-bottom: 36px;
    line-height: 1.65;
  }

  .story-label {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }

  .story-heading {
    font-size: clamp(1.2rem, 4.5vw, 1.5rem);
    margin-bottom: 24px;
  }

  .story-quote {
    padding: 16px 18px;
    font-size: 0.88rem;
    margin: 14px 0;
  }

  .situation {
    padding: 14px 16px;
    gap: 12px;
  }

  .situation__number {
    font-size: 1.2rem;
  }

  .situation p {
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .story-pivot {
    font-size: 0.9rem;
    margin-top: 16px;
  }

  .notebook__pages {
    min-height: 260px;
  }

  .notebook__page {
    padding: 18px 16px 12px;
  }

  .notebook__name {
    font-size: 1.05rem;
  }

  .notebook__tagline {
    font-size: 0.78rem;
    margin-bottom: 12px !important;
  }

  .notebook__page p {
    font-size: 0.8rem;
    line-height: 1.55;
    margin-bottom: 7px;
  }

  .notebook__moral {
    font-size: 0.78rem !important;
    margin-top: 10px !important;
    padding-top: 10px;
  }

  .notebook__tab {
    font-size: 0.7rem;
    padding: 10px 16px;
  }

  .notebook__nav {
    padding: 8px 16px 12px;
  }

  .offer-card__header {
    padding: 26px 22px 22px;
  }

  .offer-card__tag {
    font-size: 0.72rem;
  }

  .offer-card__price {
    font-size: 2.8rem;
  }

  .offer-card__old {
    font-size: 1rem;
  }

  .offer-card__sub {
    font-size: 0.82rem;
  }

  .offer-card__body {
    padding: 24px 20px;
  }

  .offer-checklist li {
    font-size: 0.82rem;
    gap: 8px;
  }

  .offer-checklist svg {
    width: 16px;
    height: 16px;
  }

  .offer-card__cta-btn {
    font-size: 0.88rem;
    padding: 12px 20px;
    border-radius: 10px;
  }

  .offer-card__urgency {
    font-size: 0.7rem;
  }

  .offer-card__guarantee {
    font-size: 0.68rem;
  }

  .process-step {
    gap: 14px;
    margin-bottom: 22px;
  }

  .process-step__marker {
    width: 38px;
    height: 38px;
    font-size: 0.82rem;
  }

  .process-step__content h3 {
    font-size: 0.95rem;
  }

  .process-step__content p {
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .process-timeline::before {
    left: 18px;
  }

  .faq-question {
    font-size: 0.92rem;
    padding: 16px 0;
    gap: 12px;
  }

  .faq-answer p {
    font-size: 0.84rem;
    padding-bottom: 16px;
  }

  .faq-chevron {
    width: 15px;
    height: 15px;
  }

  .section--cta {
    padding: 48px 0;
  }

  .cta-lead {
    font-size: 0.9rem;
  }

  .cta-benefits li {
    font-size: 0.88rem;
  }

  .cta-scarcity {
    font-size: 0.78rem;
  }

  .cta-form-card {
    padding: 28px 22px;
  }

  .cta-form-card h3 {
    font-size: 1.05rem;
  }

  .cta-form-card p {
    font-size: 0.82rem;
  }

  .sticky-bar {
    padding: 10px 0 12px;
  }

  .sticky-bar__inner {
    padding: 0 16px;
    gap: 8px;
  }

  .sticky-bar__price {
    font-size: 0.95rem;
  }

  .sticky-bar__old {
    font-size: 0.75rem;
  }

  .sticky-bar__cta {
    padding: 11px 20px;
    font-size: 0.88rem;
    border-radius: 10px;
  }

  .sticky-bar__trust {
    font-size: 0.65rem;
  }

  .footer {
    padding: 32px 0 20px;
  }

  .footer__brand p {
    font-size: 0.72rem;
  }

  .footer__copy {
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  :root {
    --s-section: 36px;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero__eyebrow {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }

  .hero__title {
    font-size: 1.45rem;
    margin-bottom: 8px;
  }

  .hero__subtitle {
    font-size: 0.92rem;
    margin-bottom: 12px;
  }

  .hero__description {
    font-size: 0.82rem;
    margin-bottom: 20px;
  }

  .hero__mascot {
    max-height: 140px;
  }


  .trust-bar {
    padding: 14px 0;
  }

  .trust-bar__inner {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-bar__number {
    font-size: 1.1rem;
  }

  .trust-bar__label {
    font-size: 0.68rem;
  }

  .trust-bar__divider {
    height: 18px;
  }

  .btn {
    font-size: 0.84rem;
    padding: 11px 22px;
  }

  .btn--lg {
    font-size: 0.88rem;
    padding: 12px 24px;
  }

  .btn--outline {
    padding: 10px 18px;
    font-size: 0.82rem;
  }

  .section__title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin-bottom: 10px;
  }

  .section__lead {
    font-size: 0.85rem;
    margin-bottom: 28px;
  }

  .story-heading {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }

  .situation {
    padding: 12px 14px;
    gap: 10px;
  }

  .situation__number {
    font-size: 1.05rem;
  }

  .situation p {
    font-size: 0.8rem;
  }

  .story-quote {
    padding: 14px 16px;
    font-size: 0.82rem;
  }

  .notebook__pages {
    min-height: 220px;
  }

  .notebook__page {
    padding: 14px 12px 10px;
  }

  .notebook__name {
    font-size: 0.95rem;
  }

  .notebook__page p {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 5px;
  }

  .notebook__tab {
    font-size: 0.65rem;
    padding: 8px 12px;
  }

  .notebook__nav {
    padding: 6px 12px 10px;
    gap: 8px;
  }

  .notebook__dot {
    width: 7px;
    height: 7px;
  }

  .offer-card__price {
    font-size: 2.4rem;
  }

  .offer-card__header {
    padding: 22px 18px 18px;
  }

  .offer-card__body {
    padding: 20px 16px;
  }

  .offer-checklist li {
    font-size: 0.78rem;
  }

  .offer-card__cta-btn {
    font-size: 0.82rem;
    padding: 11px 16px;
  }

  .process-step__marker {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  .process-step__content h3 {
    font-size: 0.88rem;
  }

  .process-step__content p {
    font-size: 0.8rem;
  }

  .process-timeline::before {
    left: 16px;
  }

  .faq-question {
    font-size: 0.85rem;
    padding: 14px 0;
  }

  .faq-answer p {
    font-size: 0.8rem;
    padding-bottom: 14px;
  }

  .cta-form-card {
    padding: 22px 18px;
  }

  .cta-form-card h3 {
    font-size: 0.95rem;
  }

  .sticky-bar {
    padding: 8px 0 10px;
  }

  .sticky-bar__inner {
    gap: 6px;
    padding: 0 14px;
  }

  .sticky-bar__pricing {
    gap: 8px;
  }

  .sticky-bar__price {
    font-size: 0.88rem;
  }

  .sticky-bar__old {
    font-size: 0.7rem;
  }

  .sticky-bar__badge {
    font-size: 0.6rem;
    padding: 1px 6px;
  }

  .sticky-bar__cta {
    padding: 10px 16px;
    font-size: 0.82rem;
    border-radius: 8px;
  }

  .sticky-bar__trust {
    font-size: 0.6rem;
  }
}