section {
      padding: 80px 0;
    }

    .hero-section {
      background: var(--gradient-surface);
      overflow: hidden;
      position: relative;
    }

    .hero-section::before {
      background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15), transparent 50%);
      content: '';
      height: 100%;
      left: 0;
      pointer-events: none;
      position: absolute;
      top: 0;
      width: 100%;
    }

    .hero-section .container {
      position: relative;
      z-index: 1;
    }

    .hero-section h1 {
      animation: fadeInUp 0.8s ease;
      background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-section p {
      animation: fadeInUp 1s ease;
      font-size: clamp(16px, 2vw, 20px);
    }

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

    .trust-badges {
      align-items: center;
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
      margin: 40px 0;
    }

    .trust-badge {
      align-items: center;
      background: var(--surface-light);
      border: 1px solid var(--border);
      border-radius: 12px;
      display: flex;
      gap: 12px;
      padding: 16px 24px;
    }

    .trust-badge-icon {
      color: var(--success);
      font-size: 24px;
    }

    .trust-badge-text {
      color: var(--text-secondary);
      font-size: 14px;
      font-weight: 500;
    }

    .cards-grid-2 {
      display: grid;
      gap: 32px;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      margin: 40px 0;
    }

    .cards-grid-4 {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      margin: 40px 0;
    }

    .accordion {
      margin: 40px 0;
    }

    .accordion-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      margin-bottom: 16px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .accordion-item:hover {
      box-shadow: var(--shadow-md);
    }

    .accordion-header {
      align-items: center;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      padding: 24px;
      position: relative;
      transition: background 0.3s ease;
    }

    .accordion-header:hover {
      background: var(--surface-light);
    }

    .accordion-header::after {
      color: var(--primary);
      content: '+';
      font-size: 28px;
      font-weight: 700;
      transition: transform 0.3s ease;
    }

    .accordion-item.active .accordion-header::after {
      content: '−';
    }

    .accordion-header h3 {
      font-size: clamp(18px, 2.5vw, 22px);
      margin: 0;
      padding-right: 40px;
    }

    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .accordion-item.active .accordion-body {
      max-height: 1000px;
      padding: 0 24px 24px;
    }

    .accordion-body p {
      margin-bottom: 12px;
    }

    .cta-section {
      background: var(--gradient-primary);
      border-radius: 24px;
      margin: 60px 0;
      overflow: hidden;
      padding: 60px 40px;
      position: relative;
      text-align: center;
    }

    .cta-section::before {
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="rgba(255,255,255,0.05)" d="M0,0 C300,80 600,80 900,0 L900,120 L0,120 Z"/></svg>');
      bottom: 0;
      content: '';
      height: 120px;
      left: 0;
      position: absolute;
      width: 100%;
    }

    .cta-section h2 {
      color: var(--text-primary);
      margin-bottom: 20px;
    }

    .cta-section p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 18px;
      margin-bottom: 32px;
    }

    .cta-section .btn-primary {
      background: var(--dark);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .cta-section .btn-primary:hover {
      background: var(--surface);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    }

    .stats-grid {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      margin: 40px 0;
    }

    .stat-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .stat-number {
      color: var(--primary);
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 800;
      line-height: 1;
      margin-bottom: 12px;
    }

    .stat-label {
      color: var(--text-secondary);
      font-size: 16px;
      font-weight: 500;
    }

    @media (max-width: 767px) {
      section {
        padding: 48px 0;
      }

      .cards-grid-2,
      .cards-grid-4 {
        grid-template-columns: 1fr;
      }

      .card {
        padding: 24px;
      }

      .highlight-box,
      .info-card {
        padding: 20px;
      }

      .cta-section {
        padding: 40px 24px;
      }
    }