
    
      :root {
        --primary: #2563eb;
        --primary-dark: #1d4ed8;
        --primary-soft: #dbeafe;
        --accent: #10b981;
        --text: #0f172a;
        --muted: #64748b;
        --border: #e2e8f0;
        --bg: #f8fafc;
        --card: #ffffff;
        --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
        --radius: 22px;
        --max-width: 1220px;
      }

      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family:
          "Inter",
          system-ui,
          -apple-system,
          BlinkMacSystemFont,
          "Segoe UI",
          sans-serif;
        color: var(--text);
        background: linear-gradient(
          180deg,
          #eef4ff 0%,
          #f8fafc 240px,
          #ffffff 100%
        );
        line-height: 1.6;
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      .container {
        width: min(var(--max-width), calc(100% - 40px));
        margin: 0 auto;
      }

      .topbar {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(37, 99, 235, 0.94);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
      }

      .nav {
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #fff;
        font-weight: 800;
        letter-spacing: 0.02em;
      }

      .brand-logo {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.18));
        flex: 0 0 auto;
      }

      .nav-links,
      .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
      }

      .nav-actions .solid,
      .nav-actions .outline {
        transition:
          transform 0.18s ease,
          background 0.18s ease,
          border-color 0.18s ease;
      }

      .nav-actions .solid:hover,
      .nav-actions .outline:hover,
      .btn:hover {
        transform: translateY(-1px);
      }

      .nav-links a,
      .nav-actions a {
        padding: 10px 14px;
        border-radius: 10px;
        color: rgba(255, 255, 255, 0.95);
        font-size: 14px;
        font-weight: 600;
      }

      .nav-links a:hover,
      .nav-links a.active {
        background: rgba(255, 255, 255, 0.12);
      }

      .nav-actions .outline {
        border: 1px solid rgba(255, 255, 255, 0.22);
      }

      .nav-actions .solid {
        background: white;
        color: var(--primary-dark);
        box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
      }

      section {
        padding: 88px 0;
      }

      .hero {
        padding-top: 96px;
        padding-bottom: 52px;
        text-align: center;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(37, 99, 235, 0.1);
        color: var(--primary-dark);
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 22px;
      }

      h1 {
        margin: 0 0 18px;
        font-size: clamp(2.6rem, 5vw, 4.4rem);
        line-height: 1.04;
        letter-spacing: -0.04em;
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
      }

      .hero p {
        margin: 0 auto 18px;
        max-width: 820px;
        font-size: 1.12rem;
        color: var(--muted);
      }

      .hero-note {
        font-size: 0.98rem;
        color: #334155;
        font-weight: 600;
      }

      .pricing {
        padding-top: 24px;
        padding-bottom: 52px;
      }

      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        align-items: stretch;
      }

      .plan {
        background: white;
        border: 1px solid var(--border);
        border-radius: 26px;
        box-shadow: var(--shadow);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        position: relative;
      }

      .plan.featured {
        border-color: rgba(37, 99, 235, 0.28);
        transform: translateY(-8px);
        box-shadow: 0 28px 60px rgba(37, 99, 235, 0.14);
      }

      .plan-header {
        padding: 32px 28px 24px;
        border-bottom: 1px solid var(--border);
        text-align: center;
        background: white;
      }

      .plan.featured .plan-header {
        background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
        color: white;
        border-bottom-color: rgba(255, 255, 255, 0.16);
      }

      .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 800;
        margin-bottom: 16px;
        background: rgba(255, 255, 255, 0.16);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.18);
      }

      .plan h2 {
        margin: 0 0 8px;
        font-size: 2rem;
        letter-spacing: -0.03em;
      }

      .plan-subtitle {
        margin: 0 auto;
        max-width: 290px;
        color: inherit;
        opacity: 0.92;
        font-size: 1rem;
      }

      .plan-price {
        margin-top: 24px;
        font-size: 3.2rem;
        line-height: 1;
        font-weight: 800;
        letter-spacing: -0.05em;
      }

      .plan-price .currency,
      .plan-price .period {
        font-size: 1.05rem;
        font-weight: 700;
        vertical-align: top;
      }

      .per-user {
        margin-top: 8px;
        font-size: 0.94rem;
        font-weight: 700;
        opacity: 0.95;
      }

      .plan-body {
        padding: 26px 28px 28px;
        display: flex;
        flex-direction: column;
        gap: 22px;
        flex: 1;
      }

      .plan-tagline {
        font-weight: 700;
        color: #1e293b;
      }

      .section-title {
        font-size: 0.98rem;
        font-weight: 800;
        color: #1f2937;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
      }

      .section-title .dot {
        width: 20px;
        height: 20px;
        border-radius: 999px;
        display: inline-grid;
        place-items: center;
        background: rgba(16, 185, 129, 0.14);
        color: #059669;
        font-size: 12px;
        font-weight: 800;
      }

      .section-title .muted-dot {
        background: rgba(148, 163, 184, 0.16);
        color: #64748b;
      }

      ul.features,
      ul.limitations {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 12px;
      }

      ul.features li,
      ul.limitations li {
        display: grid;
        grid-template-columns: 18px 1fr;
        gap: 12px;
        align-items: start;
        color: #334155;
        font-size: 0.98rem;
      }

      .check,
      .cross {
        font-weight: 800;
        line-height: 1.2;
      }

      .check {
        color: #16a34a;
      }
      .cross {
        color: #ef4444;
      }

      .cta-wrap {
        margin-top: auto;
        padding-top: 6px;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 54px;
        padding: 0 24px;
        border-radius: 14px;
        font-weight: 800;
        font-size: 1rem;
        transition:
          transform 0.18s ease,
          box-shadow 0.18s ease,
          background 0.18s ease;
        width: 100%;
      }

      .btn-primary {
        background: var(--primary);
        color: white;
        box-shadow: 0 16px 30px rgba(37, 99, 235, 0.24);
      }

      .btn-primary:hover {
        background: var(--primary-dark);
      }

      .btn-dark {
        background: #64748b;
        color: white;
      }

      .btn-green {
        background: var(--accent);
        color: white;
        box-shadow: 0 16px 28px rgba(16, 185, 129, 0.18);
      }

      .trial-note {
        margin-top: 12px;
        text-align: center;
        font-size: 0.9rem;
        color: var(--muted);
      }

      .section-heading {
        max-width: 840px;
        margin: 0 auto 26px;
        text-align: center;
      }

      .section-heading h2 {
        margin: 0 0 12px;
        font-size: clamp(2rem, 4vw, 3.1rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
      }

      .section-heading p {
        margin: 0;
        font-size: 1.05rem;
        color: var(--muted);
      }

      .benefits,
      .compare,
      .faq,
      .cta-band {
        padding-top: 46px;
        padding-bottom: 46px;
      }

      .benefit-grid,
      .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
      }

      .benefit-card,
      .faq-item {
        background: white;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 26px;
        box-shadow: var(--shadow);
      }

      .benefit-card h3,
      .faq-item h3 {
        margin: 0 0 10px;
        font-size: 1.18rem;
        letter-spacing: -0.02em;
      }

      .benefit-card p,
      .faq-item p {
        margin: 0;
        color: var(--muted);
      }

      .benefit-card ul {
        margin: 14px 0 0;
        padding-left: 18px;
        color: #334155;
      }

      .comparison-table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .comparison-table th,
      .comparison-table td {
        padding: 20px 22px;
        border-bottom: 1px solid var(--border);
        text-align: left;
        font-size: 1rem;
      }

      .comparison-table th {
        background: #eff6ff;
        color: #1e3a8a;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }

      .comparison-table tr:last-child td {
        border-bottom: none;
      }

      .highlight {
        font-weight: 800;
        color: var(--primary-dark);
      }

      .cta-panel {
        background: linear-gradient(
          135deg,
          #1d4ed8 0%,
          #2563eb 65%,
          #3b82f6 100%
        );
        color: white;
        border-radius: 30px;
        box-shadow: 0 24px 60px rgba(37, 99, 235, 0.26);
        padding: 44px 34px;
        text-align: center;
      }

      .cta-panel h2 {
        margin: 0 0 12px;
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
      }

      .cta-panel p {
        margin: 0 auto 24px;
        max-width: 760px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.05rem;
      }

      .bottom-actions {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
      }

      .bottom-actions .btn {
        width: auto;
        min-width: 220px;
      }

      .btn-light {
        background: white;
        color: var(--primary-dark);
      }

      .btn-outline-light {
        background: transparent;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.32);
      }

      footer {
        padding: 34px 0 48px;
        color: #64748b;
        font-size: 0.95rem;
        border-top: 1px solid var(--border);
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      }

      .footer-grid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
      }

      .footer-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 800;
        letter-spacing: 0.02em;
        color: #0f172a;
        margin-bottom: 10px;
      }

      .footer-copy {
        margin: 0;
        max-width: 520px;
        color: #64748b;
      }

      .footer-links {
        display: flex;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
        font-weight: 600;
      }

      .footer-links a:hover {
        color: #0f172a;
      }

      .footer-bottom {
        margin-top: 22px;
        padding-top: 22px;
        border-top: 1px solid var(--border);
        text-align: center;
      }

      @media (max-width: 1080px) {
        .pricing-grid,
        .benefit-grid,
        .faq-grid {
          grid-template-columns: 1fr;
        }

        .plan.featured {
          transform: none;
        }
      }


.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1;
}

.nav-menu .nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-menu .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}


.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: transparent;
  color: white;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}


@media (max-width: 900px) {

  .nav {
    position: relative;
    min-height: 72px;
    flex-direction: row;
  }

  .nav-menu {
    display: none;

    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;

    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    padding: 14px;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow: var(--shadow);

    z-index: 1000;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav-menu .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 14px;

    color: var(--text);
    font-size: 15px;
    font-weight: 600;

    border-radius: 9px;
  }

  .nav-menu .nav-links a:hover {
    background: var(--bg);
    color: var(--primary-dark);
  }


  .nav-menu .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;

    margin-top: 10px;
    padding-top: 14px;

    border-top: 1px solid var(--border);
  }

  .nav-menu .nav-actions a {
    width: 100%;
    text-align: center;
  }

  .nav-menu .nav-actions .outline {
    color: var(--primary-dark);
    border: 1px solid var(--border);
    background: white;
  }

  .nav-menu .nav-actions .solid {
    color: white;
    background: var(--primary);
  }


  /* Hamburger */

  .mobile-menu-toggle {
    display: flex;
    flex: 0 0 auto;
  }

}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 600px) {

  .topbar .container {
    width: calc(100% - 32px);
  }

  .brand span:last-child {
    font-size: 15px;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }

}
    
