* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation: none !important;
        transition: none !important;
      }
    }

    :root {
      --bg: #102018;
      --text: #e7f0df;
      --accent: #2fa36b;
      --accent-blue: #2f6fed;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: clip;
    }

    /* Header */
    header {
      background: rgba(16, 32, 24, 0.95);
      padding: 1rem;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
      border-bottom: 1px solid rgba(47, 163, 107, 0.2);
    }

    .header-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Manrope', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: -0.5px;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text);
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.5rem;
    }

    nav {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    nav a {
      color: rgba(231, 240, 223, 0.75);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    nav a:hover {
      color: var(--accent);
    }

    .cta-header {
      background: var(--accent);
      color: #102018;
      padding: 0.75rem 1.5rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: background 0.3s, transform 0.2s;
      min-height: 44px;
      display: flex;
      align-items: center;
    }

    .cta-header:hover {
      background: #24844f;
      transform: translateY(-2px);
    }

    /* Hero */
    .hero {
      background: linear-gradient(135deg, #102018 0%, #1a3a2e 100%);
      padding: 6rem 1rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(47, 163, 107, 0.08) 0%, transparent 70%);
      top: -200px;
      right: -150px;
      border-radius: 50%;
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(47, 107, 237, 0.05) 0%, transparent 70%);
      bottom: -150px;
      left: -100px;
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    h1 {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      color: var(--text);
      margin-bottom: 1.5rem;
      line-height: 1.2;
      animation: fadeInDown 0.8s ease-out;
    }

    .hero-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: rgba(231, 240, 223, 0.85);
      margin-bottom: 2.5rem;
      animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .hero-cta {
      display: inline-block;
      background: var(--accent);
      color: #102018;
      padding: 1rem 2.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.05rem;
      transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
      box-shadow: 0 8px 24px rgba(47, 163, 107, 0.25);
      animation: fadeInUp 0.8s ease-out 0.4s both;
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .hero-cta:hover {
      background: #24844f;
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(47, 163, 107, 0.35);
    }

    /* Animations */
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes pulse {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.7;
      }
    }

    /* Benefits Section */
    .benefits {
      padding: 5rem 1rem;
      background: rgba(47, 163, 107, 0.05);
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--text);
      margin-bottom: 3rem;
      text-align: center;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .benefit-item {
      background: linear-gradient(135deg, rgba(47, 163, 107, 0.1) 0%, rgba(47, 107, 237, 0.05) 100%);
      padding: 2rem;
      border-radius: 12px;
      border: 1px solid rgba(47, 163, 107, 0.2);
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeInUp 0.6s ease-out;
    }

    .benefit-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(47, 163, 107, 0.15);
    }

    .benefit-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .benefit-item h3 {
      font-family: 'Manrope', sans-serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 0.8rem;
    }

    .benefit-item p {
      color: rgba(231, 240, 223, 0.8);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* Visual Section */
    .visual-section {
      padding: 5rem 1rem;
      background: #102018;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .visual-image {
      position: relative;
    }

    .visual-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 16px 48px rgba(47, 163, 107, 0.15);
      animation: slideInLeft 0.8s ease-out;
    }

    .visual-content {
      animation: slideInRight 0.8s ease-out;
    }

    .visual-content h2 {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--text);
      margin-bottom: 1.5rem;
      line-height: 1.3;
    }

    .visual-content p {
      font-size: 1.05rem;
      color: rgba(231, 240, 223, 0.85);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .feature-list {
      list-style: none;
      margin-bottom: 2rem;
    }

    .feature-list li {
      padding: 0.8rem 0;
      padding-left: 2.5rem;
      position: relative;
      color: rgba(231, 240, 223, 0.8);
      font-size: 1rem;
    }

    .feature-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
      font-size: 1.2rem;
    }

    /* Reviews Section */
    .reviews {
      padding: 5rem 1rem;
      background: rgba(47, 163, 107, 0.03);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .review-card {
      background: linear-gradient(135deg, rgba(47, 163, 107, 0.1) 0%, rgba(47, 107, 237, 0.05) 100%);
      padding: 2rem;
      border-radius: 12px;
      border: 1px solid rgba(47, 163, 107, 0.2);
      animation: fadeInUp 0.6s ease-out;
    }

    .review-stars {
      color: var(--accent);
      font-size: 1.1rem;
      margin-bottom: 1rem;
      letter-spacing: 0.3rem;
    }

    .review-text {
      color: rgba(231, 240, 223, 0.85);
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
      line-height: 1.7;
      font-style: italic;
    }

    .review-author {
      font-weight: 600;
      color: var(--text);
      font-size: 0.95rem;
    }

    .review-city {
      color: rgba(231, 240, 223, 0.6);
      font-size: 0.85rem;
      margin-top: 0.3rem;
    }

    /* FAQ Section */
    .faq {
      padding: 5rem 1rem;
      background: #102018;
    }

    .faq-container {
      max-width: 700px;
      margin: 0 auto;
    }

    .faq-item {
      margin-bottom: 1.5rem;
      border-bottom: 1px solid rgba(47, 163, 107, 0.2);
      animation: fadeInUp 0.6s ease-out;
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      font-family: 'Manrope', sans-serif;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--text);
      padding: 1.5rem 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s;
    }

    .faq-question:hover {
      color: var(--accent);
    }

    .faq-toggle {
      color: var(--accent);
      font-size: 1.3rem;
      transition: transform 0.3s;
    }

    .faq-item.active .faq-toggle {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      color: rgba(231, 240, 223, 0.8);
      font-size: 0.95rem;
      line-height: 1.7;
      padding-bottom: 1rem;
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      transition: max-height 0.3s ease-in;
    }

    /* Form Section */
    .form-section {
      padding: 5rem 1rem;
      background: linear-gradient(135deg, rgba(47, 163, 107, 0.08) 0%, rgba(47, 107, 237, 0.04) 100%);
    }

    .form-container {
      max-width: 500px;
      margin: 0 auto;
    }

    .form-title {
      font-family: 'Manrope', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .form-subtitle {
      text-align: center;
      color: rgba(231, 240, 223, 0.7);
      margin-bottom: 2rem;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    label {
      font-weight: 500;
      color: var(--text);
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
    }

    input[type="text"],
    input[type="tel"] {
      padding: 0.9rem;
      border: 1px solid rgba(47, 163, 107, 0.3);
      border-radius: 6px;
      background: rgba(16, 32, 24, 0.5);
      color: var(--text);
      font-size: 1rem;
      transition: border-color 0.3s, background 0.3s;
      font-family: 'Inter', sans-serif;
    }

    input[type="text"]:focus,
    input[type="tel"]:focus {
      outline: none;
      border-color: var(--accent);
      background: rgba(16, 32, 24, 0.8);
    }

    input[type="hidden"] {
      display: none;
    }

    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      margin: 1rem 0;
    }

    input[type="checkbox"] {
      width: 20px;
      height: 20px;
      margin-top: 2px;
      cursor: pointer;
      accent-color: var(--accent);
      flex-shrink: 0;
    }

    .checkbox-label {
      font-size: 0.9rem;
      color: rgba(231, 240, 223, 0.75);
      line-height: 1.5;
      margin: 0;
    }

    .checkbox-label a {
      color: var(--accent);
      text-decoration: none;
      transition: color 0.3s;
    }

    .checkbox-label a:hover {
      color: #24844f;
      text-decoration: underline;
    }

    .submit-btn {
      background: var(--accent);
      color: #102018;
      padding: 1rem;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      font-size: 1.05rem;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      min-height: 48px;
      font-family: 'Inter', sans-serif;
    }

    .submit-btn:hover {
      background: #24844f;
      transform: translateY(-2px);
    }

    .submit-btn:active {
      transform: translateY(0);
    }

    /* Footer */
    footer {
      background: rgba(16, 32, 24, 0.95);
      padding: 3rem 1rem;
      border-top: 1px solid rgba(47, 163, 107, 0.2);
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 {
      font-family: 'Manrope', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .footer-section p {
      color: rgba(231, 240, 223, 0.75);
      font-size: 0.9rem;
      line-height: 1.8;
    }

    .footer-divider {
      width: 100%;
      height: 1px;
      background: rgba(47, 163, 107, 0.2);
      margin: 2rem 0;
    }

    .footer-bottom {
      text-align: center;
      color: rgba(231, 240, 223, 0.6);
      font-size: 0.85rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-toggle {
        display: block;
      }

      nav {
        display: none;
      }

      nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(16, 32, 24, 0.98);
        padding: 1rem;
        border-top: 1px solid rgba(47, 163, 107, 0.2);
      }

      nav.active a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(47, 163, 107, 0.1);
      }

      .visual-section {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }

      h1 {
        font-size: 2rem;
      }

      .section-title {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 480px) {
      header {
        padding: 0.75rem;
      }

      .logo {
        font-size: 1.25rem;
      }

      .hero {
        padding: 3rem 1rem;
      }

      .hero-cta {
        min-height: 48px;
        padding: 0.9rem 2rem;
      }

      .benefits {
        padding: 3rem 1rem;
      }

      .benefits-grid {
        grid-template-columns: 1fr;
      }

      .reviews {
        padding: 3rem 1rem;
      }

      .faq {
        padding: 3rem 1rem;
      }

      .form-section {
        padding: 3rem 1rem;
      }

      form {
        gap: 1rem;
      }

      footer {
        padding: 2rem 1rem;
      }

      .benefit-item {
        padding: 1.5rem;
      }
    }

:root{--pb-bg:#102018;--pb-text:#e7f0df;--pb-accent:#2fa36b;--pb-accent-2:#2f6fed;}html,body{background-color:var(--pb-bg)!important;color:var(--pb-text)!important;}body a:not([class]){color:var(--pb-accent);}button,input[type=submit],.btn,[class*="cta"],[class*="Cta"],.submit-btn,.hero-cta{background:var(--pb-accent)!important;color:#ffffff!important;border-color:var(--pb-accent)!important;}
.legal{max-width:42rem;margin:2rem auto;padding:0 16px;line-height:1.55;}
.legal-links{text-align:center;margin:24px 0;font-size:.85rem;}
.site-legal{max-width:52rem;margin:2rem auto 1rem;padding:16px;font-size:.82rem;line-height:1.5;opacity:.9;}

