
    :root {
      --bg-main: #f4f1ea;
      --bg-card: #ffffff;
      --bg-soft: #fefcf7;
      --accent: #16a34a;
      --accent-strong: #15803d;
      --accent-soft: rgba(22, 163, 74, 0.08);
      --accent-warm: #ea580c;
      --text: #0f172a;
      --text-muted: #6b7280;
      --border-subtle: #e5e7eb;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.16);
      --radius-xl: 22px;
      --nav-height: 70px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top left, #e0f2fe 0, transparent 45%),
        radial-gradient(circle at bottom right, #fee2e2 0, transparent 55%),
        var(--bg-main);
      color: var(--text);
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .page { min-height: 100vh; }

    .container {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 16px;
    }

    /* HEADER */

    header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(18px);
      background: linear-gradient(to bottom, rgba(254, 252, 232, 0.96), rgba(254, 252, 232, 0.9));
      border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    }

    .nav {
      height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background:
        linear-gradient(145deg, #16a34a, #22c55e);
      position: relative;
      box-shadow: 0 10px 24px rgba(22, 163, 74, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ecfdf5;
      font-weight: 800;
      font-size: 16px;
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      inset: 4px;
      border-radius: inherit;
      border: 1px solid rgba(240, 253, 250, 0.45);
    }

    .logo-text-main {
      font-weight: 700;
      letter-spacing: 0.06em;
      font-size: 16px;
      text-transform: uppercase;
    }

    .logo-text-sub {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 14px;
    }

    nav a {
      color: var(--text-muted);
      position: relative;
      padding: 4px 0;
      transition: color 0.15s ease;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -4px;
      height: 2px;
      border-radius: 999px;
      transform-origin: center;
      transform: scaleX(0);
      background: linear-gradient(to right, #16a34a, #22c55e, #facc15);
      transition: transform 0.18s ease;
    }

    nav a:hover {
      color: #111827;
    }

    nav a:hover::after {
      transform: scaleX(1);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .nav-cta {
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 13px;
      background: linear-gradient(135deg, #16a34a, #22c55e);
      color: #ecfdf5;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 10px 26px rgba(22, 163, 74, 0.45);
    }

    .nav-cta span { font-size: 16px; }

    /* BURGER */

    .burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(209, 213, 219, 0.9);
      background: #fefce8;
      cursor: pointer;
      padding: 6px 7px;
    }

    .burger-line {
      height: 2px;
      border-radius: 999px;
      background: #111827;
      transition: transform 0.18s ease, opacity 0.16s ease;
    }

    .burger.active .line-1 {
      transform: translateY(3px) rotate(45deg);
    }

    .burger.active .line-2 { opacity: 0; }

    .burger.active .line-3 {
      transform: translateY(-3px) rotate(-45deg);
    }

    .nav-links-mobile {
      display: none;
    }

    .nav-links-mobile.open {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 10px 0 12px;
    }

    .nav-links-mobile a {
      font-size: 14px;
      color: #111827;
    }

    /* HERO */

    .hero {
      padding: 40px 0 70px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
      gap: 40px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      background: #ecfdf5;
      border: 1px solid #bbf7d0;
      color: #166534;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 12px;
    }

    .eyebrow span { font-size: 15px; }

    .hero-title {
      font-size: clamp(30px, 4vw, 40px);
      line-height: 1.08;
      margin: 0 0 12px;
      color: #022c22;
    }

    .hero-title span {
      background: linear-gradient(135deg, #16a34a, #22c55e, #f97316);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 520px;
      margin-bottom: 18px;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .tag {
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(209, 213, 219, 0.9);
      background: rgba(255, 255, 255, 0.9);
      font-size: 11px;
      color: #111827;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 16px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 20px;
      border-radius: 999px;
      background: linear-gradient(135deg, #16a34a, #22c55e);
      border: none;
      color: #ecfdf5;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      box-shadow: 0 14px 32px rgba(22, 163, 74, 0.5);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 18px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid rgba(209, 213, 219, 0.9);
      color: #111827;
      font-weight: 500;
      font-size: 13px;
      cursor: pointer;
    }

    .note {
      font-size: 12px;
      color: var(--text-muted);
    }

    .hero-right {
      position: relative;
    }

    .hero-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-subtle);
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 55%),
        radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.16), transparent 60%),
        var(--bg-card);
      padding: 18px 18px 14px;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .hero-card-title {
      font-size: 14px;
      font-weight: 600;
    }

    .hero-card-chip {
      font-size: 11px;
      padding: 3px 8px;
      border-radius: 999px;
      background: #fefce8;
      color: #854d0e;
      border: 1px solid #facc15;
    }

    .hero-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      font-size: 12px;
    }

    .hero-stat {
      padding: 10px;
      border-radius: 16px;
      background: #f9fafb;
      border: 1px solid #e5e7eb;
    }

    .hero-stat-label {
      color: var(--text-muted);
      font-size: 11px;
      margin-bottom: 4px;
    }

    .hero-stat-value {
      font-weight: 600;
      font-size: 13px;
      color: #111827;
    }

    .hero-badge {
      position: absolute;
      right: 10px;
      bottom: -4px;
      padding: 7px 10px;
      border-radius: 999px;
      background: #111827;
      color: #f9fafb;
      font-size: 11px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-badge span { font-size: 13px; }

    /* SECTIONS */

    section { padding: 40px 0; }

    .section-title {
      font-size: 22px;
      margin-bottom: 8px;
      color: #022c22;
    }

    .section-subtitle {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 640px;
      margin-bottom: 22px;
    }

    /* ABOUT */

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 28px;
      align-items: flex-start;
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }

    .pill {
      font-size: 11px;
      padding: 4px 8px;
      border-radius: 999px;
      background: #111827;
      border: 1px solid #111827;
      color: #f9fafb;
    }

    .about-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-subtle);
      background: var(--bg-card);
      padding: 16px 16px 14px;
      font-size: 13px;
      box-shadow: var(--shadow-soft);
    }

    .about-card h3 {
      margin: 0 0 6px;
      font-size: 15px;
      color: #111827;
    }

    .about-card ul {
      margin: 8px 0 0 20px;
      padding: 0;
      color: var(--text-muted);
    }

    .about-card li { margin-bottom: 4px; }

    /* CARDS */

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .card {
      border-radius: 18px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    }

    .card-image {
      height: 150px;
      background-size: cover;
      background-position: center;
    }

    .card-body {
      padding: 12px 14px 14px;
      font-size: 13px;
    }

    .card-title {
      font-size: 15px;
      margin-bottom: 4px;
      color: #111827;
    }

    .card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .card-price {
      font-weight: 600;
      font-size: 13px;
      margin-bottom: 2px;
      color: #166534;
    }

    .card-tagline {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* WHY & STEPS */

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .why-item {
      border-radius: 18px;
      padding: 14px 13px;
      border: 1px solid var(--border-subtle);
      background: #ffffff;
      font-size: 13px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    }

    .why-icon { font-size: 18px; margin-bottom: 4px; }

    .why-item h3 {
      margin: 0 0 4px;
      font-size: 14px;
      color: #111827;
    }

    .why-item p {
      margin: 0;
      color: var(--text-muted);
      font-size: 12px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      font-size: 12px;
    }

    .step {
      border-radius: 16px;
      background: #ffffff;
      border: 1px solid var(--border-subtle);
      padding: 12px 12px 10px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    }

    .step-number {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #ecfdf5;
      border: 1px solid #6ee7b7;
      color: #166534;
      font-size: 12px;
      margin-bottom: 6px;
    }

    .step-title {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .step p {
      margin: 0;
      color: var(--text-muted);
    }

    /* TESTIMONIALS */

    .testimonials {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      font-size: 12px;
    }

    .testimonial {
      border-radius: 18px;
      padding: 12px 12px 11px;
      background: #ffffff;
      border: 1px solid var(--border-subtle);
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    }

    .testimonial p {
      margin: 0 0 6px;
      color: var(--text-muted);
    }

    .testimonial-author {
      font-weight: 600;
      font-size: 12px;
      color: #111827;
    }

    .testimonial-meta {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* FAQ */

    .faq-list {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 20px;
      font-size: 13px;
    }

    .faq-item {
      border-radius: 16px;
      padding: 10px 12px;
      border: 1px solid var(--border-subtle);
      background: #ffffff;
      margin-bottom: 8px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    }

    .faq-item strong {
      display: block;
      margin-bottom: 4px;
      color: #111827;
    }

    .faq-item p {
      margin: 0;
      color: var(--text-muted);
      font-size: 12px;
    }

    .faq-note {
      border-radius: 16px;
      padding: 12px 12px 10px;
      border: 1px dashed #d4d4d8;
      background: #f9fafb;
      font-size: 12px;
      color: var(--text-muted);
    }

    /* CTA CONTACT */

    .contact-cta {
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, #16a34a, #22c55e);
      color: #ecfdf5;
      padding: 18px 18px 16px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      box-shadow: 0 18px 40px rgba(22, 163, 74, 0.45);
    }

    .contact-cta h3 {
      margin: 0 0 4px;
      font-size: 18px;
    }

    .contact-cta p {
      margin: 0;
      font-size: 13px;
      opacity: 0.95;
    }

    .contact-cta-btn {
      border-radius: 999px;
      padding: 10px 18px;
      border: none;
      font-size: 14px;
      font-weight: 600;
      background: #fefce8;
      color: #166534;
      cursor: pointer;
      white-space: nowrap;
    }

    /* FOOTER */

    footer {
      border-top: 1px solid #e5e7eb;
      padding: 16px 0 22px;
      font-size: 12px;
      color: var(--text-muted);
      background: rgba(254, 252, 232, 0.96);
      margin-top: 16px;
    }

    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .footer-links a {
      text-decoration: underline;
      text-decoration-style: dotted;
      text-underline-offset: 3px;
    }

    /* COOKIE BANNER */

    .cookie-banner {
      position: fixed;
      inset-inline: 0;
      bottom: 0;
      z-index: 50;
      background: #111827;
      border-top: 1px solid #4b5563;
      padding: 10px 16px;
      font-size: 13px;
      color: #e5e7eb;
      display: none;
    }

    .cookie-banner.visible { display: block; }

    .cookie-banner-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    .cookie-banner-text { flex: 1 1 220px; }

    .cookie-banner-text a {
      color: #6ee7b7;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cookie-banner-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: flex-end;
    }

    .cookie-btn-primary,
    .cookie-btn-secondary {
      border-radius: 999px;
      padding: 7px 14px;
      font-size: 12px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

    .cookie-btn-primary {
      background: linear-gradient(135deg, #16a34a, #22c55e);
      color: #ecfdf5;
      box-shadow: 0 10px 24px rgba(16, 185, 129, 0.45);
    }

    .cookie-btn-secondary {
      background: transparent;
      color: #e5e7eb;
      border: 1px solid #6b7280;
    }

    /* RESPONSIVE */

    @media (max-width: 960px) {
      .hero-grid,
      .about-grid,
      .cards-grid,
      .why-grid,
      .steps,
      .testimonials,
      .faq-list {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        padding-top: 28px;
      }

      .hero-right { order: -1; }

      .cards-grid,
      .testimonials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cookie-banner { padding-inline: 12px; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .burger { display: inline-flex; }

      .cards-grid,
      .testimonials {
        grid-template-columns: minmax(0, 1fr);
      }

      section { padding: 32px 0; }
    }

    @media (max-width: 480px) {
      .contact-cta {
        align-items: flex-start;
      }
    }



      .nav-links {
        display: flex;
        gap: 14px;
        align-items: center;
        font-size: 13px;
      }
      .nav-links a {
        color: #6b7280;
      }
      .nav-links a:hover {
        color: #111827;
      }
      .nav-cta {
        padding: 7px 13px;
        border-radius: 999px;
        border: none;
        background: linear-gradient(135deg, #16a34a, #22c55e);
        color: #ecfdf5;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
      }
      .burger {
        display: none;
      }
      main {
        padding: 28px 0 40px;
      }
      h1 {
        font-size: 24px;
        margin-bottom: 8px;
        color: #022c22;
      }
      p {
        font-size: 14px;
        color: #4b5563;
      }
      .layout {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: 24px;
        margin-top: 18px;
      }
      .card {
        border-radius: 18px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        padding: 16px 16px 14px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
        font-size: 13px;
      }
      .card h2 {
        margin: 0 0 6px;
        font-size: 18px;
        color: #111827;
      }
      .card h3 {
        margin: 12px 0 4px;
        font-size: 14px;
        color: #111827;
      }
      .contact-list {
        list-style: none;
        margin: 8px 0 0;
        padding: 0;
        color: #6b7280;
      }
      .contact-list li {
        margin-bottom: 6px;
      }
      form {
        display: block;
      }
      .field {
        margin-bottom: 10px;
      }
      label {
        display: block;
        font-size: 12px;
        margin-bottom: 4px;
        color: #111827;
      }
      input,
      textarea {
        width: 100%;
        border-radius: 10px;
        border: 1px solid #d4d4d8;
        padding: 8px 10px;
        font-size: 13px;
        background: #f9fafb;
        color: #111827;
        font-family: inherit;
        outline: none;
      }
      textarea {
        min-height: 90px;
        resize: vertical;
      }
      input:focus,
      textarea:focus {
        border-color: #16a34a;
        box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.4);
        background: #ffffff;
      }
      .btn-submit {
        width: 100%;
        border-radius: 999px;
        border: none;
        padding: 10px 16px;
        background: linear-gradient(135deg, #16a34a, #22c55e);
        color: #ecfdf5;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        box-shadow: 0 14px 32px rgba(22, 163, 74, 0.5);
        margin-top: 4px;
      }
      .hint {
        font-size: 12px;
        color: #6b7280;
        margin-top: 8px;
      }
      footer {
        border-top: 1px solid #e5e7eb;
        padding: 16px 0 22px;
        font-size: 12px;
        color: #6b7280;
        background: rgba(254, 252, 232, 0.96);
        margin-top: 16px;
      }
      .footer-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      .footer-links {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }
      .footer-links a {
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-style: dotted;
      }
      /* Burger on small screens */
      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }
        .burger {
          display: flex;
          flex-direction: column;
          justify-content: center;
          gap: 4px;
          width: 32px;
          height: 32px;
          border-radius: 999px;
          border: 1px solid rgba(209, 213, 219, 0.9);
          background: #fefce8;
          cursor: pointer;
          padding: 6px 7px;
        }
        .burger-line {
          height: 2px;
          border-radius: 999px;
          background: #111827;
          transition: transform 0.18s ease, opacity 0.16s ease;
        }
        .burger.active .line-1 {
          transform: translateY(3px) rotate(45deg);
        }
        .burger.active .line-2 {
          opacity: 0;
        }
        .burger.active .line-3 {
          transform: translateY(-3px) rotate(-45deg);
        }
        .nav-links-mobile {
          display: none;
        }
        .nav-links-mobile.open {
          display: flex;
          flex-direction: column;
          gap: 8px;
          padding: 10px 0 12px;
        }
        .nav-links-mobile a {
          font-size: 14px;
          color: #111827;
        }
        .layout {
          grid-template-columns: minmax(0, 1fr);
        }
      }
      @media (max-width: 480px) {
        main {
          padding-top: 20px;
        }
      }

      /* COOKIE BANNER (той самий, що на головній) */
      .cookie-banner {
        position: fixed;
        inset-inline: 0;
        bottom: 0;
        z-index: 50;
        background: #111827;
        border-top: 1px solid #4b5563;
        padding: 10px 16px;
        font-size: 13px;
        color: #e5e7eb;
        display: none;
      }
      .cookie-banner.visible {
        display: block;
      }
      .cookie-banner-inner {
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
      }
      .cookie-banner-text {
        flex: 1 1 220px;
      }
      .cookie-banner-text a {
        color: #6ee7b7;
        text-decoration: underline;
        text-underline-offset: 3px;
      }
      .cookie-banner-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
      }
      .cookie-btn-primary,
      .cookie-btn-secondary {
        border-radius: 999px;
        padding: 7px 14px;
        font-size: 12px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        font-family: inherit;
      }
      .cookie-btn-primary {
        background: linear-gradient(135deg, #16a34a, #22c55e);
        color: #ecfdf5;
        box-shadow: 0 10px 24px rgba(16, 185, 129, 0.45);
      }
      .cookie-btn-secondary {
        background: transparent;
        color: #e5e7eb;
        border: 1px solid #6b7280;
      }
