/* Page styles for pricing.html */

:root {
  --primary: #1E3A8A;
  --primary-dark: #1D2C51;
  --primary-light: #E6F1FF;
  --primary-lighter: rgba(37, 99, 235, 0.05);
  --foreground: #1f2937;
  --muted: #6b7280;
  --background: #fcfcfc;
  --card: #ffffff;
  --border: #e5e7eb;
  --secondary: #f3f4f6;
  --emerald: #059669;
  --emerald-light: rgba(5, 150, 105, 0.1);
  --blue: #2563eb;
  --blue-light: rgba(37, 99, 235, 0.1);
  --violet: #7c3aed;
  --violet-light: rgba(124, 58, 237, 0.1);
  --yellow: #facc15;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

/* Top bar */
    .top-bar {
      height: 4px;
      background: linear-gradient(90deg, #1D2C51, #2563EB);
    }

    /* ═══════════════════════════
       PRICING PAGE STYLES
    ═══════════════════════════ */

    /* Hero */
    .pricing-hero {
      background: #fff;
      padding: 40px 0 52px;
      text-align: center;
      border-bottom: 1px solid var(--border);
    }
    .pricing-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--primary);
      background: var(--primary-light);
      border: 1px solid #BFDBFE;
      padding: 5px 12px;
      border-radius: 5px;
      margin-bottom: 20px;
    }
    .pricing-hero h1 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      color: #0F172A;
      line-height: 1.18;
      letter-spacing: -0.02em;
      max-width: 640px;
      margin: 0 auto 16px;
    }
    .pricing-hero p {
      font-size: 17px;
      color: var(--muted);
      max-width: 480px;
      margin: 0 auto 28px;
      line-height: 1.6;
    }
    /* Hero feature strip */
    .hero-features {
      display: flex;
      align-items: stretch;
      background: #fff;
      border: 1.5px solid #E2E8F0;
      border-radius: 5px;
      max-width: 720px;
      margin: 32px auto 0;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(30,58,138,0.07);
    }
    .hero-feature {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 22px 14px;
      text-align: center;
      border-right: 1px solid #E2E8F0;
    }
    .hero-feature:last-child { border-right: none; }
    .hero-feature-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .hero-feature-icon svg { width: 16px; height: 16px; stroke: #047857; stroke-width: 2.5; fill: none; }
    .hero-feature-text { font-size: 13px; font-weight: 600; color: #111827; line-height: 1.3; }
    @media (max-width: 600px) {
      .pricing-hero { padding: 28px 0 40px; }
      .pricing-hero p { margin-bottom: 24px; font-size: 15.5px; }
      .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 400px;
        margin: 20px auto 0;
      }
      .hero-feature { border-right: none; border-bottom: 1px solid #E2E8F0; padding: 16px 12px; }
      .hero-feature:nth-child(1), .hero-feature:nth-child(3) { border-right: 1px solid #E2E8F0; }
      .hero-feature:nth-child(3), .hero-feature:nth-child(4) { border-bottom: none; }
      .hero-feature-text { font-size: 12px; }
      .hero-feature-icon { width: 32px; height: 32px; }
    }

    /* Pricing section */
    .pricing-section {
      background: #F8FAFC;
      padding: 72px 0 80px;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      align-items: start;
    }
    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    }

    /* Card base */
    .pricing-card {
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: 5px;
      padding: 32px 28px 28px;
      position: relative;
      transition: box-shadow 0.2s;
    }
    .pricing-card:hover { box-shadow: 0 8px 32px rgba(30,58,138,0.08); }

    /* Featured card (dark — not used on pricing page but kept for reuse) */
    .pricing-card.featured {
      background: var(--primary);
      border-color: var(--primary);
      box-shadow: 0 20px 60px rgba(30,58,138,0.28);
      transform: translateY(-6px);
    }
    .pricing-card.featured:hover { box-shadow: 0 24px 64px rgba(30,58,138,0.34); }
    @media (max-width: 900px) { .pricing-card.featured { transform: none; } }

    /* Featured light (100 Draw Pro) */
    .pricing-card.featured-light {
      background: linear-gradient(150deg, #EFF6FF 0%, #DBEAFE 55%, #BFDBFE 100%);
      border: 2px solid #93C5FD;
      box-shadow: 0 20px 60px rgba(37,99,235,0.16), 0 4px 16px rgba(37,99,235,0.08);
      transform: translateY(-8px);
    }
    .pricing-card.featured-light:hover { box-shadow: 0 28px 72px rgba(37,99,235,0.24); }
    @media (max-width: 900px) { .pricing-card.featured-light { transform: none; } }
    .pricing-card.featured-light .plan-name { color: #1E3A8A; }
    .pricing-card.featured-light .plan-tagline { color: #3B82F6; }
    .pricing-card.featured-light .plan-currency { color: #1E3A8A; }
    .pricing-card.featured-light .plan-amount { color: #1E3A8A; }
    .pricing-card.featured-light .plan-period { color: #3B82F6; }
    .pricing-card.featured-light .plan-per-draw { color: #3B82F6; }
    .pricing-card.featured-light .plan-validity { color: #3B82F6; }
    .pricing-card.featured-light #saving-bundle { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }
    .pricing-card.featured-light #saving-pro { background: #faf5ff; color: #6b21a8; border: 1px solid #e9d5ff; }
    .pricing-card.featured-light .plan-divider { border-color: #BFDBFE; }
    .pricing-card.featured-light .plan-feature { color: #1E3A8A; }
    .pricing-card.featured-light .feature-check { background: rgba(255,255,255,0.7); }
    .pricing-card.featured-light .feature-check svg { stroke: #1E3A8A; }

    .plan-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 5px;
      margin-bottom: 20px;
    }
    .plan-badge.green { background: #D1FAE5; color: #065F46; }
    .plan-badge.blue  { background: rgba(255,255,255,0.18); color: #fff; }
    .plan-badge.gold  { background: #FEF3C7; color: #92400E; }
    .plan-badge.popular { background: #EEF2FF; color: #3730A3; }

    .plan-name {
      font-size: 20px;
      font-weight: 700;
      color: #111;
      margin-bottom: 6px;
    }
    .pricing-card.featured .plan-name { color: #fff; }

    .plan-tagline {
      font-size: 13.5px;
      color: var(--muted);
      margin-bottom: 24px;
      line-height: 1.5;
    }
    .pricing-card.featured .plan-tagline { color: rgba(255,255,255,0.75); }

    .plan-price-block {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 6px;
    }
    .plan-currency {
      font-size: 22px;
      font-weight: 700;
      color: #111;
      line-height: 1;
    }
    .pricing-card.featured .plan-currency { color: #fff; }
    .plan-amount {
      font-size: 52px;
      font-weight: 700;
      color: #111;
      line-height: 1;
      letter-spacing: -0.03em;
    }
    .pricing-card.featured .plan-amount { color: #fff; }
    .plan-period {
      font-size: 14px;
      color: var(--muted);
      margin-left: 2px;
    }
    .pricing-card.featured .plan-period { color: rgba(255,255,255,0.65); }

    .plan-per-draw {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 4px;
    }
    .pricing-card.featured .plan-per-draw { color: rgba(255,255,255,0.7); }

    .plan-validity {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
      margin-bottom: 24px;
    }
    .pricing-card.featured .plan-validity { color: rgba(255,255,255,0.65); }

    .plan-saving {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12.5px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 5px;
      margin-bottom: 20px;
    }
    #saving-bundle {
      color: #c2410c;
      background: #fff7ed;
      border: 1px solid #fed7aa;
    }
    #saving-pro {
      color: #6b21a8;
      background: #faf5ff;
      border: 1px solid #e9d5ff;
    }
    .pricing-card.featured .plan-saving {
      color: var(--primary);
      background: #fff;
      border: none;
    }
    .pricing-card.featured-light #saving-bundle {
      color: #c2410c;
      background: #fff7ed;
      border: 1px solid #fed7aa;
    }

    .plan-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
    .pricing-card.featured .plan-divider { border-color: rgba(255,255,255,0.2); }

    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }
    .plan-feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      color: #374151;
      line-height: 1.45;
    }
    .pricing-card.featured .plan-feature { color: rgba(255,255,255,0.88); }
    .feature-check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #D1FAE5;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .pricing-card.featured .feature-check {
      background: rgba(255,255,255,0.18);
    }
    .feature-check svg { width: 10px; height: 10px; stroke: #065F46; stroke-width: 2.5; }
    .pricing-card.featured .feature-check svg { stroke: #fff; }

    .plan-cta {
      display: block;
      width: 100%;
      text-align: center;
      padding: 13px 20px;
      border-radius: 5px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.15s;
    }
    .plan-cta.outline {
      background: #F3F4F6;
      color: #111;
      border: 1.5px solid var(--border);
    }
    .plan-cta.outline:hover { background: #E5E7EB; }
    .plan-cta.primary-cta {
      background: #fff;
      color: var(--primary);
    }
    .plan-cta.primary-cta:hover { background: #EFF6FF; }
    .plan-cta.dark {
      background: var(--primary);
      color: #fff;
    }
    .plan-cta.dark:hover { opacity: 0.9; }

    /* Why bundles section */
    .why-section {
      background: #fff;
      padding: 56px 0 64px;
      border-top: 1px solid var(--border);
    }
    .why-header {
      text-align: center;
      margin-bottom: 36px;
    }
    .why-header h2 {
      font-size: clamp(22px, 2.8vw, 32px);
      font-weight: 700;
      color: #0F172A;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }
    .why-header p { font-size: 15.5px; color: var(--muted); }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    @media (max-width: 768px) {
      .why-section { padding: 44px 0 48px; }
      .why-grid { grid-template-columns: 1fr; gap: 12px; }
      .why-header { margin-bottom: 28px; }
    }
    .why-card {
      background: #F8FAFC;
      border: 1px solid var(--border);
      border-radius: 5px;
      padding: 24px 22px;
    }
    .why-icon {
      width: 40px;
      height: 40px;
      background: var(--primary-light);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }
    .why-icon svg { width: 19px; height: 19px; stroke: var(--primary); }
    .why-card h3 { font-size: 15.5px; font-weight: 700; color: #111; margin-bottom: 7px; }
    .why-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

    /* All draws include — dark feature section */
    .all-included-section {
      background: #0F172A;
      padding: 60px 0 68px;
    }
    @media (max-width: 768px) { .all-included-section { padding: 44px 0 52px; } }
    .all-included-header {
      text-align: center;
      margin-bottom: 40px;
    }
    @media (max-width: 768px) { .all-included-header { margin-bottom: 28px; } }
    .all-included-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #60A5FA;
      margin-bottom: 10px;
    }
    .all-included-header h2 {
      font-size: clamp(22px, 2.8vw, 34px);
      font-weight: 700;
      color: #F8FAFC;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }
    .all-included-header h2 span { color: #60A5FA; }
    .all-included-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 5px;
      overflow: hidden;
    }
    @media (max-width: 768px) { .all-included-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .all-included-grid { grid-template-columns: 1fr; } }
    .all-included-item {
      background: #1E293B;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    @media (max-width: 768px) { .all-included-item { padding: 22px 20px; } }
    .all-included-icon {
      width: 44px;
      height: 44px;
      background: rgba(96,165,250,0.12);
      border: 1px solid rgba(96,165,250,0.2);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      flex-shrink: 0;
    }
    .all-included-icon svg { width: 20px; height: 20px; stroke: #60A5FA; stroke-width: 1.75; fill: none; }
    .all-included-item h3 { font-size: 14.5px; font-weight: 700; color: #F1F5F9; margin-bottom: 8px; }
    .all-included-item p { font-size: 13px; color: #94A3B8; line-height: 1.65; }

    /* FAQ strip */
    .faq-strip {
      background: #F8FAFC;
      border-top: 1px solid var(--border);
      padding: 48px 0 56px;
    }
    .faq-strip-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    @media (max-width: 768px) {
      .faq-strip { padding: 40px 0 48px; }
      .faq-strip-inner { grid-template-columns: 1fr; gap: 10px; }
    }
    .faq-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 5px;
      padding: 18px 20px;
    }
    .faq-q { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 6px; }
    .faq-a { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

    /* Section label */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 12px;
    }
