/* ── Глобальные сбросы ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ── ШАПКА (не затрагивается стилями контента) ── */
.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.02em;
}

/* ── ОСНОВНОЙ КОНТЕНТ (всё внутри .page-content) ── */

/* HERO */
.page-content .hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.page-content .hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px 0 0;
  position: relative;
  z-index: 2;
}

.page-content .hero-eyebrow {
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bg-elements);
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-content .hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--bg-elements);
}

.page-content .hero h1 {
  font-size: 50px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}

.page-content .hero h1 em {
  font-family: 'Cormorant Garamond', serif;
}

.page-content .hero h1 em {
  font-style: italic;
  color: var(--bg-elements);
}

.page-content .hero-sub {
  max-width: 420px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.75;
}

.page-content .hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}



.page-content .hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid #d9d9d9;
}

.page-content .hero-stat-num {
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.page-content .hero-stat-label {
  font-size: 13px;
  color: var(--color-light);
  text-transform: uppercase;
  margin-top: 4px;
}

.page-content .hero-right {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.page-content .hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #dee1da;
  z-index: 0;
}

.page-content .hero-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-content .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-content .hero-badge {
  position: absolute;
  bottom: 60px;
  left: 40px;
  background: #fff;
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
  max-width: 200px;
}

.page-content .hero-badge-num {
  font-size: 40px;
  font-weight: 400;
  color: var(--bg-elements);
  line-height: 1;
}

.page-content .hero-badge-text {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

.page-content .hero-tag {
  position: absolute;
  top: 48px;
  right: 40px;
  background: var(--bg-elements);
  color: #fff;
  padding: 8px 16px;
  text-transform: uppercase;
  z-index: 2;
  border-radius: 7px;
}

/* TRUST BAR */
.page-content .trust-bar {
  background: var(--bg-elements);
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 80px);
  flex-wrap: wrap;
  margin-top: 45px;
  margin-bottom: 45px;
  border-radius: 12px;
}

.page-content .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-content .trust-item svg {
  opacity: 0.5;
  flex-shrink: 0;
}

/* ОБЩИЕ СТИЛИ СЕКЦИЙ */


.page-content .section-label {
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bg-elements);
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-content .section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--bg-elements);
}

.page-content .section-title {
  font-size: 50px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}

.page-content .section-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--bg-elements);
}

.page-content .section-desc {
  max-width: 420px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.75;
}

/* WHY US */
.page-content .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
  gap: 2px;
  margin-top: 64px;  
}

.page-content .why-card {
  background: #f7f7f7;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.page-content .why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--bg-elements);
}

.page-content .why-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.3;
}

.page-content .why-card p {
  font-size: 15px;
  font-weight: 300;
}

.page-content .why-card-num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 26px;
  font-weight: 300;
  color: var(--color-light);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}

/* WHO WE WORK WITH */
.page-content .who-section {
  padding: 45px 0;
}

.page-content .who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  margin-top: 60px;
}

.page-content .who-card {
  border: 1px solid #e9e8f1;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: default;
  border-radius: 12px;
}

.page-content .who-card:hover {
  border-color: var(--bg-elements);
  box-shadow: 0 8px 32px rgba(184, 151, 90, 0.1);
}

.page-content .who-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.page-content .who-card h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.page-content .who-card p {
  font-size: 16px;
  line-height: 1.6;
}

/* ── КОНТАКТНЫЙ БЛОК (левая часть form-section) ── */


.page-content .contact-section .form-section-left h2 {
  font-size: 50px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}

.page-content .contact-section .form-section-left h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--bg-elements);
}

.page-content .contact-section .form-section-left p {
  max-width: 420px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.75;
}

@media (max-width: 1399px) {
  .page-content .who-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}


@media (max-width: 991px) {
  .page-content .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-content .hero-left {
    padding: 45px 0;

  }

  .page-content .hero-right {
    height: 300px;
  }

  .page-content .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
    .page-content .trust-bar {      
      justify-content: flex-start;     
    }

        .page-content .why-grid {          
          grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));         
        }
}