* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: #f7f5fc;
      color: #1b1b2b;
      line-height: 1.6;
    }

    :root {
      --violet: #4a0d8f;
      --violet-mid: #6b21c8;
      --violet-soft: #ede9f8;
      --gold: #c8a22a;
      --gray: #7a7a9a;
      --light: #ffffff;
      --border: #d8cff0;
      --shadow: 0 12px 28px rgba(0,0,0,0.03), 0 4px 12px rgba(74, 13, 143, 0.06);
    }

    /* sticky bar */
    .sticky-bar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--light);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 28px;
      flex-wrap: wrap;
      gap: 12px;
      backdrop-filter: blur(2px);
    }

    .brand {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--violet-mid);
      letter-spacing: -0.02em;
    }

    .price-tag {
      font-size: 0.9rem;
      color: var(--gray);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .price-tag strong {
      color: var(--violet);
      font-weight: 700;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--violet);
      color: white;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 10px 26px;
      border-radius: 60px;
      text-decoration: none;
      letter-spacing: 0.02em;
      border: none;
      transition: all 0.2s;
      box-shadow: 0 4px 8px rgba(74, 13, 143, 0.1);
      cursor: pointer;
    }

    .btn:hover {
      background: var(--violet-mid);
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(74, 13, 143, 0.15);
    }

    .btn-lg {
      font-size: 1rem;
      padding: 14px 34px;
      width: 100%;
      max-width: 340px;
      border-radius: 60px;
    }

    /* countdown */
    .countdown-bar {
      background: #fcf5e5;
      border-bottom: 1px solid #e7dbb5;
      text-align: center;
      padding: 10px 18px;
      font-size: 0.85rem;
      color: #7a5f00;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 4px 10px;
    }

    .timer {
      font-weight: 700;
      background: #fff1d0;
      padding: 2px 14px;
      border-radius: 40px;
      font-size: 0.9rem;
    }

    .icon-svg {
      display: inline-block;
      vertical-align: middle;
    }

    /* hero */
    .hero {
      background: linear-gradient(150deg, #f3eeff 0%, #faf9fd 70%);
      text-align: center;
      padding: 72px 24px 64px;
    }

    .badge {
      background: var(--violet-soft);
      color: var(--violet-mid);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 20px;
      border-radius: 60px;
      display: inline-block;
      margin-bottom: 28px;
    }

    .hero h1 {
      font-size: clamp(2rem, 5.5vw, 3.6rem);
      font-weight: 800;
      color: var(--violet);
      line-height: 1.1;
      max-width: 750px;
      margin: 0 auto 20px;
      letter-spacing: -0.02em;
    }

    .hero p {
      color: var(--gray);
      font-size: 1.1rem;
      max-width: 540px;
      margin: 0 auto 32px;
    }

    .pill-list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 40px;
    }

    .pill {
      background: white;
      border: 1px solid var(--border);
      border-radius: 60px;
      padding: 6px 20px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--violet-mid);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .pill::before {
      content: "✓";
      font-weight: 700;
      color: var(--violet-mid);
    }

    /* stats */
    .stats {
      display: flex;
      flex-wrap: wrap;
      background: white;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .stat-item {
      flex: 1 1 140px;
      text-align: center;
      padding: 28px 12px;
      border-right: 1px solid var(--border);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-item .num {
      font-size: 2rem;
      font-weight: 800;
      color: var(--violet-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .stat-item .num svg {
      stroke: var(--violet-mid);
      width: 28px;
      height: 28px;
    }

    .stat-item .label {
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 6px;
    }

    /* sections */
    section {
      padding: 72px 24px;
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--violet-mid);
      font-weight: 600;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(1.6rem, 3.6vw, 2.6rem);
      font-weight: 700;
      color: var(--violet);
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .section-sub {
      color: var(--gray);
      max-width: 560px;
      margin-bottom: 48px;
    }

    .alt {
      background: var(--violet-soft);
    }

    /* pain grid */
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 20px;
    }

    .pain-card {
      background: white;
      border: 1px solid var(--border);
      border-left: 4px solid var(--violet-mid);
      border-radius: 16px;
      padding: 24px 20px;
      box-shadow: var(--shadow);
    }

    .pain-card .icon svg {
      width: 28px;
      height: 28px;
      stroke: var(--violet-mid);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      margin-bottom: 10px;
    }

    .pain-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--violet);
      margin-bottom: 6px;
    }

    .pain-card p {
      font-size: 0.9rem;
      color: var(--gray);
    }

    /* solution list */
    .solution-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .solution-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      box-shadow: var(--shadow);
    }

    .solution-item .check {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      background: var(--violet-soft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--violet-mid);
      font-weight: 700;
      font-size: 0.8rem;
    }

    .solution-item h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--violet);
      margin-bottom: 4px;
    }

    .solution-item p {
      font-size: 0.88rem;
      color: var(--gray);
    }

    /* inside grid */
    .inside-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
    }

    .inside-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 18px;
      text-align: center;
      box-shadow: var(--shadow);
    }

    .inside-card .icon svg {
      width: 34px;
      height: 34px;
      stroke: var(--violet-mid);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      margin-bottom: 14px;
    }

    .inside-card h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--violet);
      margin-bottom: 6px;
    }

    .inside-card p {
      font-size: 0.85rem;
      color: var(--gray);
    }

    /* testimonial grid */
    .testimonial-track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 20px;
    }

    .testimonial-image {
      border-radius: 15px;
      overflow: hidden;
      background: #111;
      box-shadow: 0 12px 28px rgba(0,0,0,0.05);
      transition: transform 0.2s ease;
    }

    .testimonial-image:hover {
      transform: translateY(-6px);
    }

    .testimonial-image img {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }

    @media (max-width: 992px) {
      .testimonial-track {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .testimonial-track {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
    }

    /* pricing */
    .pricing-box {
      background: white;
      border: 2px solid var(--violet-mid);
      border-radius: 24px;
      padding: 44px 36px;
      max-width: 520px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      box-shadow: 0 20px 40px rgba(74, 13, 143, 0.08);
    }

    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 22px;
      border-radius: 60px;
      white-space: nowrap;
    }

    .price-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .price-amount {
      font-size: 3.6rem;
      font-weight: 900;
      color: var(--violet);
      line-height: 1;
    }

    .old-price {
      font-size: 1.3rem;
      font-weight: 600;
      color: #9ca3af;
      position: relative;
      display: inline-block;
    }

    .old-price::after {
      content: '';
      position: absolute;
      left: -6%;
      top: 52%;
      width: 112%;
      height: 2px;
      background: #ef4444;
      transform: rotate(-6deg);
      border-radius: 10px;
    }

    .price-note {
      font-size: 0.8rem;
      color: var(--gray);
      margin-bottom: 28px;
    }

    .feature-list {
      list-style: none;
      text-align: left;
      margin-bottom: 32px;
    }

    .feature-list li {
      padding: 10px 0;
      border-bottom: 1px solid var(--violet-soft);
      font-size: 0.9rem;
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .feature-list li:last-child {
      border-bottom: none;
    }

    .feature-list li::before {
      content: '✓';
      color: var(--violet-mid);
      font-weight: 700;
      flex-shrink: 0;
    }

    .secure-note {
      font-size: 0.75rem;
      color: var(--gray);
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    /* faq */
    .faq-list details {
      border-bottom: 1px solid var(--border);
      padding: 4px 0;
    }

    .faq-list summary {
      padding: 18px 4px;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #1b1b2b;
    }

    .faq-list summary::-webkit-details-marker {
      display: none;
    }

    .faq-list summary::after {
      content: '▼';
      font-size: 0.65rem;
      color: var(--violet-mid);
      transition: transform 0.2s;
    }

    .faq-list details[open] summary::after {
      transform: rotate(180deg);
    }

    .faq-list .answer {
      padding: 0 4px 18px;
      font-size: 0.9rem;
      color: var(--gray);
    }

    /* cta footer */
    .cta-footer {
      background: linear-gradient(150deg, #4a0d8f 0%, #2d0066 100%);
      color: white;
      text-align: center;
      padding: 80px 24px;
    }

    .cta-footer h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .cta-footer p {
      color: rgba(255, 255, 255, 0.7);
      max-width: 500px;
      margin: 0 auto 32px;
    }

    .cta-footer .btn {
      background: var(--gold);
      color: white;
    }

    .cta-footer .btn:hover {
      background: #b58e1a;
    }

    .cta-footer .urgency {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 16px;
    }

    .site-footer {
      background: white;
      border-top: 1px solid var(--border);
      text-align: center;
      padding: 28px 20px;
      font-size: 0.8rem;
      color: var(--gray);
    }

    .site-footer a {
      color: var(--violet-mid);
      text-decoration: none;
    }

    /* mobile tweaks */
    @media (max-width: 640px) {
      .sticky-bar {
        padding: 10px 16px;
      }
      .stats {
        flex-direction: column;
      }
      .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 18px 12px;
      }
      .stat-item:last-child {
        border-bottom: none;
      }
      .pricing-box {
        padding: 36px 20px;
      }
      .hero {
        padding: 48px 16px 40px;
      }
      section {
        padding: 56px 16px;
      }
      .inside-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 400px) {
      .inside-grid {
        grid-template-columns: 1fr;
      }
    }

    /* unique icons */
    .icon-unique {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .countdown-svg {
      margin-right: 6px;
      stroke: #7a5f00;
    }

     /* ── NOTIFICATION POPUP (bottom right) ── */
    .notification-popup {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 360px;
      width: 100%;
      pointer-events: none; /* allows click-through if needed */
    }

    .notification-item {
     background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(18px) saturate(180%);
-webkit-backdrop-filter: blur(18px) saturate(180%);

border-radius: 18px;
padding: 16px 20px;

border: 1px solid rgba(255, 255, 255, 0.18);

box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

display: flex;
align-items: center;
gap: 14px;

font-size: 0.95rem;
color: #ffffff;

position: relative;
overflow: hidden;

animation: slideInRight 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;

pointer-events: auto;
transition: transform 0.2s ease, opacity 0.3s ease;
    }

    .notification-item .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #ede9f8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #4a0d8f;
      flex-shrink: 0;
      font-size: 1rem;
      box-shadow: 0 2px 6px rgba(74, 13, 143, 0.08);
    }

    .notification-item .content {
      flex: 1;
    }

    .notification-item .content .name {
      font-weight: 700;
      color: #1b1b2b;
    }

    .notification-item .content .action {
      color: #4a0d8f;
      font-weight: 600;
    }

    .notification-item .content .time {
      font-size: 0.7rem;
      color: #8a8aaa;
      letter-spacing: 0.02em;
      margin-top: 2px;
      display: block;
    }

    .notification-item .close-btn {
      background: none;
      border: none;
      font-size: 1.2rem;
      color: #b0b0c8;
      cursor: pointer;
      padding: 0 4px;
      line-height: 1;
      transition: color 0.2s;
    }

    .notification-item .close-btn:hover {
      color: #4a0d8f;
    }

    /* animation */
    @keyframes slideInRight {
      0% {
        opacity: 0;
        transform: translateX(60px) scale(0.94);
      }
      100% {
        opacity: 1;
        transform: translateX(0) scale(1);
      }
    }

    /* fade out (removing class) */
    .notification-item.fade-out {
      opacity: 0;
      transform: translateX(40px) scale(0.96);
      transition: opacity 0.3s, transform 0.3s;
    }

    /* mobile adjustment */
    @media (max-width: 600px) {
      .notification-popup {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: 100%;
      }
      .notification-item {
        padding: 14px 16px;
        font-size: 0.9rem;
      }
      .notification-item .avatar {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
      }
    }