
  
    :root {
      --aw-ink: #1a1a1a;
      --aw-ink-muted: #6b6b6b;
      --aw-ink-faint: #a8a8a8;
      --aw-surface: #ffffff;
      --aw-surface-2: #f7f6f3;
      --aw-surface-3: #f0efe9;
      --aw-border: #e2e0d8;
      --aw-border-strong: #c8c5bc;
      --aw-accent: #c0392b;
      --aw-accent-gold: #f5a623;
      --aw-radius: 14px;
      --aw-radius-sm: 8px;
    }
    /* ── BASE ── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }
    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--aw-ink);
      background: var(--aw-surface);
      font-size: 15px;
      line-height: 1.65;
      margin: 0;
    }
    /* ── NAV ── */
    .aw-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 48px;
      border-bottom: 1px solid var(--aw-border);
      background: var(--aw-surface);
      position: sticky;
      top: 0;
      z-index: 200;
    }
    .aw-logo {
      font-family: 'DM Serif Display', serif;
      font-size: 22px;
      color: var(--aw-ink);
      text-decoration: none;
      letter-spacing: -0.3px;
      flex-shrink: 0;
    }
    .aw-logo span {
      color: var(--aw-accent);
    }
    .aw-nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .aw-nav-links a {
      font-size: 13px;
      color: var(--aw-ink-muted);
      text-decoration: none;
      font-weight: 500;
    }
    .aw-nav-links a:hover {
      color: var(--aw-ink);
    }
    /* Hamburger — hidden on desktop */
    .aw-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .aw-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--aw-ink);
      border-radius: 2px;
      transition: transform 0.2s, opacity 0.2s;
    }
    .aw-hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .aw-hamburger.open span:nth-child(2) {
      opacity: 0;
    }
    .aw-hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    /* Mobile nav drawer */
    .aw-mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--aw-surface);
      border-bottom: 1px solid var(--aw-border);
      padding: 16px 24px 24px;
      gap: 0;
    }
    .aw-mobile-menu.open {
      display: flex;
    }
    .aw-mobile-menu a {
      font-size: 15px;
      color: var(--aw-ink-muted);
      text-decoration: none;
      font-weight: 500;
      padding: 13px 0;
      border-bottom: 1px solid var(--aw-border);
    }
    .aw-mobile-cta {
      margin-top: 14px;
      background: var(--aw-ink);
      color: #fff;
      border: none;
      border-radius: var(--aw-radius-sm);
      padding: 13px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      width: 100%;
      text-align: center;
    }
    /* ── TICKER ── */
    .aw-ticker {
      background: var(--aw-accent-gold);
      padding: 9px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .aw-ticker-inner {
      display: inline-block;
      animation: aw-scroll 24s linear infinite;
      font-size: 12px;
      font-weight: 500;
      color: #fff;
      letter-spacing: 0.5px;
    }
    @keyframes aw-scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    /* ── SECTION SHELL ── */
    .aw-section {
      padding: 20px 20px;
    }
    .aw-section-alt {
      background: var(--aw-surface-2);
    }
    .aw-section-inner {
      max-width: 980px;
      margin: 0 auto;
    }
    .aw-divider {
      border: none;
      border-top: 1px solid var(--aw-border);
      margin: 0 48px;
    }
    .aw-section-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: var(--aw-ink-faint);
      margin-bottom: 10px;
    }
    .aw-section-title {
      font-family: 'DM Serif Display', serif;
      font-size: 34px;
      color: var(--aw-ink);
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    .aw-section-title.sm {
      margin-bottom: 8px;
    }
    .aw-section-sub {
      font-size: 14px;
      color: var(--aw-ink-muted);
      max-width: 480px;
      margin-bottom: 8px;
    }
    /* ── HERO ── */
    .aw-hero {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
      padding: 20px 24px 20px;
    }
    .aw-hero-tag {
      display: inline-block;
      background: var(--aw-surface-3);
      border: 1px solid var(--aw-border);
      color: var(--aw-ink-muted);
      font-size: 11px;
      font-weight: 500;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 24px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .aw-hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: 35px;
      line-height: 1.12;
      letter-spacing: -1.5px;
      margin-bottom: 20px;
      margin-top: 0;
    }
    .aw-hero h1 em {
      color: var(--aw-accent);
      font-style: normal;
    }
    .aw-hero p {
      font-size: 16px;
      color: var(--aw-ink-muted);
      max-width: 520px;
      margin: 0 auto 12px;
      line-height: 1.7;
    }
    .aw-hero-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .aw-hero-pills {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 32px;
      flex-wrap: wrap;
    }
    .aw-pill {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: var(--aw-ink-muted);
    }
    .aw-pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--aw-accent-gold);
      flex-shrink: 0;
    }
    /* ── BUTTONS ── */
    .aw-btn-dark {
      background: var(--aw-ink);
      color: #fff;
      border: none;
      border-radius: var(--aw-radius-sm);
      padding: 13px 28px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: background 0.15s;
      text-decoration: none;
      display: inline-block;
    }
    .aw-btn-dark:hover {
      background: #333;
    }
    .aw-btn-dark.sm {
      padding: 9px 18px;
      font-size: 13px;
    }
    .aw-btn-outline {
      background: transparent;
      color: var(--aw-ink);
      border: 1.5px solid var(--aw-border-strong);
      border-radius: var(--aw-radius-sm);
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.15s;
    }
    .aw-btn-outline:hover {
      border-color: var(--aw-ink);
    }
    .aw-btn-light {
      background: #fff;
      color: var(--aw-ink);
      border: none;
      border-radius: var(--aw-radius-sm);
      padding: 13px 28px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
    }
    /* ── HOW IT WORKS ── */
    .aw-steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px;
    }
    .aw-step {
      background: var(--aw-surface);
      border: 1px solid var(--aw-border);
      border-radius: var(--aw-radius);
      padding: 28px 22px;
      position: relative;
    }
    .aw-step-num {
      font-family: 'DM Serif Display', serif;
      font-size: 44px;
      color: #f5a623;
      line-height: 1;
      display: block;
      margin-bottom: 14px;
    }
    .aw-step h3 {
      font-size: 15px;
      font-weight: 500;
      margin-bottom: 6px;
      margin-top: 0;
    }
    .aw-step p {
      font-size: 13px;
      color: var(--aw-ink-muted);
      line-height: 1.55;
      margin: 0;
    }
    .aw-step-arrow {
      position: absolute;
      right: -13px;
      top: 34px;
      font-size: 18px;
      color: var(--aw-border-strong);
      z-index: 1;
    }
    /* ── SCOPE ── */
    .aw-scope {
      display: grid;
      /* grid-template-columns: 1fr 1fr; */
      border: 1px solid var(--aw-border);
      border-radius: var(--aw-radius);
      overflow: hidden;
      padding: 12px;
      gap:10px;
    }
    .aw-scope-col {
      padding: 15px 25px;
    }
    .aw-scope-col:first-child {
      background: var(--aw-surface);
      /*border-right: 1px solid var(--aw-border);*/
    }
    .aw-scope-col:last-child {
      background: var(--aw-surface-2);
    }
    .aw-scope-col h3 {
      font-size: 14px;
      font-weight: 500;
      margin: 0 0 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .aw-scope-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .aw-scope-list li {
      font-size: 14px;
      color: var(--aw-ink-muted);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .aw-badge-yes {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #e8f5e9;
      color: #2e7d32;
      font-size: 11px;
      flex-shrink: 0;
    }
    .aw-badge-no {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #fce4e4;
      color: #c62828;
      font-size: 11px;
      flex-shrink: 0;
    }
    .aw-scope-note {
      margin-top: 20px;
      font-size: 12px;
      color: var(--aw-ink-faint);
      font-style: italic;
    }
    /* ── PRICING ── */
    .aw-plans {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }
    .aw-plan {
      background: var(--aw-surface);
      border: 1px solid var(--aw-border);
      border-radius: var(--aw-radius);
      padding: 28px 22px;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .aw-plan.featured {
      border: 2px solid var(--aw-ink);
    }
    .aw-plan-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--aw-ink);
      color: #fff;
      font-size: 11px;
      padding: 4px 14px;
      border-radius: 20px;
      white-space: nowrap;
      font-weight: 500;
    }
    .aw-plan-name {
      font-size: 12px;
      font-weight: 500;
      color: var(--aw-ink-muted);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 4px;
    }
    .aw-plan-price {
      font-family: 'DM Serif Display', serif;
      font-size: 38px;
      color: var(--aw-ink);
      line-height: 1;
      margin-bottom: 2px;
    }
    .aw-plan-price span {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--aw-ink-muted);
      font-weight: 400;
    }
    .aw-plan-annual {
      font-size: 12px;
      color: var(--aw-ink-faint);
      margin-bottom: 20px;
      min-height: 18px;
    }
    .aw-plan-annual strong {
      color: var(--aw-accent);
    }
    .aw-plan hr {
      border: none;
      border-top: 1px solid var(--aw-border);
      margin: 0 0 18px;
    }
    .aw-plan-features {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 9px;
      flex: 1;
    }
    .aw-plan-features li {
      font-size: 13px;
      color: var(--aw-ink-muted);
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .aw-feat-check {
      color: #2e7d32;
      flex-shrink: 0;
      margin-top: 1px;
      font-size: 13px;
    }
    .aw-plan-cta {
      margin-top: 22px;
      background: var(--aw-surface-3);
      border: 1px solid var(--aw-border);
      color: var(--aw-ink);
      padding: 11px;
      border-radius: var(--aw-radius-sm);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      width: 100%;
      text-align: center;
      transition: background 0.15s;
    }
    .aw-plan-cta:hover {
      background: var(--aw-border);
    }
    .aw-plan.featured .aw-plan-cta {
      background: var(--aw-ink);
      color: #fff;
      border-color: var(--aw-ink);
    }
    .aw-plan.featured .aw-plan-cta:hover {
      background: #333;
    }
    /* ── FAQ ── */
    .aw-faq {
      max-width: 700px;
      margin: 0 auto;
    }
    .aw-faq-item {
      border-bottom: 1px solid var(--aw-border);
    }
    .aw-faq-q {
      font-size: 15px;
      font-weight: 500;
      color: var(--aw-ink);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      user-select: none;
    }
    .aw-faq-q .arrow {
      color: var(--aw-ink-faint);
      font-size: 20px;
      line-height: 1;
      transition: transform 0.2s;
      flex-shrink: 0;
      margin-left: 12px;
    }
    .aw-faq-a {
      font-size: 14px;
      color: var(--aw-ink-muted);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s;
    }
    .aw-faq-item.open .aw-faq-a {
      max-height: 200px;
      padding-bottom: 18px;
    }
    .aw-faq-item.open .arrow {
      transform: rotate(45deg);
    }
    /* ── CTA BAND ── */
    .aw-cta-band {
      background: var(--aw-ink);
      padding: 80px 48px;
      text-align: center;
    }
    .aw-cta-band h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 38px;
      color: #fff;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
      margin-top: 0;
    }
    .aw-cta-band p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 15px;
      max-width: 420px;
      margin: 0 auto 28px;
    }
    /* ── FOOTER ── */
    .aw-footer {
      padding: 26px 48px;
      border-top: 1px solid var(--aw-border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .aw-footer p {
      font-size: 12px;
      color: var(--aw-ink-faint);
      margin: 0;
    }
    .aw-footer-links {
      display: flex;
      flex-wrap: wrap;
    }
    .aw-footer-links a {
      font-size: 12px;
      color: var(--aw-ink-muted);
      text-decoration: none;
      margin-left: 16px;
    }
    .aw-footer-links a:hover {
      color: var(--aw-ink);
    }
    /* ── MODAL ── */
    .aw-modal-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 999;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .aw-modal-backdrop.active {
      display: flex;
    }
    .aw-modal {
      background: var(--aw-surface);
      border-radius: var(--aw-radius);
      padding: 40px 36px;
      width: 100%;
      max-width: 440px;
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
    }
    .aw-modal h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 26px;
      margin: 0 0 6px;
    }
    .aw-modal>p {
      font-size: 13px;
      color: var(--aw-ink-muted);
      margin-bottom: 24px;
    }
    .aw-modal-close {
      position: absolute;
      top: 16px;
      right: 20px;
      background: none;
      border: none;
      font-size: 22px;
      color: var(--aw-ink-faint);
      cursor: pointer;
      line-height: 1;
    }
    .aw-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }
    .aw-form-group {
      margin-bottom: 12px;
    }
    .aw-form-group label {
      font-size: 12px;
      font-weight: 500;
      color: var(--aw-ink-muted);
      display: block;
      margin-bottom: 5px;
    }
    .aw-form-group input {
      width: 100%;
      border: 1px solid var(--aw-border);
      border-radius: var(--aw-radius-sm);
      padding: 10px 12px;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      color: var(--aw-ink);
      background: var(--aw-surface);
      outline: none;
      transition: border-color 0.15s;
    }
    .aw-form-group input:focus {
      border-color: var(--aw-ink);
    }
    .aw-selected-plan {
      background: var(--aw-surface-2);
      border: 1px solid var(--aw-border);
      border-radius: var(--aw-radius-sm);
      padding: 10px 14px;
      font-size: 13px;
      color: var(--aw-ink-muted);
      margin-bottom: 20px;
      display: flex;
      justify-content: space-between;
    }
    .aw-selected-plan strong {
      color: var(--aw-ink);
    }
    .aw-submit-btn {
      width: 100%;
      background: var(--aw-ink);
      color: #fff;
      border: none;
      border-radius: var(--aw-radius-sm);
      padding: 13px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      margin-top: 8px;
      transition: background 0.15s;
    }
    .aw-submit-btn:hover:not(:disabled) {
      background: #333;
    }
    .aw-submit-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
    /* ============================================================
       RESPONSIVE BREAKPOINTS
       ── Tablet  ≤ 900px : 2-col steps + 2-col plans
       ── Mobile  ≤ 600px : single column everything
    ============================================================ */
    @media (max-width: 900px) {
      .aw-nav {
        padding: 16px 24px;
      }
      .aw-nav-links {
        display: none;
      }
      .aw-nav .aw-btn-dark {
        display: none;
      }
      .aw-hamburger {
        display: flex;
      }
      /* .aw-section   { padding: 56px 24px; } */
      .aw-divider {
        margin: 0 24px;
      }
      .aw-cta-band {
        padding: 60px 24px;
      }
      .aw-footer {
        padding: 20px 24px;
      }
      .aw-hero h1 {
        font-size: 38px;
        letter-spacing: -1px;
      }
      .aw-hero p {
        font-size: 15px;
      }
      .aw-section-title {
        font-size: 28px;
      }
      .aw-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .aw-step-arrow {
        display: none;
      }
      .aw-plans {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 600px) {
      .aw-hero {
        padding: 24px 20px 24px;
      }
      .aw-hero h1 {
        font-size: 30px;
        letter-spacing: -0.5px;
      }
      .aw-hero p {
        font-size: 14px;
      }
      .aw-hero-pills {
        gap: 12px;
      }
      .aw-hero-btns {
        flex-direction: column;
        align-items: stretch;
      }
      .aw-hero-btns .aw-btn-dark,
      .aw-hero-btns .aw-btn-outline {
        text-align: center;
        width: 100%;
      }
      /* .aw-section        { padding: 44px 20px; } */
      .aw-section-title {
        font-size: 24px;
      }
      .aw-divider {
        margin: 0 20px;
      }
      .aw-steps {
        grid-template-columns: 1fr;
      }
      .aw-scope {
        grid-template-columns: 1fr;
      }
      .aw-scope-col:first-child {
        border-right: none;
        /*border-bottom: 1px solid var(--aw-border);*/
      }
      .aw-scope-col {
        padding: 15px 25px;
      }
      .aw-plans {
        grid-template-columns: 1fr;
      }
      .aw-plan.featured {
        margin-top: 12px;
      }
      .aw-faq-q {
        font-size: 14px;
      }
      .aw-cta-band {
        padding: 52px 20px;
      }
      .aw-cta-band h2 {
        font-size: 28px;
      }
      .aw-cta-band .aw-btn-light {
        width: 100%;
      }
      .aw-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
      }
      .aw-footer-links {
        margin-top: 4px;
      }
      .aw-footer-links a {
        margin-left: 0;
        margin-right: 16px;
      }
      /* Modal slides up from bottom on mobile */
      .aw-modal-backdrop {
        align-items: flex-end;
        padding: 0;
      }
      .aw-modal {
        border-radius: var(--aw-radius) var(--aw-radius) 0 0;
        padding: 28px 20px;
        max-height: 92vh;
      }
      .aw-form-row {
        grid-template-columns: 1fr;
      }
    }
.border-danger {
  border-color: #f1416c !important;
}
   .aw-plan-name {
      display: flex;
      align-items: center;
      /*justify-content: space-between;*/
      gap:8px;
    }
    .aw-plan-early {
      background: #fff4e5;
      color: #d97706;
      font-size: 8px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 20px;
      letter-spacing: .4px;
      text-transform: uppercase;
      border: 1px solid #f3d19c;
      white-space: nowrap;
    }
      .hidden {
            display: none;
        }