/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --color-primary:       #e63946;
  --color-primary-dark:  #c1121f;
  --color-primary-light: rgba(230, 57, 70, 0.1);
  --color-warn:          #f59e0b;

  --color-bg:            #ffffff;
  --color-surface:       #f8f9fa;
  --color-surface-dark:  #0f0f1a;
  --color-border:        #e5e7eb;
  --color-text:          #111827;
  --color-text-muted:    #6b7280;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;

  --container-max: 520px;
  --container-px:  16px;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-full: 9999px;

  --shadow-btn:  0 6px 20px rgb(0 0 0 / 0.3);
  --shadow-card: 0 2px 10px rgb(0 0 0 / 0.08);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes pulse-cta {
  0%, 100% {
    box-shadow: 0 6px 20px rgb(230 57 70 / 0.55),
                0 0 0 0 rgb(230 57 70 / 0.35);
  }
  50% {
    box-shadow: 0 8px 28px rgb(230 57 70 / 0.75),
                0 0 0 10px rgb(230 57 70 / 0);
  }
}

@keyframes flash-badge {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

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

/* =============================================
   PAGE SHELL
   ============================================= */
#app {
  background-color: var(--color-bg);
  max-width: var(--container-max);
  margin-inline: auto;
  min-height: 100vh;
  overflow: hidden;
}

/* =============================================
   LAYOUT
   ============================================= */
.lp-container {
  width: 100%;
  padding-inline: var(--container-px);
}

.block { padding-block: var(--sp-8); }
.block--surface { background-color: var(--color-surface); }
.block--dark    { background-color: var(--color-surface-dark); color: #fff; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0 var(--sp-6);
  height: 58px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background-color 0.15s, transform 0.1s;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background-color: var(--color-primary);
  color: #fff;
  animation: pulse-cta 2.5s ease-in-out infinite;
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 8px 28px rgb(230 57 70 / 0.6);
}

.btn--primary:active { transform: translateY(0); }

.btn__arrow {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s;
  letter-spacing: 0;
  text-transform: none;
}

.btn--primary:hover .btn__arrow { transform: translateX(3px); }

.btn--full  { width: 100%; }
.btn--lg    { height: 62px; font-size: 17px; }
.btn:disabled { opacity: 0.65; cursor: not-allowed; animation: none; transform: none; }

/* =============================================
   PRICE DISPLAY
   ============================================= */
.price-display {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-block: var(--sp-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-border);
  background: #fff;
}

.price-display__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.price-display__row--old {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.price-display__row--main {
  background: #fff;
  padding-block: 14px;
}

.price-display__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.price-display__label--main {
  color: var(--color-primary);
}

.price-display__old {
  font-size: 20px;
  font-weight: 600;
  color: #9ca3af;
  text-decoration: line-through;
}

.price-display__new {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.05em;
  line-height: 1;
}

/* Price in the hero gets a white shadow box */
.block-hero .price-display {
  border: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

/* =============================================
   BLOCK — HERO
   ============================================= */
.block-hero {
  text-align: center;
  padding-top: var(--sp-10);
  padding-bottom: var(--sp-8);
  background: linear-gradient(160deg, #8b0000 0%, #c0000f 45%, var(--color-primary) 100%);
  color: #fff;
  position: relative;
}

.block-hero::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #e63946, #f59e0b);
}

.block-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-3);
  animation: flash-badge 2s ease-in-out infinite;
}

.block-hero__badge::before { content: '🔥'; }

.block-hero__title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: var(--sp-2);
}

.block-hero__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--sp-5);
  font-weight: 500;
}

.block-hero__image-wrap {
  margin-block: var(--sp-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.block-hero__image {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.block-hero__img-placeholder {
  height: 190px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-block: var(--sp-4);
  border: 2px dashed rgba(255, 255, 255, 0.2);
}

/* =============================================
   BLOCK — COUNTDOWN
   ============================================= */
.block-countdown {
  padding-block: var(--sp-6);
  text-align: center;
  background: var(--color-surface-dark);
}

.block-countdown__label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-warn);
  margin-bottom: var(--sp-3);
}

.countdown-timer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--sp-2);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}

.countdown-unit__val {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 10px 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  font-size: 30px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: #fff;
  letter-spacing: -0.02em;
}

.countdown-unit__label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.countdown-sep {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-warn);
  padding-bottom: 20px;
  line-height: 1;
}

/* =============================================
   BLOCK — FEATURES LIST
   ============================================= */
.block-features {
  padding-block: var(--sp-8);
  background: #fff;
}

.block-features__title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.block-features__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.block-features__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-card);
}

.block-features__icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.4;
}

.block-features__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

/* =============================================
   BLOCK — CTA
   ============================================= */
.block-cta {
  padding-block: var(--sp-6);
  text-align: center;
  background: linear-gradient(180deg, #fff5f5 0%, #ffe8e8 100%);
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
}

.block-cta .lp-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.block-cta__subtext {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   BLOCK — PAIN-SOLUTION
   ============================================= */
.block-pain-solution {
  padding-block: var(--sp-8);
  border-top: 1px solid var(--color-border);
}

.block-pain-solution:nth-child(odd) {
  background: var(--color-surface);
}

.block-pain-solution__question {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: var(--sp-3);
  color: var(--color-text);
  padding-left: var(--sp-4);
  position: relative;
}

.block-pain-solution__question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.block-pain-solution__answer {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-muted);
  padding-left: var(--sp-4);
}

.block-pain-solution__image-wrap {
  margin-top: var(--sp-4);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* =============================================
   BLOCK — BENEFITS GRID
   ============================================= */
.block-benefits {
  padding-block: var(--sp-8);
  background: var(--color-surface-dark);
  color: #fff;
}

.block-benefits__title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-5);
  color: #fff;
}

.block-benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.benefit-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
}

.benefit-card__number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.04em;
}

.benefit-card__title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.benefit-card__text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* =============================================
   BLOCK — TEXT SECTION
   ============================================= */
.block-text {
  padding-block: var(--sp-8);
  border-top: 1px solid var(--color-border);
}

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

.block-text__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.block-text__body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* =============================================
   BLOCK — IMAGE SECTION
   ============================================= */
.block-image { padding-block: var(--sp-4); }

.block-image__wrap { border-radius: var(--radius-md); overflow: hidden; }

.block-image__img { width: 100%; object-fit: cover; }

.block-image__caption {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--sp-2);
}

.block-image__placeholder {
  min-height: 220px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 2px dashed var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4);
}

.block-image__placeholder-icon {
  font-size: 36px;
  opacity: 0.25;
}

.block-image__placeholder-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.4;
}

/* =============================================
   BLOCK — VIDEO SECTION
   ============================================= */
.block-video { padding-block: var(--sp-8); background: var(--color-surface-dark); }

.block-video__title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  color: #fff;
}

.block-video__embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.block-video__embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.block-video__placeholder {
  height: 190px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}

.block-video__placeholder-icon { font-size: 44px; opacity: 0.3; }
.block-video__placeholder-label { font-size: 13px; color: rgba(255, 255, 255, 0.35); }

/* =============================================
   BLOCK — SPECS LIST
   ============================================= */
.block-specs {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.block-specs__title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: var(--sp-4);
}

.block-specs__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.block-specs__item {
  padding: var(--sp-3) var(--sp-4);
  background: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  border: 1px solid var(--color-border);
}

.block-specs__item::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

/* =============================================
   BLOCK — TESTIMONIALS
   ============================================= */
.block-testimonials {
  padding-block: var(--sp-8);
  background: #fff;
}

.block-testimonials__title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}

.block-testimonials__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-warn);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 48px;
  line-height: 1;
  color: var(--color-border);
  font-family: Georgia, serif;
}

.testimonial-card__stars {
  color: var(--color-warn);
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: var(--sp-2);
}

.testimonial-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: var(--sp-3);
  font-weight: 500;
}

.testimonial-card__author {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   BLOCK — PROCESS STEPS
   ============================================= */
.block-steps {
  padding-block: var(--sp-8);
  background: var(--color-surface);
}

.block-steps__title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}

.block-steps__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.step-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 2px 8px rgb(230 57 70 / 0.2);
}

.step-item__title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.step-item__text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* =============================================
   BLOCK — FORM
   ============================================= */
.block-form {
  padding-block: var(--sp-8);
  background: var(--color-surface-dark);
  color: #fff;
}

.block-form__title {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  margin-bottom: var(--sp-1);
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: uppercase;
}

.block-form__subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin-bottom: var(--sp-5);
  line-height: 1.5;
}

.block-form__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.form-field { position: relative; }

.form-input {
  width: 100%;
  height: 54px;
  padding: 0 var(--sp-4);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: border-color 0.15s, background 0.15s;
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(255, 255, 255, 0.4); }

.form-input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.12);
}

.form-input.is-error { border-color: #ef4444; }

.form-error-msg {
  font-size: 11px;
  color: #f87171;
  margin-top: 3px;
  padding-left: 2px;
}

.block-form__note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: var(--sp-3);
  line-height: 1.5;
}

.block-form__success {
  text-align: center;
  padding-block: var(--sp-12);
}

.block-form__success-icon { font-size: 52px; margin-bottom: var(--sp-4); }

.block-form__success h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: var(--sp-2);
  color: #fff;
  text-transform: uppercase;
}

.block-form__success p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

/* =============================================
   BLOCK — CALLBACK CTA
   ============================================= */
.block-callback {
  padding-block: var(--sp-8);
  background: #fff;
  border-top: 1px solid var(--color-border);
}

.block-callback__card {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  border: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fff5f5 0%, #ffe8e8 100%);
  box-shadow: 0 4px 20px rgb(230 57 70 / 0.15);
}

.block-callback__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.block-callback__sub {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-4);
}

/* =============================================
   BLOCK — CONTACT INFO
   ============================================= */
.block-contact {
  padding-block: var(--sp-8);
  background: var(--color-surface-dark);
  color: #fff;
}

.block-contact__title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.block-contact__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.block-contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.block-contact__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.block-contact__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}

.block-contact__label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

.block-contact__value {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

.block-contact__value--link {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.15s;
}

.block-contact__value--link:hover {
  opacity: 0.8;
}

.block-contact__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--sp-4);
}

.block-contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  justify-content: center;
}

.block-contact__link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.15s;
  letter-spacing: 0.02em;
}

.block-contact__link:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* =============================================
   DESKTOP — center the mobile shell
   ============================================= */
@media (min-width: 540px) {
  body { padding-block: var(--sp-8); }

  #app {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 60px rgb(0 0 0 / 0.5);
  }

  .countdown-unit__val {
    min-width: 64px;
    font-size: 34px;
  }
}
