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

  :root {
    --gold: #C9A96E;
    --gold-light: #E8D5AA;
    --gold-dim: rgba(201,169,110,0.15);
    --dark: #0E0E0E;
    --dark2: #161616;
    --dark3: #1E1E1E;
    --dark4: #272727;
    --muted: #6B6B6B;
    --light: #9B9B9B;
    --white: #F5F3EE;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 48px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 0.5px solid rgba(201,169,110,0.15);
    background: rgba(14,14,14,0.92);
    backdrop-filter: blur(12px);
  }
  .nav-logo {
    font-size: 1.125rem; color: var(--gold); letter-spacing: 0.02em;
    text-decoration: none;
  }
  .nav-phone {
    font-size: 1rem; color: var(--white);
    text-decoration: none;
    -webkit-text-decoration: none;
    transition: color 0.2s;
  }
  .nav-phone:hover { color: var(--gold); }
  a[href^="tel"] {
    color: inherit;
    text-decoration: none;
    -webkit-text-decoration: none;
  }
  .nav-cta {
    font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--dark);
    background: var(--gold); border: none;
    padding: 10px 24px; cursor: pointer;
    transition: opacity 0.2s;
  }
  .nav-cta:hover { opacity: 0.85; }

  /* HERO */
  .hero {
    min-height: 100vh;
    padding: 140px 48px 80px;
    display: flex; flex-direction: row; justify-content: space-between; align-items: center;
    position: relative; overflow: hidden; gap: 48px;
  }
  .hero-content { flex: 1; min-width: 0; }
  .hero-image {
    position: absolute;
    right: 0;
    top: 20%;
    width: 45%;
    max-width: 500px;
    opacity: 0.85;
    pointer-events: none;
  }
  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  @media (max-width: 1024px) { .hero-image { display: none; } }
  @media (max-width: 768px)  { .hero-image { display: none; } }

  .hero-eyebrow {
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700; line-height: 1.1;
    max-width: 600px;
    opacity: 0; animation: fadeUp 0.8s 0.25s forwards;
  }
  .hero-title em { font-style: italic; color: var(--gold); }
  .hero-sub {
    margin-top: 3rem;
    font-size: 1.125rem; font-weight: 300; color: var(--white);
    max-width: 560px; line-height: 1.7;
    opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
  }

  /* USP — уникальное преимущество под подзаголовком */
  .hero-usp {
    margin-top: 1.5rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.8s 0.48s forwards;
  }
  .hero-usp-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--light);
  }
  .hero-usp-item::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  .hero-actions {
    margin-top: 3.5rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
    opacity: 0; animation: fadeUp 0.8s 0.55s forwards;
  }
  .btn-primary {
    font-family: 'Mulish', sans-serif;
    font-size: 0.875rem; font-weight: 600; letter-spacing: 0.08em;
    color: var(--dark);
    background: var(--gold); border: none;
    padding: 1rem 2.25rem; cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    text-decoration: none; display: inline-block;
    text-transform: uppercase;
  }
  .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
  .btn-ghost {
    font-size: 0.875rem; font-weight: 500; color: var(--gold);
    background: none; border: 0.5px solid rgba(201,169,110,0.4);
    padding: 1rem 2.25rem; cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none; display: inline-block;
    text-transform: uppercase;
  }
  .btn-ghost:hover { border-color: var(--gold); background: var(--gold-dim); }
  .hero-note {
    font-size: 0.8125rem; color: var(--muted); margin-top: 1.25rem;
    opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
  }
  .hero-note strong { color: var(--gold); font-weight: 600; }

  /* DIVIDER */
  .gold-line {
    height: 0.5px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 48px;
  }

  /* PAIN */
  .pain {
    padding: 6.25rem 3rem;
    display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: center; background: var(--dark2);
  }
  .pain-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; line-height: 1.2;
  }
  .pain-title span { color: var(--gold); }
  .pain-lm-action { margin: 4rem 0 3rem 0; }
  .pain-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
  .pain-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.25rem; border: 0.5px solid rgba(255,255,255,0.06);
    background: var(--dark2);
    transition: border-color 0.2s;
  }
  .pain-item:hover { border-color: rgba(201,169,110,0.25); }
  .pain-icon {
    width: 2rem; height: 2rem; flex-shrink: 0;
    background: var(--gold-dim); border: 0.5px solid rgba(201,169,110,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.875rem; color: var(--gold); font-weight: 600;
  }
  .pain-text { font-size: 0.9375rem; color: var(--white); line-height: 1.6; }

  /* WHAT */
  .what { padding: 6.25rem 3rem; }
  .section-eyebrow {
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; line-height: 1.2;
    max-width: 600px; margin-bottom: 3.5rem;
  }
  .section-title span { color: var(--gold); }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  }
  .service-card {
    padding: 2.25rem 2rem;
    background: var(--dark);
    border: 0.5px solid transparent;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover { background: var(--dark4); border-color: rgba(201,169,110,0.15); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700; color: rgba(201,169,110,0.40);
    line-height: 1; margin-bottom: 1.25rem;
  }
  .service-title {
    font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--white);
  }
  .service-desc { font-size: 0.9375rem; color: var(--light); line-height: 1.7; }
  /* Убраны теги — лишний технический шум для директора АН */

  /* PROCESS */
  .process { padding: 6.25rem 3rem; background: var(--dark2); }
  .process-steps { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
  .step {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 2.25rem 0; border-bottom: 0.5px solid rgba(255,255,255,0.06);
    position: relative;
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem; font-weight: 700; color: var(--gold);
    min-width: 2rem; line-height: 1;
  }
  .step-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
  .step-desc { color: var(--light); line-height: 1.7; }
  .step-time {
    margin-top: 0.625rem; display: inline-block;
    font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); border: 0.5px solid rgba(201,169,110,0.3);
    padding: 0.1875rem 0.625rem;
  }
  
  .process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0;
  padding-bottom: 40px;
}

.timeline-line {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(201,169,110,0.2);
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  padding: 0 15px;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  background: var(--dark);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  transition: transform 0.3s, background 0.3s;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.1);
  background: var(--gold);
  color: var(--dark);
}

.timeline-content {
  opacity: 0.8;
  transition: opacity 0.3s;
}

.timeline-item:hover .timeline-content {
  opacity: 1;
}

.timeline-item .step-title {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.timeline-item .step-desc {
  font-size: 1rem;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 15px;
}

/* Адаптив для мобилок — возвращаем в вертикаль */
@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding-left: 30px;
  }
  .timeline-line {
    width: 1px;
    height: 100%;
    left: 24px;
    top: 0;
  }
  .timeline-item {
    text-align: left;
    display: flex;
    gap: 20px;
  }
  .timeline-dot {
    margin: 0;
    flex-shrink: 0;
  }
}

  /* CASE — новый блок с кейсом */
  .case-section { padding: 6.25rem 3rem; background: var(--dark); }
  .case-wrap {
    max-width: 960px; margin: 0 auto;
    border: 0.5px solid rgba(201,169,110,0.2);
    background: var(--dark3);
    position: relative;
    overflow: hidden;
  }
  .case-wrap::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gold);
  }
  .case-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  }
  .case-left {
    padding: 3rem;
    border-right: 0.5px solid rgba(201,169,110,0.12);
  }
  .case-right { padding: 3rem; }
  .case-badge {
    display: inline-block;
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--dark);
    background: var(--gold); padding: 0.25rem 0.75rem;
    margin-bottom: 1.5rem;
  }
  .case-client {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem; font-weight: 700; line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  .case-meta { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
  .case-problem-label {
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; margin-top: 3rem;
  }
  .case-problem-text { font-size: 0.9375rem; color: var(--light); line-height: 1.7; }
  .case-results-label {
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
  }
  .case-metrics { display: flex; flex-direction: column; gap: 1.25rem; }
  .case-metric {}
  .case-metric-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1;
  }
  .case-metric-label { font-size: 0.875rem; color: var(--light); margin-top: 0.25rem; }
  .case-period {
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 0.5px solid rgba(255,255,255,0.06);
    font-size: 0.8125rem; color: var(--muted);
  }

  /* TESTIMONIAL — отзыв */
  .testimonial-section { padding: 5rem 3rem; background: var(--dark2); }
  .testimonial-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
  .testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 400; font-style: italic;
    line-height: 1.6; color: var(--white);
    margin-bottom: 2rem;
    position: relative;
  }
  .testimonial-quote::before {
    content: '\201C';
    font-size: 5rem; line-height: 0; vertical-align: -1.75rem;
    color: rgba(201,169,110,0.25);
    margin-right: 0.25rem;
  }
  .testimonial-quote::after {
    content: '\201D';
    font-size: 5rem; line-height: 0; vertical-align: -1.75rem;
    color: rgba(201,169,110,0.25);
    margin-left: 0.25rem;
  }
  .testimonial-author {
    display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  }
  .testimonial-name { font-weight: 600; font-size: 0.9375rem; color: var(--white); }
  .testimonial-role { font-size: 0.8125rem; color: var(--muted); }

  /* ABOUT */
  .about {
    padding: 6.25rem 3rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
  }
  .about-label {
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
  }
  .about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem;
  }
  .about-title span { color: var(--gold); }
  .about-text { color: var(--light); line-height: 1.8; margin-bottom: 1rem; }
  .about-text a {color: var(--light);}

  /* Блок уникальности — почему не маркетолог и не агентство */
  .about-why {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 0.5px solid rgba(201,169,110,0.2);
    background: var(--dark3);
    position: relative;
  }
  .about-why::before {
    content: '';
    position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
    background: var(--gold);
  }
  .about-why-title {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.875rem;
  }
  .about-why-text { font-size: 0.9rem; color: var(--light); line-height: 1.7; }

  .about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    margin-top: 9.375rem;
  }
  .about-stat {
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
  }
  .about-stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
  }
  .about-stat-label {
    font-size: 0.875rem;
    color: var(--light);
    margin-top: 0.375rem;
  }

  /* CTA */
  .cta-section {
    padding: 7.5rem 3rem;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.15;
    max-width: 700px; margin: 0 auto 1rem;
  }
  .cta-title em { font-style: italic; color: var(--gold); }
  .cta-sub { font-size: 1.0625rem; font-weight: 300; color: var(--muted); margin-bottom: 1rem; }

  /* Усиленный оффер бесплатной консультации */
  .cta-offer {
    display: inline-flex; align-items: center; gap: 0.625rem;
    background: var(--gold-dim); border: 0.5px solid rgba(201,169,110,0.35);
    padding: 0.625rem 1.25rem;
    margin-bottom: 2.5rem;
  }
  .cta-offer-icon { font-size: 1rem; }
  .cta-offer-text { font-size: 0.875rem; color: var(--gold); font-weight: 600; }

  .cta-form-full { max-width: 560px; margin: 0 auto 1rem; display: flex; flex-direction: column; gap: 0; }
  .cta-fields { display: flex; flex-direction: column; gap: 0; }
  .cta-input {
    width: 100%;
    background: var(--dark3); border: 0.5px solid rgba(201,169,110,0.3);
    border-bottom: none; color: var(--white);
    font-family: 'Mulish', sans-serif; font-size: 0.9375rem;
    padding: 1rem 1.25rem; outline: none;
    transition: border-color 0.2s;
  }
  .cta-input:last-of-type { border-bottom: 0.5px solid rgba(201,169,110,0.3); }
  .cta-input::placeholder { color: var(--muted); }
  .cta-input:focus { border-color: var(--gold); }
  .cta-submit {
    font-family: 'Mulish', sans-serif;
    font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--dark);
    background: var(--gold); border: none;
    padding: 1rem 1.75rem; cursor: pointer;
    transition: opacity 0.2s;
    width: 100%; margin-top: 0;
  }
  .cta-submit:hover { opacity: 0.88; }
  .cta-fine { font-size: 0.75rem; color: var(--muted); margin-top: 1rem; }

  /* PRICING */
  .pricing { padding: 6.25rem 3rem; background: var(--dark2); }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    border: 0.5px solid rgba(255,255,255,0.06);
    margin-bottom: 2rem;
  }
  .price-card {
    padding: 2.5rem 2rem; background: var(--dark3);
    display: flex; flex-direction: column; gap: 0;
    position: relative; border: 0.5px solid transparent;
    transition: border-color 0.2s, background 0.2s;
  }
  .price-card:hover { background: var(--dark4); border-color: rgba(201,169,110,0.15); }
  .price-card--featured {
    background: var(--dark4);
    border-color: rgba(201,169,110,0.3) !important;
  }
  .price-card--featured::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gold);
  }
  .price-badge {
    position: absolute; top: -1px; right: 1.5rem;
    background: var(--gold); color: var(--dark);
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0.25rem 0.75rem;
  }
  .price-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
  .price-val { font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; line-height: 1.1; }
  .price-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
  .price-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.625rem; flex: 1; }
  .price-list li { font-size: 0.875rem; color: var(--light); padding-left: 1rem; position: relative; line-height: 1.5; }
  .price-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
  .price-time { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.5rem; border-top: 0.5px solid rgba(255,255,255,0.06); padding-top: 1rem; }
  .price-btn {
    display: block; text-align: center; text-decoration: none;
    font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--dark); background: var(--gold);
    padding: 0.8125rem 1.5rem; transition: opacity 0.2s;
    margin-top: auto;
  }
  .price-btn:hover { opacity: 0.85; }
  .price-card:not(.price-card--featured) .price-btn {
    background: none; color: var(--gold);
    border: 0.5px solid rgba(201,169,110,0.4);
  }
  .price-card:not(.price-card--featured) .price-btn:hover { background: var(--gold-dim); }
  .pricing-note { font-size: 0.875rem; color: var(--muted); text-align: center; }

  /* FOOTER */
  footer {
    padding: 2.5rem 3rem;
    border-top: 0.5px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy, .footer-logo { font-size: 0.8125rem; color: var(--muted); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .pain  { grid-template-columns: 1fr; gap: 2.5rem; }
    .about { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { flex-direction: row; flex-wrap: wrap; gap: 2rem; margin-top: 0; }
    .about-stat  { flex: 1 1 45%; }
    .case-inner  { grid-template-columns: 1fr; }
    .case-left   { border-right: none; border-bottom: 0.5px solid rgba(201,169,110,0.12); }
  }

  @media (max-width: 768px) {
    nav { padding: 0.875rem 1.25rem; }
    .nav-logo { font-size: 0.9375rem; }
    .hero        { padding: 7.5rem 1.25rem 4.5rem; }
    .pain        { padding: 4rem 1.25rem; }
    .what        { padding: 4rem 1.25rem; }
    .process     { padding: 4rem 1.25rem; }
    .about       { padding: 4rem 1.25rem; }
    .case-section { padding: 4rem 1.25rem; }
    .testimonial-section { padding: 3.5rem 1.25rem; }
    .cta-section { padding: 5rem 1.25rem; }
    .gold-line   { margin: 0 1.25rem; }
    footer       { padding: 1.75rem 1.25rem; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .hero { flex-direction: column; padding-top: 6.25rem; gap: 2rem; }
    .hero-sub  { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost { text-align: center; padding: 0.875rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card  { padding: 1.75rem 1.5rem; }
    .step { gap: 1.25rem; padding: 1.75rem 0; }
    .step-num { font-size: 1.75rem; min-width: 2.5rem; }
    .about-stats { flex-direction: column; gap: 2rem; margin-top: 0; }
    .about-stat  { flex: unset; }
    .cta-form { flex-direction: column; }
    .cta-title  { font-size: clamp(1.625rem, 7vw, 2.5rem); }
    .section-title { font-size: clamp(1.625rem, 6vw, 2.25rem); margin-bottom: 2.25rem; }
    .about-title   { font-size: clamp(1.625rem, 6vw, 2.25rem); }
    .testimonial-quote { font-size: 1.125rem; }
    .pricing { padding: 4rem 1.25rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card { padding: 2rem 1.5rem; }
    .case-left, .case-right { padding: 2rem 1.5rem; }
    .hero-usp { gap: 1rem; }
  }

  @media (max-width: 480px) {
    .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
    .process-steps { max-width: 100%; }
  }
  

/* CONTACTS */
.contacts-section {
  padding: 5rem 3rem 4rem;
  background: var(--dark2);
  border-top: 0.5px solid rgba(255,255,255,0.06);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 2rem auto 0;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 1.5rem;

  text-decoration: none;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
  border: 0.5px solid transparent;
  position: relative;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.contact-card:hover {
  background: var(--dark4);
  border-color: rgba(201,169,110,0.2);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim);
  border: 0.5px solid rgba(201,169,110,0.25);
  color: var(--gold);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 400;
}

/* Responsive contacts */
@media (max-width: 900px) {
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .contacts-section { padding: 3.5rem 1.25rem 3rem; }
  .contacts-grid { grid-template-columns: 1fr; max-width: 400px; }
}


/* =========================================================
   MOBILE TABLET READABILITY FIX
========================================================= */

/* ---------- Улучшенный контраст ---------- */

@media (max-width:768px){

  :root{
    --muted:#8E8E8E;
    --light:#CACACA;
  }

}

/* ---------- Общая типографика ---------- */

body{
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

/* ---------- Улучшение читаемости текста ---------- */

.hero-sub,
.pain-text,
.service-desc,
.step-desc,
.case-problem-text,
.case-metric-label,
.about-text,
.about-stat-label,
.price-desc,
.price-list li,
.pricing-note,
.cta-sub,
.contact-value,
.testimonial-role{
  color:var(--light);
}

/* ---------- Footer контраст ---------- */

.footer-copy,
.footer-logo{
  color:#A8A8A8;
}

/* ---------- Mobile + Tablet ---------- */

@media (max-width:768px){

  /* ---------- Базовая типографика ---------- */

  body{
    font-size:16px;
    line-height:1.75;
  }

  p,
  li{
    line-height:1.75;
  }

  /* ---------- Header ---------- */

  nav{
    padding:1rem;
    backdrop-filter:blur(16px);
  }

  .nav-logo{
    font-size:1rem;
  }

  .nav-phone{
    font-size:.95rem;
    font-weight:600;
  }

  /* ---------- HERO ---------- */

  .hero{
    padding:6.5rem 1.25rem 4rem;
    gap:1.5rem;
    min-height:auto;
  }

  .hero-title{
    line-height:1.08;
    letter-spacing:-0.02em;
  }

  .hero-sub{
    margin-top:1.5rem;
    font-size:1.05rem;
    line-height:1.8;
    font-weight:400;
    max-width:100%;
  }

  .hero-usp{
    gap:.75rem;
    margin-top:1.25rem;
  }

  .hero-usp-item{
    font-size:.95rem;
    color:var(--light);
  }

  .hero-actions{
    margin-top:2rem;
    gap:.875rem;
  }

  .hero-note{
    font-size:.92rem;
    line-height:1.7;
    color:var(--light);
  }

  /* ---------- Кнопки ---------- */

  .btn-primary,
  .btn-ghost,
  .price-btn,
  .cta-submit{
    min-height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.95rem;
    letter-spacing:.04em;
    line-height:1.3;
    padding:1rem 1.25rem;
  }

  /* ---------- Заголовки ---------- */

  .section-title,
  .about-title,
  .cta-title,
  .pain-title{
    line-height:1.15;
    letter-spacing:-0.01em;
  }

  .section-eyebrow,
  .about-label,
  .price-label,
  .contact-label{
    font-size:.75rem;
    letter-spacing:.16em;
  }

  /* ---------- Текстовые блоки ---------- */

  .pain-text,
  .service-desc,
  .step-desc,
  .case-problem-text,
  .case-metric-label,
  .about-text,
  .about-stat-label,
  .price-desc,
  .price-list li,
  .pricing-note,
  .cta-sub,
  .contact-value,
  .testimonial-role{
    font-size:1rem;
    line-height:1.8;
  }

  /* ---------- Карточки ---------- */

  .service-card,
  .price-card,
  .pain-item,
  .contact-card{
    border-width:1px;
  }

  .service-card{
    padding:1.75rem 1.5rem;
  }

  .pain-item{
    padding:1.25rem;
  }

  /* ---------- Timeline ---------- */

  .process-timeline{
    gap:2rem;
  }

  .timeline-item{
    gap:1rem;
    align-items:flex-start;
  }

  .timeline-item .step-title{
    font-size:1.05rem;
    margin-bottom:.5rem;
  }

  .timeline-item .step-desc{
    font-size:1rem;
    line-height:1.7;
    margin-bottom:.75rem;
  }

  .timeline-dot{
    width:44px;
    height:44px;
    font-size:.95rem;
  }

  .step-time{
    font-size:.78rem;
    padding:.35rem .7rem;
  }

  /* ---------- Case ---------- */

  .case-left,
  .case-right{
    padding:2rem 1.5rem;
  }

  .case-client{
    line-height:1.3;
  }

  .case-metric-val{
    font-size:2.2rem;
  }

  /* ---------- About ---------- */

  .about-text{
    margin-bottom:1.25rem;
  }

  .about-stat-val{
    font-size:2.75rem;
  }

  /* ---------- Pricing ---------- */

  .price-val{
    font-size:2rem;
  }

  .price-time{
    font-size:.9rem;
    color:var(--light);
    line-height:1.6;
  }

  /* ---------- CTA ---------- */

  .cta-sub{
    font-size:1rem;
    font-weight:400;
    color:var(--light);
  }

  .cta-offer{
    padding:.9rem 1rem;
    align-items:flex-start;
  }

  .cta-offer-text{
    font-size:.92rem;
    line-height:1.6;
    text-align:left;
  }

  .cta-input{
    font-size:1rem;
    padding:1.1rem 1.25rem;
    border-width:1px;
  }

  .cta-input::placeholder{
    color:#9F9F9F;
  }

  .cta-fine{
    font-size:.9rem;
    line-height:1.6;
    color:var(--light);
  }

  /* ---------- Contacts ---------- */

  .contacts-grid{
    gap:.75rem;
  }

  .contact-card{
    padding:1.25rem;
    gap:.875rem;
  }

  .contact-icon{
    width:42px;
    height:42px;
  }

  .contact-value{
    font-size:1rem;
  }

  /* ---------- Testimonial ---------- */

  .testimonial-quote{
    line-height:1.8;
    font-size:1.2rem;
  }

  /* ---------- Footer ---------- */

  footer{
    border-top:1px solid rgba(255,255,255,.08);
  }

  .footer-copy,
  .footer-logo{
    font-size:.92rem;
    line-height:1.7;
    color:#A8A8A8;
  }

}

/* ---------- Очень маленькие экраны ---------- */

@media (max-width:480px){

  .hero-title{
    font-size:clamp(2.2rem,10vw,3rem);
  }

  .section-title,
  .about-title,
  .cta-title,
  .pain-title{
    font-size:clamp(1.9rem,8vw,2.5rem);
  }

  .hero-sub,
  .pain-text,
  .service-desc,
  .about-text,
  .price-desc{
    font-size:1rem;
  }

  .btn-primary,
  .btn-ghost{
    width:100%;
  }

}