
  :root {
    --blue: #1d4ed8;
    --blue-dark: #1e40af;
    --blue-light: #eff6ff;
    --blue-btn: #0B5ED7;
    --navy: #0f172a;
    --navy-hero: #0B1437;
    --text-dark: #101828;
    --text-mid: #364153;
    --text-muted: #6A7282;
    --text-light: #99A1AF;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --white: #ffffff;
    --purple: #7C3AED;
    --purple-light: rgba(124,58,237,0.08);
    --green: #16A34A;
    --check-green: #22C55E;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    --shadow-featured: 0 8px 40px rgba(11,94,215,0.18), 0 2px 8px rgba(11,94,215,0.10);
  }

  body {
    font-family: 'outfit', sans-serif;
    color: var(--text-dark);
    background: #fff;
    font-size: 14px;
    line-height: 1.5;
  }

 

  /* ─── PRICING SECTION ─── */
  .pricing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
    position: relative;
  }

  /* ─── CARD ─── */
  .plan-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    transition: box-shadow 0.2s;
  }
  .plan-card:hover { box-shadow: var(--shadow-card); }

  /* Featured (Professional) */
  .plan-card.featured {
    border-color: var(--blue-btn);
    border-width: 1.5px;
    box-shadow: var(--shadow-featured);
    z-index: 2;
    transform: translateY(-8px);
    padding-top: 0;
    border-radius: var(--radius);
    overflow: visible;
  }
  .featured-badge {
    background: var(--blue-btn);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 8px 0;
    letter-spacing: 0.02em;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: 0 -1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .featured-badge svg { width: 13px; height: 13px; }
  .featured-content { padding: 24px 0 0; }

  /* Plan header */
  .plan-icon-wrap {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  .plan-icon-wrap.purple { background: var(--purple-light); }
  .plan-icon-wrap svg { width: 22px; height: 22px; }

  .plan-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
  }
  .plan-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
  }
  .plan-price .amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
  }
  .plan-price .per {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 2px;
  }
  .plan-billing {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
  }

  /* CTA buttons */
  .btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    border: 1.5px solid var(--border);
    color: var(--text-dark);
    background: #fff;
    margin-bottom: 20px;
  }
  .btn-plan:hover { background: var(--border-light); }
  .btn-plan.primary {
    background: var(--blue-btn);
    color: #fff;
    border-color: var(--blue-btn);
  }
  .btn-plan.primary:hover { background: #1549b8; border-color: #1549b8; }

  /* Feature list */
  .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.4;
  }
  .feature-list li .icon {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5px;
  }
  .feature-list li .icon.check {
    background: rgba(22,163,74,0.1);
    color: var(--green);
  }
  .feature-list li .icon.cross {
    background: #F3F4F6;
    color: var(--text-light);
  }
  .feature-list li .icon svg { width: 10px; height: 10px; }
  .feature-list li.disabled { color: var(--text-light); }

  /* ─── FAQ ─── */
  .faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
  }
  .faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(11,94,215,0.06);
    color: var(--blue-btn);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .faq-eyebrow svg { width: 14px; height: 14px; }
  .faq-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
  }
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .faq-item {
    border: 1px solid var(--border);
    background: #fff;
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
  }
  .faq-q-icon {
    width: 22px;
    height: 22px;
    background: rgba(11,94,215,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue-btn);
  }
  .faq-q-icon svg { width: 13px; height: 13px; }
  .faq-q-text {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
  }
  .faq-chevron {
    color: var(--text-muted);
    transition: transform 0.2s;
  }
  .faq-chevron svg { width: 16px; height: 16px; display: block; }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .faq-answer {
    display: none;
    padding: 0 20px 18px 56px;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
  }
  .faq-item.open .faq-answer { display: block; }

  /* ─── FOOTER ─── */
  footer {
    background: #0B1437;
    color: rgba(255,255,255,0.7);
    padding: 60px 24px 28px;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 260px 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-brand .logo-text { color: #fff; }
  .footer-brand .logo-text span { color: #60a5fa; }
  .footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin: 14px 0 20px;
    line-height: 1.6;
  }
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    width: 32px; height: 32px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
  }
  .footer-social a:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
  .footer-social svg { width: 15px; height: 15px; }
  .footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col li a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.15s;
  }
  .footer-col li a:hover { color: #fff; }
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
  }
  .footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.4); }
  .footer-bottom-links { display: flex; gap: 20px; }
  .footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.5); text-decoration: none; }
  .footer-bottom-links a:hover { color: #fff; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 960px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
    .plan-card.featured { transform: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }
  @media (max-width: 640px) {
    .search-bar { flex-direction: column; align-items: stretch; }
    .search-divider { display: none; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero-content h1 { font-size: 22px; }
  }
