@charset "UTF-8";
/* line 1, _elements.page.scss */
.page {
  display: grid;
  grid-template-rows: min-content;
  grid-template-areas: "content content"; }
  /* line 5, _elements.page.scss */
  .page__content {
    grid-area: content;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px 0; }
  /* line 12, _elements.page.scss */
  .page__sidebar {
    grid-area: sidebar;
    min-width: 0; }
    @media (max-width: 1024px) {
      /* line 12, _elements.page.scss */
      .page__sidebar {
        display: none; } }
    /* line 19, _elements.page.scss */
    .page__sidebar .sidebar__item {
      position: sticky;
      top: 108px; }
  /* line 25, _elements.page.scss */
  .page__form {
    max-width: 480px;
    box-shadow: var(--shadow-s);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0 0; }
  @media (min-width: 1025px) {
    /* line 32, _elements.page.scss */
    .page.with-sidebar {
      grid-template-columns: 1fr 4fr;
      grid-template-areas: "sidebar content";
      gap: 0 40px; } }

/* Основные переменные */
/* Базовые стили */
/* line 55, _elements.page.scss */
.partnership-container {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333; }

/* line 61, _elements.page.scss */
.section-title {
  text-align: center;
  color: #257b7c;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700; }

/* Вступительный блок */
/* line 70, _elements.page.scss */
.intro-section {
  margin-bottom: 40px; }

/* line 74, _elements.page.scss */
.intro-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  border-left: 5px solid #31a2a3; }
  /* line 81, _elements.page.scss */
  .intro-card h3 {
    margin-bottom: 20px;
    font-weight: 500; }
    /* line 85, _elements.page.scss */
    .intro-card h3 strong {
      color: #31a2a3; }

/* Блок преимуществ */
/* line 92, _elements.page.scss */
.benefits-section {
  margin-bottom: 50px; }

/* line 96, _elements.page.scss */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px; }

/* line 102, _elements.page.scss */
.benefit-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 4px solid #31a2a3; }
  /* line 111, _elements.page.scss */
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }
  /* line 116, _elements.page.scss */
  .benefit-card .benefit-icon {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px; }
    /* line 123, _elements.page.scss */
    .benefit-card .benefit-icon img {
      max-width: 100px;
      height: auto;
      object-fit: contain; }
  /* line 130, _elements.page.scss */
  .benefit-card h3 {
    color: #257b7c;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600; }
  /* line 137, _elements.page.scss */
  .benefit-card p {
    color: #666;
    line-height: 1.6; }

/* Блок видов партнерства */
/* line 144, _elements.page.scss */
.partnership-types-section {
  margin-bottom: 50px; }

/* line 148, _elements.page.scss */
.partnership-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px; }

/* line 154, _elements.page.scss */
.partnership-type-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #31a2a3;
  text-align: center; }
  /* line 163, _elements.page.scss */
  .partnership-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }
  /* line 168, _elements.page.scss */
  .partnership-type-card .partnership-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px; }
    /* line 175, _elements.page.scss */
    .partnership-type-card .partnership-icon img {
      max-width: 150px;
      width: 100%;
      height: auto;
      object-fit: contain; }
  /* line 183, _elements.page.scss */
  .partnership-type-card .partnership-title {
    color: #257b7c;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center; }
  /* line 191, _elements.page.scss */
  .partnership-type-card .partnership-subtitle {
    font-weight: 600;
    color: #31a2a3;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: center; }
  /* line 199, _elements.page.scss */
  .partnership-type-card p {
    text-align: left;
    margin-bottom: 15px; }
  /* line 204, _elements.page.scss */
  .partnership-type-card ul {
    list-style: none;
    padding: 0;
    text-align: left; }
    /* line 209, _elements.page.scss */
    .partnership-type-card ul li {
      padding: 8px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      padding-left: 20px; }
      /* line 215, _elements.page.scss */
      .partnership-type-card ul li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #31a2a3;
        font-weight: bold; }
      /* line 223, _elements.page.scss */
      .partnership-type-card ul li:last-child {
        border-bottom: none; }
      /* line 227, _elements.page.scss */
      .partnership-type-card ul li strong {
        color: #257b7c; }

/* Сетка контента */
/* line 235, _elements.page.scss */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px; }

/* line 242, _elements.page.scss */
.content-card {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease; }
  /* line 248, _elements.page.scss */
  .content-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
  /* line 252, _elements.page.scss */
  .content-card h3 {
    color: #257b7c;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem; }
  /* line 259, _elements.page.scss */
  .content-card ul {
    list-style: none;
    padding: 0; }
    /* line 263, _elements.page.scss */
    .content-card ul li {
      padding: 8px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      padding-left: 20px; }
      /* line 269, _elements.page.scss */
      .content-card ul li:before {
        content: '•';
        position: absolute;
        left: 0;
        color: #31a2a3;
        font-weight: bold; }
      /* line 277, _elements.page.scss */
      .content-card ul li:last-child {
        border-bottom: none; }
  /* line 283, _elements.page.scss */
  .content-card strong {
    color: #31a2a3; }

/* Контактный блок */
/* line 289, _elements.page.scss */
.contact-section {
  margin-bottom: 30px; }

/* line 293, _elements.page.scss */
.contact-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  border-top: 4px solid #31a2a3; }
  /* line 301, _elements.page.scss */
  .contact-card h3 {
    font-weight: 500; }
    /* line 304, _elements.page.scss */
    .contact-card h3 a {
      color: #31a2a3;
      text-decoration: none; }
      /* line 308, _elements.page.scss */
      .contact-card h3 a:hover {
        text-decoration: underline; }
    /* line 313, _elements.page.scss */
    .contact-card h3 strong {
      color: #257b7c; }

/* Адаптивность */
@media (max-width: 768px) {
  /* line 321, _elements.page.scss */
  .partnership-container {
    padding: 15px; }

  /* line 325, _elements.page.scss */
  .section-title {
    font-size: 1.6rem; }

  /* line 329, _elements.page.scss */
  .benefits-grid,
  .partnership-types-grid,
  .content-grid {
    grid-template-columns: 1fr; }

  /* line 335, _elements.page.scss */
  .intro-card,
  .benefit-card,
  .partnership-type-card,
  .content-card {
    padding: 20px; }

  /* line 342, _elements.page.scss */
  .benefit-icon img {
    max-width: 80px; }

  /* line 346, _elements.page.scss */
  .partnership-icon img {
    max-width: 120px; } }
/* line 1, _elements.sidebar-menu.scss */
.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 3px; }
  /* line 5, _elements.sidebar-menu.scss */
  .sidebar-menu a {
    display: inline-block;
    vertical-align: top;
    padding: 5px 10px;
    border-radius: var(--radius); }
    /* line 10, _elements.sidebar-menu.scss */
    .sidebar-menu a.is-active {
      background: var(--bg-grey);
      font-weight: var(--font-bold); }
    /* line 14, _elements.sidebar-menu.scss */
    .sidebar-menu a.is-parent {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      padding-left: 5px; }
  /* line 21, _elements.sidebar-menu.scss */
  .sidebar-menu__submenu {
    margin: 3px 0 0 10px; }

/* line 1, _elements.sitemap.scss */
.sitemap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0 0; }
  /* line 6, _elements.sitemap.scss */
  .sitemap .text {
    color: var(--color-black); }
    /* line 9, _elements.sitemap.scss */
    .sitemap .text ol + ol, .sitemap .text ol + ul, .sitemap .text ul + ol, .sitemap .text ul + ul {
      margin-top: 0; }
    /* line 12, _elements.sitemap.scss */
    .sitemap .text ol li, .sitemap .text ul li {
      margin: 0;
      padding: 5px 0 0; }
    /* line 17, _elements.sitemap.scss */
    .sitemap .text a {
      text-decoration: none; }
  /* line 21, _elements.sitemap.scss */
  .sitemap__list {
    column-count: 3;
    gap: 20px;
    margin: 15px 0 0 0 !important; }
    @media (max-width: 767px) {
      /* line 21, _elements.sitemap.scss */
      .sitemap__list {
        column-count: 2; } }
    @media (max-width: 575px) {
      /* line 21, _elements.sitemap.scss */
      .sitemap__list {
        column-count: 1; } }
    /* line 31, _elements.sitemap.scss */
    .sitemap__list > li {
      display: block;
      break-inside: avoid; }
    /* line 35, _elements.sitemap.scss */
    .sitemap__list-collections {
      margin: 0 !important; }
      /* line 37, _elements.sitemap.scss */
      .sitemap__list-collections > li {
        padding: 20px 0 0 !important; }
        /* line 39, _elements.sitemap.scss */
        .sitemap__list-collections > li > a {
          font-weight: var(--font-bold); }

/* line 1, _elements.universal.scss */
.universal {
  display: flex;
  flex-direction: column;
  gap: 20px; }
  /* line 5, _elements.universal.scss */
  .universal__item {
    display: flex;
    gap: 20px;
    flex-direction: column; }
    /* line 9, _elements.universal.scss */
    .universal__item.is-shadow {
      padding: 20px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-s); }
    /* line 14, _elements.universal.scss */
    .universal__item.is-border {
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid var(--border-grey); }
  /* line 20, _elements.universal.scss */
  .universal__header {
    display: flex;
    gap: 20px; }
  /* line 24, _elements.universal.scss */
  .universal__info {
    display: flex;
    gap: 4px;
    flex-direction: column;
    align-self: center; }
  /* line 30, _elements.universal.scss */
  .universal__title {
    font-size: 18px;
    line-height: 22px;
    font-weight: var(--font-normal); }
  /* line 34, _elements.universal.scss */
  .universal__subtitle {
    color: var(--color-grey-l); }
  /* line 37, _elements.universal.scss */
  .universal__image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    max-width: 50px;
    height: 50px; }
    /* line 44, _elements.universal.scss */
    .universal__image.is-bg {
      flex: 0 0 70px;
      max-width: 70px;
      height: 70px;
      background-color: var(--bg-grey);
      border-radius: 50%; }
    /* line 51, _elements.universal.scss */
    .universal__image img {
      width: 50px;
      height: 50px;
      object-fit: contain; }
  /* line 57, _elements.universal.scss */
  .universal__info {
    align-self: center; }

/* line 62, _elements.universal.scss */
.universal-gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 767px) {
    /* line 62, _elements.universal.scss */
    .universal-gallery {
      gap: 10px;
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 575px) {
    /* line 62, _elements.universal.scss */
    .universal-gallery {
      grid-template-columns: repeat(2, 1fr); } }
  /* line 73, _elements.universal.scss */
  .universal-gallery__item {
    box-shadow: var(--shadow-s);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--color-black);
    background-color: var(--bg-grey); }
    @media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      /* line 73, _elements.universal.scss */
      .universal-gallery__item {
        transition: box-shadow 0.2s ease; } }
    @media (hover: none) {
      /* line 73, _elements.universal.scss */
      .universal-gallery__item {
        -webkit-tap-highlight-color: transparent; } }
    @media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      /* line 25, _mixins.scss */
      .universal-gallery__item:hover {
        color: var(--color-secondary);
        box-shadow: var(--shadow); }
        /* line 86, _elements.universal.scss */
        .universal-gallery__item:hover .thumb img {
          filter: brightness(80%);
          transform: scale(1.02); } }
    /* line 92, _elements.universal.scss */
    .universal-gallery__item .thumb {
      color: currentColor !important;
      --radius: 0; }
      @media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        /* line 95, _elements.universal.scss */
        .universal-gallery__item .thumb img {
          will-change: transform;
          transition: filter 0.6s ease, transform 0.6s ease; } }
    /* line 102, _elements.universal.scss */
    .universal-gallery__item .svg-icon {
      position: absolute;
      z-index: 5;
      left: 50%;
      top: 50%;
      padding: 2px;
      background-color: var(--bg-white);
      border-radius: 50%;
      box-shadow: var(--shadow-m);
      object-fit: none;
      width: 38px;
      height: 38px;
      transform: translate(-50%, -50%); }

/* Базовые стили и переменные */
/* line 19, theme.page.scss */
.premium-trees-partnership {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px; }

/* Герой-блок */
/* line 29, theme.page.scss */
.partnership-hero {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #caefef 0%, #fff 100%);
  border-radius: 12px;
  margin-bottom: 40px; }
  /* line 36, theme.page.scss */
  .partnership-hero h1 {
    color: #257b7c;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700; }
  /* line 43, theme.page.scss */
  .partnership-hero .hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto; }
    /* line 48, theme.page.scss */
    .partnership-hero .hero-subtitle strong {
      color: #31a2a3; }

/* Сетка преимуществ */
/* line 55, theme.page.scss */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px; }

/* line 62, theme.page.scss */
.advantage-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #31a2a3; }
  /* line 70, theme.page.scss */
  .advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }
  /* line 75, theme.page.scss */
  .advantage-card .advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 15px; }
  /* line 80, theme.page.scss */
  .advantage-card h3 {
    color: #257b7c;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600; }
  /* line 87, theme.page.scss */
  .advantage-card ul {
    list-style: none;
    padding: 0; }
    /* line 91, theme.page.scss */
    .advantage-card ul li {
      padding: 8px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
      /* line 95, theme.page.scss */
      .advantage-card ul li:last-child {
        border-bottom: none; }
      /* line 99, theme.page.scss */
      .advantage-card ul li strong {
        color: #31a2a3; }

/* Секция сертификатов */
/* line 107, theme.page.scss */
.certificates-section {
  background: #f8f8f8;
  padding: 40px 30px;
  border-radius: 12px;
  margin-bottom: 50px;
  text-align: center; }
  /* line 114, theme.page.scss */
  .certificates-section h2 {
    color: #257b7c;
    margin-bottom: 15px;
    font-weight: 600; }
  /* line 120, theme.page.scss */
  .certificates-section > p {
    margin-bottom: 30px;
    opacity: 0.8; }

/* line 126, theme.page.scss */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; }

/* line 132, theme.page.scss */
.certificate-item {
  background: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-weight: 500;
  transition: all 0.3s ease; }
  /* line 140, theme.page.scss */
  .certificate-item:hover {
    background: #31a2a3;
    color: #fff; }

/* Секция отзывов */
/* line 147, theme.page.scss */
.reviews-section {
  margin-bottom: 50px; }
  /* line 150, theme.page.scss */
  .reviews-section h2 {
    text-align: center;
    color: #257b7c;
    margin-bottom: 30px;
    font-weight: 600; }

/* line 158, theme.page.scss */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px; }

/* line 164, theme.page.scss */
.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #31a2a3; }
  /* line 171, theme.page.scss */
  .review-card p {
    font-style: italic;
    margin-bottom: 15px; }
  /* line 176, theme.page.scss */
  .review-card .review-author {
    font-weight: 600;
    color: #257b7c; }

/* Призыв к действию */
/* line 183, theme.page.scss */
.cta-section {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, #31a2a3 0%, #257b7c 100%);
  color: #fff;
  border-radius: 12px; }
  /* line 190, theme.page.scss */
  .cta-section h2 {
    margin-bottom: 15px;
    font-weight: 700; }
  /* line 195, theme.page.scss */
  .cta-section > p {
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto; }

/* line 204, theme.page.scss */
.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px; }

/* line 212, theme.page.scss */
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #fff;
  color: #31a2a3;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease; }
  /* line 222, theme.page.scss */
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); }
  /* line 227, theme.page.scss */
  .cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff; }
    /* line 232, theme.page.scss */
    .cta-button.secondary:hover {
      background: #fff;
      color: #31a2a3; }

/* line 239, theme.page.scss */
.cta-hours {
  opacity: 0.8;
  font-size: 0.9rem; }

/* Адаптивность */
@media (max-width: 768px) {
  /* line 246, theme.page.scss */
  .partnership-hero h1 {
    font-size: 2rem; }

  /* line 250, theme.page.scss */
  .advantages-grid {
    grid-template-columns: 1fr; }

  /* line 254, theme.page.scss */
  .cta-contacts {
    flex-direction: column;
    align-items: center; }

  /* line 259, theme.page.scss */
  .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center; } }
