/* ============================================
   Elena Kuklina — Permanent Makeup Landing
   Premium palette & typography
   ============================================ */

:root {
  --color-cream: #FAF7F4;
  --color-beige: #F0E8E0;
  --color-powder: #E8D5CE;
  --color-nude: #C9B5A8;
  --color-rose: #D4A5A5;
  --color-accent: #8B3A4A;
  --color-accent-hover: #6E2D3A;
  --color-accent-light: #A84D5E;
  --color-terracotta: #C17B6B;
  --color-text: #3D2E2A;
  --color-text-muted: #7A6B65;
  --color-white: #FFFFFF;
  --color-dark: #2A1F1C;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-soft: 0 4px 24px rgba(61, 46, 42, 0.06);
  --shadow-medium: 0 8px 40px rgba(61, 46, 42, 0.1);
  --shadow-accent: 0 8px 32px rgba(139, 58, 74, 0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
  --sticky-bar-height: 72px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-cream);
  overflow-x: hidden;
  padding-bottom: 0;
}

body.has-sticky-bar {
  padding-bottom: var(--sticky-bar-height);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 560px;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  section { padding: 6.5rem 0; }
  .container { padding: 0 2rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9375rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139, 58, 74, 0.35);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-max {
  background: var(--color-white);
  color: var(--color-dark);
  border: 2px solid rgba(91, 127, 255, 0.22);
  box-shadow: 0 4px 20px rgba(91, 127, 255, 0.12);
}

.btn-max:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 127, 255, 0.4);
  box-shadow: 0 8px 28px rgba(91, 127, 255, 0.22);
}

.btn-max__logo {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 5px;
  flex-shrink: 0;
  object-fit: cover;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Phone copy hint */
.phone-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.phone-hint__number {
  font-weight: 600;
  color: var(--color-text);
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(139, 58, 74, 0.08);
  border-radius: 100px;
  transition: all var(--transition);
}

.copy-btn:hover {
  background: rgba(139, 58, 74, 0.15);
}

.copy-btn.copied {
  background: rgba(76, 175, 80, 0.15);
  color: #2E7D32;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 181, 168, 0.3);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-dark);
}

.header__logo span {
  color: var(--color-accent);
}

.header__actions {
  display: none;
  gap: 0.625rem;
}

.header__actions .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .header__actions { display: flex; }
}

/* Hero */
.hero {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  background: linear-gradient(165deg, var(--color-cream) 0%, var(--color-beige) 50%, var(--color-powder) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(212, 165, 165, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title {
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__cta {
  margin-bottom: 2rem;
}

.hero__cta .btn-group {
  margin-bottom: 0.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 181, 168, 0.5);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.hero__image-wrap {
  position: relative;
}

.hero__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.hero__image-accent {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 40%;
  height: 40%;
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

.hero__floating-card {
  position: absolute;
  bottom: 1.5rem;
  left: -0.5rem;
  background: var(--color-white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  max-width: 220px;
}

@media (min-width: 768px) {
  .hero__floating-card {
    left: -2rem;
    bottom: 2rem;
  }
}

.hero__floating-card p {
  font-size: 0.875rem;
  font-weight: 500;
}

.hero__floating-card span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Problem / Solution */
.problem-solution {
  background: var(--color-white);
}

.problem-solution__grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .problem-solution__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.pain-list, .solution-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-item, .solution-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  transition: transform var(--transition);
}

.pain-item {
  background: rgba(139, 58, 74, 0.04);
  border-left: 3px solid var(--color-rose);
}

.solution-item {
  background: rgba(76, 175, 80, 0.06);
  border-left: 3px solid #81C784;
}

.pain-item__icon, .solution-item__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.875rem;
}

.pain-item__icon {
  background: rgba(139, 58, 74, 0.1);
  color: var(--color-accent);
}

.solution-item__icon {
  background: rgba(76, 175, 80, 0.15);
  color: #388E3C;
}

.pain-item__text, .solution-item__text {
  font-size: 0.9375rem;
}

.pain-item__text strong, .solution-item__text strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-dark);
}

/* Services */
.services {
  background: linear-gradient(180deg, var(--color-beige) 0%, var(--color-cream) 100%);
}

.services__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.service-card__image {
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__title {
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.service-card__result {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  background: rgba(139, 58, 74, 0.06);
  border-radius: var(--radius-sm);
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--color-beige);
}

.service-card__price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-dark);
}

.service-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: color var(--transition);
}

.service-card__link:hover {
  color: var(--color-accent-hover);
}

/* Pricing & Promo */
.pricing-block {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .pricing-block {
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: stretch;
  }
}

.pricing-block__prices {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-soft);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-beige);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row__name {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.price-row__value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-dark);
}

.promo-card {
  background: linear-gradient(135deg, var(--color-accent) 0%, #A84D5E 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-accent);
  display: flex;
  flex-direction: column;
}

.promo-card__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.promo-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.promo-card__lead {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.promo-card__list {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.promo-card__list li {
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.promo-card__list li:last-child {
  border-bottom: none;
}

.promo-card__old {
  text-decoration: line-through;
  opacity: 0.65;
  font-size: 0.875rem;
  margin-left: 0.25rem;
}

.promo-card__btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Why Elena */
.why {
  background: var(--color-white);
}

.why__grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .why__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-cream);
  transition: transform var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.why-card__title {
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
}

.why-card__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* About */
.about {
  background: linear-gradient(135deg, var(--color-powder) 0%, var(--color-beige) 100%);
}

.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.about__image-wrap {
  position: relative;
}

.about__photos {
  position: relative;
  min-height: 420px;
}

.about__image {
  border-radius: var(--radius-xl);
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-medium);
}

.about__image--primary {
  aspect-ratio: 3/4;
  max-width: 78%;
  position: relative;
  z-index: 1;
}

.about__image--secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  aspect-ratio: 4/5;
  z-index: 2;
  border: 4px solid var(--color-cream);
  box-shadow: var(--shadow-medium);
}

@media (max-width: 767px) {
  .about__photos {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .about__image--primary {
    max-width: 100%;
  }

  .about__image--secondary {
    position: static;
    width: 100%;
    border: none;
  }
}

.about__experience {
  position: absolute;
  top: 1.5rem;
  right: -0.5rem;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-accent);
}

@media (min-width: 768px) {
  .about__experience { right: -1.5rem; }
}

.about__experience-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.about__experience-label {
  font-size: 0.75rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.about__text p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.about__text p:first-of-type {
  font-size: 1.125rem;
  color: var(--color-text);
}

.about__certificates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about__cert {
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* Portfolio */
.portfolio {
  background: var(--color-cream);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.portfolio__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio__item--ba {
  aspect-ratio: 3/4;
}

.portfolio__item--ba img {
  object-fit: contain;
  background: var(--color-beige);
}

.portfolio__item--wide {
  aspect-ratio: 4/3;
}

@media (min-width: 768px) {
  .portfolio__item--wide {
    grid-column: span 2;
  }
}

.portfolio__item:hover img {
  transform: scale(1.05);
}

.portfolio__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(42, 31, 28, 0.7));
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.portfolio__item:hover .portfolio__label {
  transform: translateY(0);
}

/* Reviews */
.reviews {
  background: var(--color-white);
}

.reviews__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  padding: 1.75rem;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card__stars {
  color: #F5A623;
  font-size: 0.875rem;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  flex: 1;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-beige);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.review-card__service {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Process */
.process {
  background: linear-gradient(180deg, var(--color-beige) 0%, var(--color-cream) 100%);
}

.process__steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.process-step {
  position: relative;
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 50%;
}

.process-step__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step__text {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* FAQ */
.faq {
  background: var(--color-white);
}

.faq__list {
  max-width: 720px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-beige);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--color-accent);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-beige);
  font-size: 1.125rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  color: var(--color-white);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-item__answer p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta .section-label {
  color: rgba(255,255,255,0.7);
}

.final-cta .section-title {
  color: var(--color-white);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .section-subtitle {
  color: rgba(255,255,255,0.85);
  margin: 0 auto 2.5rem;
}

.final-cta .btn-primary {
  background: var(--color-white);
  color: var(--color-accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.final-cta .btn-primary:hover {
  background: var(--color-cream);
}

.final-cta .btn-max {
  background: var(--color-white);
  color: var(--color-dark);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.final-cta .btn-max:hover {
  background: var(--color-cream);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.final-cta .phone-hint {
  justify-content: center;
  color: rgba(255,255,255,0.75);
}

.final-cta .phone-hint__number {
  color: var(--color-white);
}

.final-cta .copy-btn {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
}

.final-cta__guarantee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.final-cta__guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
  text-align: center;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.footer__phone {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1rem;
  display: inline-block;
  transition: color var(--transition);
}

.footer__phone:hover {
  color: var(--color-rose);
}

.footer__copy {
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* Sticky Mobile Bar */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--sticky-bar-height);
  background: var(--color-white);
  border-top: 1px solid var(--color-beige);
  box-shadow: 0 -4px 24px rgba(61, 46, 42, 0.1);
  padding: 0.625rem 1rem;
}

.sticky-bar__inner {
  display: flex;
  gap: 0.625rem;
  height: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-bar .btn {
  flex: 1;
  padding: 0.75rem 0.5rem;
  font-size: 0.8125rem;
}

@media (max-width: 767px) {
  .sticky-bar {
    display: block;
  }

  body.has-sticky-bar {
    padding-bottom: var(--sticky-bar-height);
  }

  .sticky-bar__max {
    animation: sticky-max-glow 2.8s ease-in-out infinite;
  }

  .sticky-bar__max .btn-max__logo {
    animation: sticky-logo-pulse 2.8s ease-in-out infinite;
  }

  .sticky-bar__call {
    animation: sticky-phone-glow 2.8s ease-in-out infinite;
  }
}

@keyframes sticky-max-glow {
  0%, 100% {
    box-shadow: 0 2px 12px rgba(91, 127, 255, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 20px rgba(91, 127, 255, 0.4);
    transform: scale(1.015);
  }
}

@keyframes sticky-logo-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@keyframes sticky-phone-glow {
  0%, 100% {
    box-shadow: 0 2px 12px rgba(139, 58, 74, 0.25);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(139, 58, 74, 0.12), 0 4px 18px rgba(139, 58, 74, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-bar__max,
  .sticky-bar__max .btn-max__logo,
  .sticky-bar__call {
    animation: none;
  }
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Toast notification */
.toast {
  position: fixed;
  bottom: calc(var(--sticky-bar-height) + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-dark);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 300;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (min-width: 768px) {
  .toast {
    bottom: 2rem;
  }
}

/* Section header center variant */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 0;
}

.section-header .section-subtitle {
  margin: 0 auto;
}
