:root {
      --primary: #2F855A;
      --accent: #F6AD55;
      --bg: #F0FFF4;
      --text: #1A202C;
      --radius-lg: 16px;
      --font-base: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --font-heading: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-base);
      color: var(--text);
      background-color: var(--bg);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: var(--primary);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 16px;
    }

    h1, h2, h3, h4 {
      font-family: var(--font-heading);
      color: var(--text);
      margin-bottom: 0.5em;
    }

    p {
      margin-bottom: 1em;
    }

    .btn {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-family: var(--font-heading);
      font-size: 0.95rem;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 10px 18px rgba(47, 133, 90, 0.28);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 24px rgba(47, 133, 90, 0.35);
    }

    .btn-secondary {
      background: #fff;
      color: var(--primary);
      border: 2px solid rgba(47, 133, 90, 0.2);
    }

    .btn-secondary:hover {
      background: #fdfdfd;
      border-color: var(--primary);
    }

    .section {
      padding: 60px 0;
    }

    .section.bg-color {
      background-color: #ffffff;
    }

    .section-title {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .section-subtitle {
      color: #4A5568;
      margin-bottom: 1rem;
    }

    .section-text {
      max-width: 720px;
      color: #2D3748;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 40px;
      align-items: center;
    }

    .grid-1 {
      display: block;
    }

    @media (max-width: 768px) {
      .grid-2 {
        grid-template-columns: 1fr;
      }
      .hero {
        padding-top: 40px;
      }
    }

    /* HERO */
    .hero {
      min-height: 90vh;
      background: radial-gradient(circle at top left, #C6F6D5 0, #F0FFF4 45%, #ffffff 100%);
      display: flex;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(47, 133, 90, 0.18);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1.25rem;
      color: #2F855A;
      font-weight: 600;
    }

    .hero-title {
      font-size: clamp(2.4rem, 3.1vw, 3.3rem);
      margin-bottom: 0.75rem;
    }

    .hero-subtitle {
      font-size: 1.1rem;
      color: #4A5568;
      margin-bottom: 1.25rem;
    }

    .hero-text {
      color: #2D3748;
      margin-bottom: 1.75rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 1.25rem;
    }

    .hero-note {
      font-size: 0.85rem;
      color: #4A5568;
    }

    .hero-visual {
      position: relative;
      padding: 16px;
    }

    .hero-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 18px 18px 16px;
      box-shadow: 0 18px 35px rgba(15, 23, 42, 0.15);
      max-width: 360px;
      margin-left: auto;
    }

    .hero-card-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.35rem;
      color: #22543D;
    }

    .hero-card-subtitle {
      font-size: 0.85rem;
      color: #4A5568;
      margin-bottom: 0.75rem;
    }

    .hero-card-list {
      list-style: none;
      font-size: 0.85rem;
      margin-bottom: 0.75rem;
    }

    .hero-card-list li {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 4px;
      color: #2D3748;
    }

    .hero-card-list li::before {
      content: "•";
      color: var(--primary);
      font-size: 1.1em;
    }

    .hero-card-footnote {
      font-size: 0.75rem;
      color: #718096;
    }

    /* ABOUT */
    .about-image {
      border-radius: var(--radius-lg);
      padding: 1px;
      background: linear-gradient(135deg, rgba(47,133,90,0.35), rgba(246,173,85,0.4));
    }

    .about-image-inner {
      border-radius: calc(var(--radius-lg) - 1px);
      background-color: #ffffff;
      padding: 14px;
    }

    .about-tagline {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #2F855A;
      margin-bottom: 0.75rem;
    }

    /* FAQ */
    .faq {
      background-color: #ffffff;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px 40px;
      margin-top: 24px;
    }

    @media (max-width: 768px) {
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }

    .faq-item-title {
      font-weight: 600;
      margin-bottom: 0.35rem;
      color: #22543D;
    }

    .faq-item-text {
      font-size: 0.95rem;
      color: #4A5568;
    }

    /* CONTACTS */
    .contacts {
      min-height: 70vh;
      position: relative;
      background-size: cover;
      background-position: center;
      background-image: url("/img/image_694cf8397bde2.png");
    }

    .contacts::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.35));
    }

    .contacts-inner {
      position: relative;
      z-index: 1;
    }

    .contacts-info {
      color: #F7FAFC;
    }

    .contacts-info h2 {
      color: #F7FAFC;
    }

    .contacts-card {
      background-color: rgba(255, 255, 255, 0.96);
      border-radius: var(--radius-lg);
      padding: 24px 22px;
      max-width: 420px;
      margin-left: auto;
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(10px);
    }

    .form-group {
      margin-bottom: 0.9rem;
    }

    label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
      color: #2D3748;
    }

    input, textarea {
      width: 100%;
      padding: 0.6rem 0.8rem;
      border-radius: 10px;
      border: 1px solid #CBD5E0;
      font-family: var(--font-base);
      font-size: 0.9rem;
      outline: none;
      transition: border 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
      background-color: #F7FAFC;
    }

    input:focus, textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(47, 133, 90, 0.45);
      background-color: #ffffff;
    }

    textarea {
      min-height: 100px;
      resize: vertical;
    }

    /* PORTFOLIO */
    .portfolio {
      background-color: #ffffff;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 20px;
    }

    @media (max-width: 900px) {
      .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 600px) {
      .portfolio-grid {
        grid-template-columns: 1fr;
      }
    }

    .portfolio-card {
      border-radius: 14px;
      overflow: hidden;
      background-color: #F7FAFC;
      border: 1px solid #E2E8F0;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .portfolio-card-header {
      padding: 12px 14px 10px;
      background: linear-gradient(135deg, rgba(47,133,90,0.12), rgba(246,173,85,0.12));
    }

    .portfolio-card-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 2px;
      color: #22543D;
    }

    .portfolio-card-tag {
      font-size: 0.78rem;
      color: #4A5568;
    }

    .portfolio-card-body {
      padding: 10px 14px 14px;
      font-size: 0.88rem;
      color: #4A5568;
      flex: 1;
    }

    /* NEWSLETTER */
    .newsletter {
      background-color: #F7FAFC;
      text-align: center;
    }

    .newsletter-form {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .newsletter-form input[type="email"] {
      max-width: 340px;
    }

    /* ADVANTAGES */
    .advantages-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px 32px;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .advantages-list {
        grid-template-columns: 1fr;
      }
    }

    .adv-item-title {
      font-weight: 600;
      margin-bottom: 2px;
      color: #22543D;
    }

    .adv-item-text {
      font-size: 0.95rem;
      color: #4A5568;
    }

    /* FOOTER */
    .footer {
      background-color: #1A202C;
      color: #E2E8F0;
      font-size: 0.9rem;
    }

    .footer h2 {
      color: #F7FAFC;
    }

    .footer-links {
      margin-top: 8px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.85rem;
    }

    .footer a {
      color: #A0AEC0;
    }

    .footer a:hover {
      color: #E2E8F0;
    }

    .footer-bottom {
      margin-top: 16px;
      font-size: 0.8rem;
      color: #A0AEC0;
    }

    /* COOKIE NOTICE */
    .cookie-banner {
      position: fixed;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 50;
      background-color: #1A202C;
      color: #E2E8F0;
      border-radius: 12px;
      padding: 12px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      box-shadow: 0 14px 30px rgba(0,0,0,0.45);
      font-size: 0.85rem;
    }

    .cookie-banner button {
      font-size: 0.85rem;
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-family: var(--font-heading);
      font-weight: 600;
    }

    .cookie-accept {
      background-color: var(--accent);
      color: #1A202C;
    }

    .cookie-accept:hover {
      opacity: 0.9;
    }

    @media (max-width: 600px) {
      .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* SIMPLE HEADER / NAV */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background-color: rgba(240, 255, 244, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--primary);
    }

    .nav-links {
      display: flex;
      gap: 16px;
      font-size: 0.9rem;
    }

    .nav-links a {
      color: #2D3748;
      font-weight: 500;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
    }
