/* Hero */
  .hero-wrap {
    background: linear-gradient(180deg, #FFF4EC 0%, #FFEAE0 100%);
    padding: 80px 0 72px;
    position: relative; overflow: hidden;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }
  .hero-wrap::before {
    content: ""; position: absolute; width: 900px; height: 900px; border-radius: 50%;
    background: radial-gradient(circle, rgba(31,158,149,0.12), transparent 70%);
    top: -450px; left: -300px; pointer-events: none;
  }
  .hero-wrap::after {
    content: ""; position: absolute; width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(240,122,58,0.14), transparent 70%);
    bottom: -350px; right: -250px; pointer-events: none;
  }
  .hero-inner { position: relative; z-index: 2; }
  .hero-kicker {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--teal-600); margin-bottom: 20px;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-600); box-shadow: 0 0 0 4px rgba(31,158,149,0.18); }
  h1.hero-title { font-size: 64px; font-weight: 800; letter-spacing: -0.045em; line-height: 1; margin-bottom: 18px; }
  h1.hero-title em { font-style: normal; color: var(--orange-500); }
  .hero-sub {
    font-family: "Inter Tight", sans-serif;
    font-size: 20px; font-weight: 400; color: var(--ink-2);
    line-height: 1.45; max-width: 800px; margin: 0 auto 28px;
  }
  /* Pricing grid */
  .pricing-section { padding: 64px 0 40px; }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch;
  }
  .card {
    background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px 28px;
    display: flex; flex-direction: column; position: relative;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .card:hover { border-color: rgba(31,158,149,0.4); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(28,35,48,0.12); }
  .card.popular {
    border: 2px solid var(--orange-500);
    box-shadow: 0 1px 2px rgba(240,122,58,0.1), 0 18px 40px -12px rgba(240,122,58,0.24);
  }
  .card.popular:hover { transform: translateY(-4px); }
  .popular-badge {
    position: absolute; top: -14px; left: 28px;
    background: var(--orange-500); color: #fff;
    padding: 6px 14px; border-radius: 99px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  }
  .plan-name {
    font-family: "Inter Tight", sans-serif; font-weight: 700; font-size: 15px;
    letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px;
  }
  .card.popular .plan-name { color: var(--orange-500); }
  .plan-price {
    font-family: "Inter Tight", sans-serif; font-weight: 800; font-size: 56px;
    letter-spacing: -0.04em; line-height: 1; color: var(--ink); margin-bottom: 4px;
    display: flex; align-items: baseline; gap: 6px;
  }
  .plan-price .currency { font-size: 28px; font-weight: 600; color: var(--ink-2); transform: translateY(-14px); }
  .plan-price .price-was { font-size: 22px; font-weight: 500; color: var(--ink-3); text-decoration: line-through; letter-spacing: 0; align-self: center; }
  .plan-price.custom-price { font-size: 42px; letter-spacing: -0.035em; }
  .plan-period { font-family: "Inter", sans-serif; font-size: 13px; color: var(--ink-3); margin-bottom: 12px; }
  .founding-tag {
    font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--orange-500); font-weight: 600;
    margin-bottom: 18px; display: inline-flex; align-items: center; gap: 6px;
  }
  .founding-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange-500); }
  .plan-license {
    font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.08em;
    color: var(--teal-600); background: rgba(31,158,149,0.08); border: 1px solid rgba(31,158,149,0.2);
    padding: 8px 12px; border-radius: 8px; margin-bottom: 24px; text-align: center; font-weight: 500;
  }
  .card.popular .plan-license { color: var(--orange-500); background: rgba(240,122,58,0.08); border-color: rgba(240,122,58,0.25); }
  .plan-features { list-style: none; margin-bottom: 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
  .plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); line-height: 1.45; }
  .plan-features li svg { flex: 0 0 auto; margin-top: 3px; }
  .plan-features li b { color: var(--ink); font-weight: 600; }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 20px;
    border-radius: 10px; font-family: "Inter Tight", sans-serif; font-weight: 600; font-size: 15px;
    letter-spacing: -0.005em; border: 1px solid transparent; cursor: pointer;
    transition: all 0.15s ease; white-space: nowrap; width: 100%; text-decoration: none;
  }
  .btn-primary { background: var(--ink); color: #fff; }
  .btn-primary:hover { background: #000; transform: translateY(-1px); }
  .btn-orange { background: var(--orange-500); color: #fff; box-shadow: 0 8px 20px -6px rgba(240,122,58,0.4); }
  .btn-orange:hover { background: #E56A2B; transform: translateY(-1px); }
  .btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-outline:hover { border-color: var(--ink); }

  /* Feature comparison */
  .compare-wrap {
    background: var(--off-white);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 96px 0;
  }
  .compare-head { text-align: center; margin-bottom: 48px; }
  .compare-head h2 { font-size: 44px; font-weight: 700; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 12px; }
  .compare-head p { font-family: "Inter Tight", sans-serif; font-size: 18px; color: var(--ink-2); max-width: 560px; margin: 0 auto; }
  .compare-table { max-width: 1100px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
  .compare-row { display: grid; grid-template-columns: 1.6fr repeat(5, 1fr); border-bottom: 1px solid var(--line-2); }
  .compare-row:last-child { border-bottom: none; }
  .compare-row > div { padding: 18px 22px; font-size: 14px; color: var(--ink-2); text-align: center; }
  .compare-row > div:first-child { text-align: left; color: var(--ink); }
  .compare-head-row { background: var(--ink); }
  .compare-head-row > div { padding: 20px 22px; font-family: "Inter Tight", sans-serif; font-weight: 700; font-size: 14px; color: #fff; }
  .compare-head-row > div.highlight { color: var(--orange-400); }
  .check-dot { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(31,158,149,0.12); color: var(--teal-600); font-weight: 700; font-size: 12px; }
  .cross-dot { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(28,35,48,0.05); color: var(--ink-4); font-weight: 700; font-size: 12px; }
  .compare-row:hover { background: var(--peach-soft); }
  .compare-row.compare-head-row:hover { background: var(--ink); }
  .compare-row.category-row { background: var(--peach-soft); border-bottom: 1px solid var(--line-2); }
  .compare-row.category-row:hover { background: var(--peach-soft); }
  .compare-row.category-row > div {
    grid-column: span 6; text-align: left;
    font-family: "JetBrains Mono", monospace; font-weight: 700; font-size: 11px;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-600);
    padding: 14px 22px;
  }

  /* Free callout */
  .free-callout {
    max-width: 1100px; margin: 80px auto 120px;
    background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 56px 64px;
    display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
    position: relative; overflow: hidden;
  }
  .free-callout::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 0% 100%, rgba(31,158,149,0.08), transparent 50%),
      radial-gradient(circle at 100% 0%, rgba(240,122,58,0.06), transparent 50%);
    pointer-events: none;
  }
  .free-callout > * { position: relative; z-index: 2; }
  .free-callout .eyebrow {
    font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--teal-600); margin-bottom: 12px;
  }
  .free-callout h3 { font-size: 36px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 12px; }
  .free-callout p { font-family: "Inter Tight", sans-serif; font-size: 18px; color: var(--ink-2); line-height: 1.45; max-width: 560px; }
  .btn-wp { background: var(--teal-600); color: #fff; width: auto; padding: 16px 28px; font-size: 15px; }
  .btn-wp:hover { background: #1A897F; transform: translateY(-1px); }

  /* FAQ */
  .faq-wrap { padding: 96px 0 120px; }
  .faq-head { text-align: center; margin-bottom: 48px; }
  .faq-head h2 { font-size: 44px; font-weight: 700; letter-spacing: -0.035em; margin-bottom: 12px; }
  .faq-head p { font-family: "Inter Tight", sans-serif; font-size: 18px; color: var(--ink-2); }
  .faq-grid { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px 28px; }
  .faq-item h4 { font-family: "Inter Tight", sans-serif; font-weight: 600; font-size: 17px; letter-spacing: -0.015em; margin-bottom: 8px; }
  .faq-item p { font-size: 14px; color: var(--ink-3); line-height: 1.55; }

  @media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .compare-wrap { display: none; }
  }
  @media (max-width: 720px) {
    h1.hero-title { font-size: 44px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .free-callout { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
    .free-callout p { margin: 0 auto; }
    .free-callout h3 { font-size: 28px; }
    .faq-grid { grid-template-columns: 1fr; }
  }
