* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary: #4aa086;
    --primary-dark: #3a8c70;
    --primary-light: #e8f5f1;
    --secondary: #1e293b;
    --accent: #fbbf24;
    --text: #0f172a;
    --text-muted: #64748b;
    --background: #ffffff;
    --border: #e2e8f0;
    --radius: 0.35rem;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Navigation */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    height: 10.5rem;
    width: auto;
    padding-top: 0.3rem;
  }
  
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text);
  }
  
  .menu-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
  }
  
  .nav-link:hover {
    color: var(--primary);
  }
  
  .nav-btn {
    background: var(--primary);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background 0.2s;
  }
  
  .nav-btn:hover {
    background: var(--primary-dark);
  }
  
  /* Hero Section */
  .hero {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--primary-light), var(--background));
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 800px;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    width: fit-content;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid var(--border);
    margin: 0 auto;
  }
  
  .badge-icon {
    width: 1rem;
    height: 1rem;
  }
  
  .hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary);
  }
  
  .hero-description {
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    max-height: 48px;
    box-sizing: border-box;
    line-height: 1.2;
  }
  
  .btn-primary {
    background: var(--primary);
    color: white;
  }
  
  .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 160, 134, 0.2);
  }
  
  .btn-secondary {
    background: white;
    color: var(--text);
    border: 2px solid var(--border);
  }
  
  .btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }
  
  .btn-outline:hover {
    background: var(--primary);
    color: white;
  }
  
  .btn-large,
  .btn-small {
    max-height: 48px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    width: 100%;
    max-width: 1400px;
    margin: 2rem auto 0;
  }
  
  .stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
  }

  .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
  }
  
  .stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }

  .stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .stat-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
  }
  
  .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
  }
  
  .hero-image {
    position: relative;
  }
  
  .hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
  }
  
  .hero-decoration {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--primary);
    opacity: 0.1;
    border-radius: var(--radius);
    top: 10%;
    right: -5%;
    z-index: 1;
  }
  
  /* Features Section */
  .features {
    padding: 6rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
  }
  
  .section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
  }
  
  .feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--primary);
  }
  
  .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.75rem;
  }
  
  .feature-description {
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  /* Pricing Section */
  .pricing {
    padding: 6rem 0;
    background: var(--primary-light);
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pricing-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 2px solid var(--border);
    transition: all 0.3s;
    position: relative;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-card-featured {
    border-color: var(--primary);
    transform: scale(1.05);
  }
  
  .featured-badge {
    position: absolute;
    top: -0.75rem;
    right: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
  }
  
  .pricing-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
  }
  
  .pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }
  
  .price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  .price-period {
    font-size: 1rem;
    color: var(--text-muted);
  }
  
  .pricing-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
  }
  
  .pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .check-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--primary);
    flex-shrink: 0;
  }
  
  .pricing-btn {
    width: 100%;
  }

  .btn-basic {
    background: #e9f0ec;
    color: var(--text);
    width: 100%;
    max-height: 38px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9375rem;
  }

  .btn-basic:hover {
    background: #d4e4db;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .btn-pro {
    background: #099176;
    color: white;
    width: 100%;
    max-height: 38px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9375rem;
  }

  .btn-pro:hover {
    background: #077a63;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(9, 145, 118, 0.3);
  }
  
  /* Compliance Section */
  .compliance {
    padding: 6rem 0;
  }
  
  .compliance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    width: fit-content;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }
  
  .compliance-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
  }
  
  .compliance-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
  }
  
  .compliance-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .compliance-item {
    display: flex;
    gap: 1rem;
  }
  
  .item-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
  }
  
  .item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
  }
  
  .item-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
  }
  
  .compliance-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    border: 2px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }
  
  .card-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .card-number {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
  }
  
  .card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .card-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .card-label {
    color: var(--text-muted);
    font-size: 0.875rem;
  }
  
  .card-value {
    font-weight: 600;
    color: var(--secondary);
  }
  
  .card-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
  }
  
  .card-total {
    background: var(--primary-light);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
  }
  
  .card-total .card-label {
    font-weight: 600;
    color: var(--primary);
  }
  
  .card-total .card-value {
    font-size: 1.25rem;
    color: var(--primary);
  }
  
  /* CTA Section */
  .cta {
    padding: 6rem 0;
    background: var(--secondary);
    color: white;
  }
  
  .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cta-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.7;
  }
  
  /* Footer */
  .footer {
    background: #f8fafc;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
  }
  
  .footer-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
    align-items: flex-start;
  }
  
  .footer-logo {
    height: 10.5rem;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    align-self: flex-start;
  }
  
  .footer-links {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    flex: 1;
    justify-content: flex-end;
  }
  
  .footer-tagline {
    color: var(--text-muted);
    font-size: 0.9375rem;
  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
  }
  
  .footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
  }
  
  .footer-link:hover {
    color: var(--primary);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .mobile-menu-btn {
      display: block;
    }
  
    .nav-menu {
      position: fixed;
      top: 4rem;
      left: 0;
      right: 0;
      background: white;
      flex-direction: column;
      padding: 1.5rem;
      border-bottom: 1px solid var(--border);
      transform: translateY(-100%);
      opacity: 0;
      transition: all 0.3s;
      pointer-events: none;
      gap: 1rem;
      align-items: stretch;
    }
  
    .nav-menu.active {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
  
    .nav-link,
    .nav-btn {
      display: block;
      text-align: center;
    }
  
    .hero-content {
      text-align: center;
    }
  
    .hero-title {
      font-size: 2.75rem;
    }
  
    .hero-description {
      font-size: 1.25rem;
    }
  
    .hero-image {
      order: -1;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .pricing-grid {
      grid-template-columns: 1fr;
      max-width: 100%;
    }

    .pricing-card {
      max-width: 100%;
    }
  
    .pricing-card-featured {
      transform: scale(1);
    }
  
    .compliance-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .cta-title {
      font-size: 2rem;
    }
  
    .cta-description {
      font-size: 1.125rem;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 2rem;
    }

    .footer-links {
      flex-direction: column;
      gap: 2rem;
      justify-content: flex-start;
    }
  }
  
  @media (max-width: 640px) {
    .hero-title {
      font-size: 2.25rem;
    }
    
    .hero-description {
      font-size: 1.125rem;
    }
  
    .hero-stats {
      grid-template-columns: 1fr;
      max-width: 100%;
    }

    .stat-card {
      max-width: 300px;
      margin: 0 auto;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .compliance-title {
      font-size: 2rem;
    }
  }
  