    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --sage: #3D5A47;
      --sage-light: #5A7A62;
      --sage-pale: #EEF3EF;
      --warm: #7A5C3A;
      --warm-light: #C8A97A;
      --cream: #FAF8F4;
      --white: #FFFFFF;
      --text: #252520;
      --text-mid: #505048;
      --text-light: #888880;
      --border: #E0DAD0;
      --radius: 6px
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--text);
      font-size: 17px;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased
    }

    nav {
      background: var(--sage);
      padding: 16px 6%;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: #fff;
      font-weight: 500;
      letter-spacing: .02em
    }

    .nav-link {
      font-size: 13px;
      color: rgba(255, 255, 255, .65);
      text-decoration: none;
      letter-spacing: .05em;
      transition: color 0.2s
    }

    .nav-link:hover {
      color: #fff
    }

    /* HERO */
    .hero {
      padding: 80px 6% 90px;
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 64px;
      align-items: center;
      background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream) 100%);
      position: relative
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
      background-size: cover;
      background-position: 70% 40%;
      opacity: 0.08;
      pointer-events: none;
      z-index: 0;
    }

    .hero>* {
      position: relative;
      z-index: 2;
    }

    @media(max-width:900px) {
      .hero {
        grid-template-columns: 1fr;
        padding: 50px 6%
      }
    }

    .hero-eyebrow {
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--sage-light);
      font-weight: 500;
      margin-bottom: 16px
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 4.5vw, 56px);
      color: var(--sage);
      font-weight: 500;
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -.01em
    }

    .hero h1 em {
      color: var(--warm);
      font-style: italic
    }

    .hero-sub {
      font-size: 18px;
      color: var(--text-mid);
      font-weight: 300;
      margin-bottom: 36px;
      max-width: 460px;
      line-height: 1.65
    }

    .hero-reassurance {
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .reassurance-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--text-mid)
    }

    .reassurance-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--warm-light);
      flex-shrink: 0;
      margin-top: 7px
    }

    /* FORM */
    .hero-form {
      background: var(--white);
      border-radius: 12px;
      padding: 36px 30px;
      border: 1px solid var(--border);
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s
    }

    .hero-form:hover {
      transform: translateY(-3px)
    }

    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      color: var(--sage);
      margin-bottom: 6px;
      font-weight: 500
    }

    .form-sub {
      font-size: 14px;
      color: var(--text-light);
      margin-bottom: 24px;
      line-height: 1.5
    }

    .form-group {
      margin-bottom: 16px
    }

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 5px;
      letter-spacing: .02em
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      font-family: 'Jost', sans-serif;
      font-size: 15px;
      color: var(--text);
      background: var(--cream);
      outline: none;
      transition: border-color .2s
    }

    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--sage)
    }

    .form-btn {
      width: 100%;
      background: var(--sage);
      color: #fff;
      border: none;
      padding: 15px;
      border-radius: var(--radius);
      font-family: 'Jost', sans-serif;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      margin-top: 4px;
      letter-spacing: .03em;
      transition: background .2s
    }

    .form-btn:hover {
      background: var(--sage-light)
    }

    .form-note {
      font-size: 12px;
      color: var(--text-light);
      text-align: center;
      margin-top: 10px;
      line-height: 1.5
    }

    /* TRUST */
    .trust {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 14px 6%;
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap
    }

    .trust-item {
      font-size: 13px;
      color: var(--text-mid);
      display: flex;
      align-items: center;
      gap: 6px
    }

    .trust-item::before {
      content: '·';
      color: var(--warm-light);
      font-size: 20px;
      line-height: 0
    }

    /* SECTIONS */
    .section {
      padding: 72px 6%
    }

    .section-inner {
      max-width: 1000px;
      margin: 0 auto
    }

    .section-alt {
      background: var(--white);
      position: relative
    }

    /* subtle realistic image in alt section */
    .section-alt::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('../images/photo-1581579186913-45ac3e6efe93.webp');
      background-size: cover;
      background-attachment: fixed;
      opacity: 0.05;
      pointer-events: none;
    }

    .section-alt .section-inner {
      position: relative;
      z-index: 2;
    }

    .section-label {
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--sage-light);
      font-weight: 500;
      margin-bottom: 10px
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(26px, 3.5vw, 40px);
      color: var(--sage);
      font-weight: 500;
      margin-bottom: 14px;
      line-height: 1.25
    }

    .section-sub {
      font-size: 17px;
      color: var(--text-mid);
      max-width: 540px;
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 40px
    }

    /* PILLARS */
    .pillars {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px
    }

    .pillar {
      background: var(--sage-pale);
      border-radius: var(--radius);
      padding: 28px 22px;
      border-bottom: 3px solid var(--sage-light);
      transition: all 0.2s ease
    }

    .pillar:hover {
      transform: translateY(-6px);
      background: #e7ede7
    }

    .pillar-icon {
      font-size: 28px;
      margin-bottom: 12px
    }

    .pillar h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      color: var(--sage);
      margin-bottom: 8px;
      font-weight: 500
    }

    .pillar p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.6
    }

    /* WHAT'S INSIDE */
    .inside-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 32px
    }

    .inside-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
      transition: background 0.2s
    }

    .inside-item:hover {
      background: rgba(61, 90, 71, 0.02);
      padding-left: 8px
    }

    .inside-item:last-child {
      border-bottom: none
    }

    .inside-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      color: var(--border);
      font-weight: 300;
      line-height: 1;
      flex-shrink: 0;
      width: 40px
    }

    .inside-item h3 {
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 4px
    }

    .inside-item p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.6
    }

    /* BOTTOM CTA */
    .bottom-cta {
      background: var(--sage);
      padding: 64px 6%;
      text-align: center;
      border-radius: 30px 30px 0 0;
      margin-top: 20px
    }

    .bottom-cta h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      color: #fff;
      font-weight: 500;
      margin-bottom: 10px
    }

    .bottom-cta p {
      font-size: 17px;
      color: rgba(255, 255, 255, .7);
      margin-bottom: 28px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto
    }

    .bottom-cta a {
      display: inline-block;
      background: #fff;
      color: var(--sage);
      font-size: 15px;
      font-weight: 500;
      padding: 14px 32px;
      border-radius: var(--radius);
      text-decoration: none;
      letter-spacing: .03em;
      transition: all 0.2s
    }

    .bottom-cta a:hover {
      background: #FFEAD2;
      transform: scale(1.02)
    }

    footer {
      background: #1A2B20;
      padding: 28px 6%;
      text-align: center
    }

    footer p {
      font-size: 12px;
      color: rgba(255, 255, 255, .3);
      line-height: 1.7
    }

    footer a {
      color: rgba(255, 255, 255, .4);
      text-decoration: none;
      transition: color 0.2s
    }

    footer a:hover {
      color: #fff
    }

    .amplify-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(61, 90, 71, 0.12);
      padding: 4px 12px;
      border-radius: 30px;
      font-size: 11px;
      font-weight: 500;
      color: var(--sage);
      margin-bottom: 10px;
      letter-spacing: 0.3px;
    }

    .hero-eyebrow {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
    }

    @media (max-width: 560px) {
      .hero-form {
        padding: 24px 20px;
      }

      .inside-item {
        flex-direction: column;
        gap: 4px;
      }

      .inside-num {
        width: auto;
      }
    }

    /* NEW PHOTO BLOCKS */
.feature-block {
  padding: 60px 6%;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.feature-block:last-of-type {
  border-bottom: none;
}
.feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.feature-inner.reverse {
  flex-direction: row-reverse;
}
.feature-text {
  flex: 1;
  min-width: 260px;
}
.feature-tag {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--sage);
  line-height: 1.3;
  margin-bottom: 20px;
}
.feature-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-list li::before {
  content: "🌿";
  font-size: 18px;
}
.feature-image {
  flex: 1;
  min-width: 260px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.feature-image:hover {
  transform: scale(1.02);
}
.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

/* Mobile adaptation */
@media (max-width: 900px) {
  .feature-inner {
    flex-direction: column !important;
    gap: 32px;
  }
  .feature-title {
    font-size: 28px;
  }
  .feature-block {
    padding: 45px 5%;
  }
}

/* THANK YOU MODAL STYLES */
.thankyou-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.thankyou-modal.active {
  display: flex;
}
.thankyou-content {
  background: var(--white);
  max-width: 500px;
  width: 90%;
  padding: 40px 32px;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
  border: 1px solid var(--border);
}
.thankyou-icon {
  font-size: 64px;
  margin-bottom: 16px;
}
.thankyou-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--sage);
  margin-bottom: 16px;
}
.thankyou-content p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.thankyou-message {
  background: var(--sage-pale);
  padding: 20px;
  border-radius: 20px;
  margin: 20px 0;
  text-align: left;
}
.thankyou-message p {
  margin-bottom: 10px;
}
.thankyou-message strong {
  color: var(--sage);
}
.thankyou-btn {
  background: var(--sage);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
  width: 100%;
}
.thankyou-btn:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
}
.thankyou-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 20px;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========== FOOTER STYLES ========== */
footer {
  background: #1A2B20;
  padding: 3rem 6% 2rem;
  border-top: none;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}

/* Логотип в футере */
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo i {
  color: var(--warm-light);
  font-size: 1.3rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  max-width: 260px;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  color: var(--warm-light);
  transform: translateY(-2px);
}

/* Заголовки блоков */
.footer-links h4, .footer-contact h4 {
  color: var(--warm-light);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-links ul, .footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li, .footer-contact li {
  margin-bottom: 0.6rem;
}

.footer-links a, .footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--warm-light);
}

.footer-contact li span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  display: inline-block;
  margin-top: 0.25rem;
}

/* Юридический блок */
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.8rem;
  margin-bottom: 1rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 0.7rem;
  transition: all 0.2s;
}

.legal-links a:hover {
  color: var(--warm-light);
}

.legal-text p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
  margin: 0.25rem 0;
  line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 680px) {
  .footer-container {
    text-align: center;
    gap: 1.8rem;
  }
  .footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    justify-content: center;
  }
  .legal-links {
    gap: 0.8rem 1.2rem;
  }
}