/* ============================================
   LASH MAMA — LANDING PAGE STYLES
   Chanel-style: нежный розовый + золото, утончённый премиум
   Mobile-first approach
   ============================================ */

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

:root {
  /* Colors — Chanel-style: нежный розовый + золото */
  --c-bg:        #FDF5F7;
  --c-bg-alt:    #F8E8EC;
  --c-bg-warm:   #F9E4EA;
  --c-surface:   #FFFFFF;
  --c-text:      #4A2533;
  --c-text-soft: #7A4D5E;
  --c-text-muted:#A8879A;
  --c-accent:    #D4919E;
  --c-accent-hover: #C47A88;
  --c-accent-light: #F5D5DB;
  --c-gold:      #B8860B;
  --c-gold-light:#F0E2C0;
  --c-rose:      #D4919E;
  --c-rose-light:#F8E8EC;
  --c-border:    #F0D8DE;
  --c-shadow:    rgba(74, 37, 51, 0.08);

  /* Typography */
  --f-heading: 'Cormorant Garamond', 'Georgia', serif;
  --f-body:    'Nunito Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --s-xs:  0.5rem;
  --s-sm:  1rem;
  --s-md:  1.5rem;
  --s-lg:  2.5rem;
  --s-xl:  4rem;
  --s-2xl: 6rem;

  /* Radius */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full:9999px;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.5s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover {
  color: var(--c-accent-hover);
}

ul { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

strong { font-weight: 600; }
em { font-style: italic; color: var(--c-accent); }

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  margin-bottom: var(--s-xl);
}
.section-header--left {
  text-align: left;
}
.section-header__label {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  margin-bottom: var(--s-xs);
}
.section-header__title {
  margin-bottom: var(--s-sm);
}
.section-header__desc {
  font-size: 1.05rem;
  color: var(--c-text-soft);
  max-width: 600px;
  margin: 0 auto;
}
.section-header--left .section-header__desc {
  margin: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.btn--primary:hover {
  background: var(--c-accent-hover);
  border-color: var(--c-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 145, 158, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.btn--outline:hover {
  background: var(--c-accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1rem;
}

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

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: background var(--t-base);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
}
.header__logo-icon {
  color: var(--c-accent);
  font-size: 1.2rem;
}

.header__nav {
  display: none;
  gap: 28px;
}

.header__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-soft);
  text-decoration: none;
  transition: color var(--t-fast);
}
.header__link:hover {
  color: var(--c-accent);
}

.header__cta {
  display: none;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--c-accent);
  color: #fff;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: all var(--t-base);
}
.header__cta:hover {
  background: var(--c-accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--t-base);
}
.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.header__nav.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-bg);
  padding: var(--s-lg) 20px;
  gap: 24px;
  z-index: 999;
}
.header__nav.active .header__link {
  font-size: 1.2rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 120px 0 60px;
  background: linear-gradient(160deg, var(--c-bg) 0%, var(--c-bg-warm) 50%, var(--c-rose-light) 100%);
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 70% 40%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
  align-items: center;
}

.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  color: var(--c-text-soft);
  margin-bottom: var(--s-sm);
}

.hero__title {
  margin-bottom: var(--s-md);
  max-width: 600px;
}
.hero__title em {
  display: inline;
  font-style: normal;
  color: var(--c-accent);
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--c-accent-light);
  border-radius: 4px;
  z-index: -1;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--c-text-soft);
  max-width: 520px;
  margin-bottom: var(--s-lg);
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 400px;
  margin-bottom: var(--s-lg);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__trust-item {
  text-align: center;
}
.hero__trust-number {
  display: block;
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-text);
}
.hero__trust-label {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}
.hero__trust-divider {
  width: 1px;
  height: 36px;
  background: var(--c-border);
}

.hero__image {
  width: 100%;
  max-width: 420px;
}
.hero__image-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.hero__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-accent-light), var(--c-rose-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-heading);
  font-size: 1.2rem;
  color: var(--c-text-soft);
  text-align: center;
  line-height: 1.4;
}
.hero__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--c-gold-light);
  border-radius: 50%;
  z-index: -1;
}

.hero__scroll-hint {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: var(--s-xl);
  color: var(--c-text-muted);
  font-size: 0.8rem;
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- ADVANTAGES ---------- */
.advantages {
  padding: var(--s-xl) 0;
  background: var(--c-surface);
}

.advantages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.advantage-card {
  padding: var(--s-md);
  background: var(--c-bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--c-shadow);
}
.advantage-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent-light);
  border-radius: var(--r-md);
  color: var(--c-accent);
  margin-bottom: var(--s-sm);
}
.advantage-card__title {
  margin-bottom: var(--s-xs);
}
.advantage-card__text {
  font-size: 0.9rem;
  color: var(--c-text-soft);
}

/* ---------- PROGRAM ---------- */
.program {
  padding: var(--s-2xl) 0;
  background: var(--c-bg);
}

.program__timeline {
  position: relative;
  padding-left: 40px;
  max-width: 700px;
  margin: 0 auto;
}
.program__timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-border);
}

.program__day {
  position: relative;
  margin-bottom: var(--s-xl);
}
.program__day:last-child { margin-bottom: 0; }

.program__day-marker {
  position: absolute;
  left: -40px;
  top: 0;
  width: 38px;
  height: 38px;
  background: var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.program__day-number {
  font-family: var(--f-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.program__day-content {
  background: var(--c-surface);
  padding: var(--s-md);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
}
.program__day-title {
  margin-bottom: var(--s-sm);
  color: var(--c-accent);
}
.program__day-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--c-text-soft);
}
.program__day-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-weight: 700;
}

.program__cta {
  text-align: center;
  margin-top: var(--s-xl);
}

/* ---------- PORTFOLIO ---------- */
.portfolio {
  padding: var(--s-2xl) 0;
  background: var(--c-surface);
}

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

.portfolio__item {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-base);
}
.portfolio__item:hover {
  transform: scale(1.03);
}
.portfolio__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-accent-light) 0%, var(--c-rose-light) 50%, var(--c-gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--f-heading);
  color: var(--c-text-soft);
  font-size: 0.9rem;
}
.portfolio__placeholder small {
  display: block;
  font-family: var(--f-body);
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin-top: 4px;
}

/* ---------- PRICING ---------- */
.pricing {
  padding: var(--s-2xl) 0;
  background: var(--c-bg);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing__card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--s-lg);
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--c-shadow);
}

.pricing__card--featured {
  border-color: var(--c-accent);
  border-width: 2px;
  background: linear-gradient(180deg, #FFF 0%, var(--c-bg-warm) 100%);
}
.pricing__card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.pricing__card-header {
  margin-bottom: var(--s-md);
}
.pricing__card-title {
  font-family: var(--f-heading);
  font-size: 1.5rem;
}
.pricing__card-subtitle {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-top: 4px;
}

.pricing__card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--s-md);
}
.pricing__card-amount {
  font-family: var(--f-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
}
.pricing__card-currency {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  color: var(--c-text-soft);
}

.pricing__card-features {
  margin-bottom: var(--s-lg);
}
.pricing__card-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--c-text-soft);
}
.pricing__card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-weight: 700;
  font-size: 1rem;
}

.pricing__note {
  text-align: center;
  margin-top: var(--s-lg);
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

/* ---------- ABOUT ---------- */
.about {
  padding: var(--s-2xl) 0;
  background: var(--c-surface);
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-xl);
  align-items: center;
}

.about__image {
  width: 100%;
  max-width: 380px;
}
.about__image-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-rose-light), var(--c-accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-heading);
  font-size: 1.2rem;
  color: var(--c-text-soft);
  text-align: center;
}

.about__text p {
  margin-bottom: var(--s-sm);
  color: var(--c-text-soft);
}
.about__text p:last-child { margin-bottom: 0; }
.about__text strong {
  color: var(--c-text);
}

.about__stats {
  display: flex;
  gap: var(--s-lg);
  margin-top: var(--s-lg);
  padding-top: var(--s-lg);
  border-top: 1px solid var(--c-border);
}
.about__stat {
  text-align: center;
}
.about__stat-number {
  display: block;
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-accent);
}
.about__stat-label {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.about__social {
  display: flex;
  gap: 16px;
  margin-top: var(--s-md);
}
.about__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-soft);
  transition: all var(--t-base);
}
.about__social-link:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

/* ---------- REVIEWS ---------- */
.reviews {
  padding: var(--s-2xl) 0;
  background: var(--c-bg-warm);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  background: var(--c-surface);
  padding: var(--s-md);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
}
.review-card__stars {
  color: var(--c-gold);
  font-size: 1rem;
  margin-bottom: var(--s-sm);
  letter-spacing: 2px;
}
.review-card__text {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  margin-bottom: var(--s-md);
  line-height: 1.7;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--c-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-accent);
}
.review-card__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}
.review-card__meta {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

/* ---------- INCOME CALCULATOR ---------- */
.income {
  padding: var(--s-2xl) 0;
  background: var(--c-surface);
}

.income__calc {
  max-width: 500px;
  margin: 0 auto;
  background: var(--c-bg);
  padding: var(--s-lg);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
}

.income__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--s-md);
}
.income__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-soft);
}
.income__slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.income__slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--c-border);
  border-radius: 3px;
  outline: none;
}
.income__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--c-accent);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(212, 145, 158, 0.4);
}
.income__slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--c-accent);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(212, 145, 158, 0.4);
}
.income__value {
  min-width: 50px;
  text-align: right;
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-text);
}

.income__result {
  background: var(--c-accent);
  color: #fff;
  padding: var(--s-md);
  border-radius: var(--r-lg);
  text-align: center;
  margin-top: var(--s-md);
}
.income__result-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  opacity: 0.9;
}
.income__result-amount {
  font-family: var(--f-heading);
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
}

.income__footnote {
  text-align: center;
  margin-top: var(--s-sm);
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

/* ---------- FAQ ---------- */
.faq {
  padding: var(--s-2xl) 0;
  background: var(--c-bg);
}

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

.faq__item {
  border-bottom: 1px solid var(--c-border);
}
.faq__item:first-child {
  border-top: 1px solid var(--c-border);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--f-heading);
  font-size: 1.15rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--c-text);
  transition: color var(--t-fast);
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { content: ''; }

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

.faq__icon {
  font-size: 1.4rem;
  color: var(--c-accent);
  transition: transform var(--t-base);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 0 20px;
}
.faq__answer p {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.7;
}
.faq__answer a {
  color: var(--c-accent);
  font-weight: 500;
}

/* ---------- SIGNUP ---------- */
.signup {
  padding: var(--s-2xl) 0;
  background: linear-gradient(160deg, var(--c-bg-warm) 0%, var(--c-rose-light) 100%);
}

.signup__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-xl);
}

.signup__text {
  font-size: 1rem;
  color: var(--c-text-soft);
  margin-bottom: var(--s-md);
}

.signup__messengers-label {
  display: block;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}
.signup__messengers-links {
  display: flex;
  gap: 12px;
}
.signup__messenger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-soft);
  transition: all var(--t-base);
}
.signup__messenger:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.signup__form-wrap {
  background: var(--c-surface);
  padding: var(--s-lg);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
}
.signup__form-group {
  margin-bottom: var(--s-md);
}
.signup__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
}
.signup__input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--t-fast);
}
.signup__input:focus {
  border-color: var(--c-accent);
}
.signup__input::placeholder {
  color: var(--c-text-muted);
}

.signup__submit {
  margin-top: var(--s-xs);
}

.signup__privacy {
  margin-top: var(--s-sm);
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-align: center;
}
.signup__privacy a {
  color: var(--c-text-muted);
  text-decoration: underline;
}

.signup__success {
  text-align: center;
  padding: var(--s-xl) var(--s-md);
}
.signup__success-icon {
  width: 64px;
  height: 64px;
  background: var(--c-accent-light);
  color: var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--s-md);
}
.signup__success-title {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  margin-bottom: var(--s-xs);
}
.signup__success-text {
  color: var(--c-text-soft);
}

/* ---------- URGENCY ---------- */
.urgency {
  padding: var(--s-lg) 0;
  background: var(--c-text);
}
.urgency__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-md);
}
.urgency__icon {
  font-size: 2rem;
}
.urgency__title {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  color: #fff;
}
.urgency__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
}
.urgency .btn--primary {
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.urgency .btn--primary:hover {
  background: #b8963f;
  border-color: #b8963f;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: var(--s-xl) 0 var(--s-md);
  background: var(--c-text);
  color: rgba(255,255,255,0.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
  margin-bottom: var(--s-lg);
}
.footer__logo {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__logo .header__logo-icon {
  color: var(--c-accent);
}
.footer__desc {
  margin-top: var(--s-xs);
  font-size: 0.9rem;
}
.footer__heading {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: var(--s-sm);
}
.footer__contacts p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer__contacts a,
.footer__nav a {
  color: rgba(255,255,255,0.7);
  transition: color var(--t-fast);
}
.footer__contacts a:hover,
.footer__nav a:hover {
  color: var(--c-accent);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__nav a { font-size: 0.9rem; }

.footer__bottom {
  padding-top: var(--s-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
}

/* ---------- GRADUATES ---------- */
.graduates {
  padding: var(--s-2xl) 0;
  background: var(--c-bg);
}
.graduates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.graduates__item {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--c-accent-light);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.graduates__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--c-shadow);
}
.graduates__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fix portfolio images */
.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio__item picture {
  width: 100%;
  height: 100%;
  display: block;
}

/* Fix hero & about images */
.hero__image-frame img,
.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image-frame picture,
.about__image-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox[hidden] { display: none; }
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
.lightbox__img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--r-md);
}
.lightbox__caption {
  color: #fff;
  margin-top: var(--s-sm);
  font-family: var(--f-heading);
  font-size: 1.1rem;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (min-width: 640px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .graduates__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* =========================================
   RESPONSIVE — DESKTOP
   ========================================= */
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .header__nav {
    display: flex;
  }
  .header__cta {
    display: inline-flex;
  }
  .header__burger {
    display: none;
  }

  .hero {
    padding: 160px 0 100px;
  }
  .hero__inner {
    flex-direction: row;
    gap: var(--s-xl);
  }
  .hero__content {
    flex: 1;
  }
  .hero__image {
    flex: 0 0 420px;
  }
  .hero__cta-group {
    flex-direction: row;
    max-width: none;
  }
  .hero__scroll-hint {
    display: flex;
  }

  .advantages__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__inner {
    flex-direction: row;
    gap: var(--s-2xl);
  }
  .about__image {
    flex: 0 0 380px;
  }
  .about__content {
    flex: 1;
  }

  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .graduates__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .signup__inner {
    flex-direction: row;
    align-items: flex-start;
  }
  .signup__content {
    flex: 1;
  }
  .signup__form-wrap {
    flex: 0 0 420px;
  }

  .urgency__inner {
    flex-direction: row;
    text-align: left;
  }
  .urgency__content {
    flex: 1;
  }
}
