/* ═══════════════════════════════════════════════════
   SKINPOINT KLINIKA — Design System
   Premium clinical aesthetic, beige/stone/off-white
   ═══════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  /* Palette — clinical premium */
  --color-bg:        #FAF8F5;
  --color-bg-warm:   #F5F0EB;
  --color-bg-card:   #FFFFFF;
  --color-surface:   #EDE8E2;
  --color-stone:     #D4CCC3;
  --color-text:      #2C2825;
  --color-text-muted:#6B6560;
  --color-accent:    #9B8B7A;
  --color-accent-dk: #7A6B5D;
  --color-cta:       #3D3731;
  --color-cta-hover: #564E45;
  --color-white:     #FFFFFF;
  --color-border:    rgba(0,0,0,0.06);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', -apple-system, sans-serif;

  /* Spacing */
  --section-y:    clamp(80px, 10vw, 140px);
  --container:    min(1200px, 92vw);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration: 0.4s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}


/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.15;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.nav__logo-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-white);
  background: var(--color-cta);
  padding: 10px 24px;
  border-radius: 100px;
  transition: background var(--duration) var(--ease), transform 0.2s;
}

.nav__cta:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
}

/* Burger */
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  position: absolute;
  left: 0;
}

.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__burger span:nth-child(3) { bottom: 0; }

.nav__burger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.nav__burger.active span:nth-child(2) {
  opacity: 0;
}
.nav__burger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  padding: 100px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  pointer-events: none;
  overflow-y: auto;
}

.nav__mobile.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.nav__mobile-link {
  font-size: 20px;
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.nav__mobile-cta {
  margin-top: 32px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-cta);
  padding: 16px 32px;
  border-radius: 100px;
}


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 120px 0 80px;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 28px;
}

.hero__badge svg {
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.15);
}

.hero__title em {
  font-style: italic;
  color: #D4A76A;
}

.hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Trust bar */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__trust-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.hero__trust-stars {
  font-size: 14px;
  color: #D4A76A;
  letter-spacing: 2px;
}

.hero__trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.hero__trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* Hero dark-mode scoped overrides */
.hero .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.hero .btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-stone), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-cta);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-stone);
}

.btn--ghost:hover {
  background: var(--color-surface);
  border-color: var(--color-accent);
}

.btn--large {
  font-size: 16px;
  padding: 18px 40px;
}

.btn--full {
  width: 100%;
}

/* DM (Instagram) button variant */
.btn--dm {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-stone);
  font-size: 13px;
  gap: 8px;
}

.btn--dm svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.btn--dm:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--dm:hover svg {
  stroke: var(--color-white);
  transform: scale(1.1);
}

.btn--dm-subtle {
  border-color: transparent;
  color: var(--color-text-muted);
  font-weight: 500;
  padding: 10px 20px;
}

.btn--dm-subtle:hover {
  color: var(--color-white);
}

.btn--dm-contact {
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
}

@media (max-width: 480px) {
  .btn--dm {
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 12px;
    white-space: normal;
  }
}


/* ─── DM Nudge banner ─── */

.dm-nudge {
  margin-top: 48px;
}

.dm-nudge--centered {
  margin-top: 40px;
}

.dm-nudge__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--duration) var(--ease);
}

.dm-nudge__inner:hover {
  box-shadow: var(--shadow-sm);
}

.dm-nudge__icon {
  flex-shrink: 0;
  color: var(--color-accent);
}

.dm-nudge__inner p {
  flex: 1;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.dm-nudge__inner p strong {
  color: var(--color-text);
  font-weight: 600;
}

.dm-nudge--centered .dm-nudge__inner {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  border: 1px dashed var(--color-stone);
}


/* Offer CTA buttons pair */
.offer__cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* Contact DM divider */
.contact__dm-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 16px;
}

.contact__dm-divider::before,
.contact__dm-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.contact__dm-divider span {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.contact__dm-note {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 8px;
}


/* ═══════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════ */

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.65;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}


/* ═══════════════════════════════════════════
   PROBLEMS
   ═══════════════════════════════════════════ */

.problems {
  padding: var(--section-y) 0;
  background: var(--color-bg);
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.problem-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  border: 1px solid var(--color-border);
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

.problem-card:hover {
  border-color: var(--color-stone);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.problem-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--color-accent-dk);
}

.problem-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text);
}

.problem-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.problem-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-dk);
  transition: color 0.2s, gap 0.2s;
}

.problem-card__link:hover {
  color: var(--color-text);
}


/* ═══════════════════════════════════════════
   OFFER
   ═══════════════════════════════════════════ */

.offer {
  padding: var(--section-y) 0;
  background: var(--color-bg-warm);
}

.offer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.offer-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--color-border);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.offer-card__number {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 300;
  color: var(--color-surface);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--duration) var(--ease);
}

.offer-card:hover .offer-card__number {
  color: var(--color-stone);
}

.offer-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text);
}

.offer-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.offer-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-accent-dk);
  background: var(--color-surface);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

.offer__cta {
  text-align: center;
  margin-top: 48px;
}

.offer__cta p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}


/* ═══════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════ */

.process {
  padding: var(--section-y) 0;
  background: var(--color-bg);
}

.process__timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.process__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-stone), var(--color-surface));
  border-radius: 2px;
}

.process__step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 0 0 48px;
  position: relative;
}

.process__step:last-child {
  padding-bottom: 0;
}

.process__step-num {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-cta);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.process__step:hover .process__step-num {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(61, 55, 49, 0.08);
}

.process__step-content {
  padding-top: 12px;
}

.process__step-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.process__step-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   WHY
   ═══════════════════════════════════════════ */

.why {
  padding: var(--section-y) 0;
  background: var(--color-cta);
  color: var(--color-white);
}

.why .section-label {
  color: var(--color-stone);
}

.why .section-title {
  color: var(--color-white);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why__item {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--duration) var(--ease);
}

.why__item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.why__item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--color-stone);
}

.why__item h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why__item p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */

.faq {
  padding: var(--section-y) 0;
  background: var(--color-bg);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  color: var(--color-accent-dk);
}

.faq__toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-surface);
  position: relative;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.faq__toggle::before,
.faq__toggle::after {
  content: '';
  position: absolute;
  background: var(--color-accent-dk);
  border-radius: 1px;
}

.faq__toggle::before {
  width: 12px;
  height: 2px;
}

.faq__toggle::after {
  width: 2px;
  height: 12px;
  transition: transform 0.3s var(--ease);
}

.faq__item[open] .faq__toggle {
  background: var(--color-cta);
}

.faq__item[open] .faq__toggle::before,
.faq__item[open] .faq__toggle::after {
  background: var(--color-white);
}

.faq__item[open] .faq__toggle::after {
  transform: rotate(90deg);
}

.faq__answer {
  padding: 0 0 24px;
}

.faq__answer p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.faq__answer a {
  color: var(--color-accent-dk);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */

.contact {
  padding: var(--section-y) 0;
  background: var(--color-bg-warm);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail svg {
  margin-top: 2px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact__detail strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-text);
}

.contact__detail span,
.contact__detail a {
  font-size: 14px;
  color: var(--color-text-muted);
  display: block;
  line-height: 1.5;
}

.contact__detail a:hover {
  color: var(--color-accent-dk);
}

.contact__cta-box {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.contact__cta-box h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.contact__cta-box p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact__booksy-note {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--color-text-muted);
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  padding: 48px 0;
  background: var(--color-cta);
  color: rgba(255,255,255,0.5);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
}

.footer__tagline {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__copy {
  font-size: 12px;
}


/* ═══════════════════════════════════════════
   STICKY CTA (mobile only)
   ═══════════════════════════════════════════ */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

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


/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */

/* Only hide elements when JS has initialized the reveal system.
   Without this guard, cookie-consent blocking scripts leaves content invisible. */
.js-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Staggered children */
.problems__grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.problems__grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.problems__grid [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.problems__grid [data-reveal]:nth-child(5) { transition-delay: 0.32s; }

.offer__grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.offer__grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.offer__grid [data-reveal]:nth-child(4) { transition-delay: 0.24s; }

.why__grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.why__grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.why__grid [data-reveal]:nth-child(4) { transition-delay: 0.24s; }

.process__step[data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.process__step[data-reveal]:nth-child(3) { transition-delay: 0.24s; }
.process__step[data-reveal]:nth-child(4) { transition-delay: 0.36s; }


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .offer__grid {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: block;
  }

  .hero__content {
    padding: 100px 0 60px;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.50) 50%,
      rgba(0,0,0,0.70) 100%
    );
  }

  .hero__trust {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .hero__trust-divider {
    width: 40px;
    height: 1px;
  }

  .hero__scroll {
    display: none;
  }

  .problems__grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 32px 24px;
  }

  .process__timeline::before {
    left: 20px;
  }

  .process__step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 18px;
  }

  .process__step {
    gap: 20px;
  }

  .section-header {
    text-align: left;
  }

  .section-header .section-desc {
    margin-left: 0;
  }

  .contact__cta-box {
    padding: 36px 24px;
  }

  .footer__links {
    flex-direction: column;
    gap: 16px;
  }

  /* Show sticky CTA on mobile */
  .sticky-cta {
    display: block;
  }

  /* Offset footer for sticky CTA */
  .footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 32px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .offer-card__number {
    font-size: 48px;
  }

  .problem-card {
    padding: 28px 24px 24px;
  }
}


/* ═══════════════════════════════════════════
   ASTRA SCROLL-TO-TOP DISABLED
   ═══════════════════════════════════════════ */

#ast-scroll-top {
  display: none !important;
}


/* ═══════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════ */

@media print {
  .nav, .sticky-cta, .hero__scroll { display: none; }
  .hero { min-height: auto; }
  .hero__overlay { background: rgba(255,255,255,0.95); }
  [data-reveal] { opacity: 1; transform: none; }
}
