/* pricing.css — extracted verbatim from pages/pricing.php */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root { --dark: #0A0A0A; --dark-2: #0D0D0D; --dark-3: #111111; --amber: #D97706; --amber-hover: #B45309; --max-w: 1200px; --gutter: 2.5rem; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--dark); color: #fff; line-height: 1.75; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

    /* ── Nav ── */
    #nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem var(--gutter); background: rgba(10,10,10,0.6); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid rgba(255,255,255,0.08); }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #F9FAFB; }
    .logo-rect { fill: #ffffff; transition: fill 0.3s ease, stroke 0.3s ease; stroke: none; stroke-width: 2; }
    .logo-text { fill: #0A0A0A; transition: fill 0.3s ease; }
    .logo-wordmark { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; color: #ffffff; }
    .nav-links { display: flex; align-items: center; gap: 0.5rem; list-style: none; }
    .nav-links a { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.65); text-decoration: none; padding: 0.4rem 0.8rem; font-family: 'DM Sans', sans-serif; transition: color 0.2s; }
    .nav-links a:hover { color: #fff; }
    .nav-pill { display: inline-flex; align-items: center; padding: 0.5rem 1.25rem; border: none; border-radius: 100px; font-size: 0.82rem; font-weight: 600; color: #0A0A0A; cursor: pointer; background: white; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
    .nav-pill:hover { background: #f0f0f0; transform: translateY(-1px); }

    /* ── Mega menu ── */
    .nav-links .has-dropdown { position: relative; }
    .nav-links .has-dropdown > button { display: flex; align-items: center; gap: 0.3rem; padding: 0.4rem 0.8rem; color: rgba(255,255,255,0.65); font-size: 0.85rem; font-weight: 500; font-family: 'DM Sans', sans-serif; background: none; border: none; cursor: pointer; transition: color 0.2s; white-space: nowrap; }
    .nav-links .has-dropdown > button:hover { color: white; }
    .nav-links .has-dropdown > button svg { transition: transform 0.2s; }
    .nav-links .has-dropdown.open > button svg { transform: rotate(180deg); }
    .chevron-icon { width: 12px; height: 12px; opacity: 0.5; }
    .nav-dropdown { display: none; position: absolute; top: calc(100% + 1rem); left: 50%; transform: translateX(-50%); background: rgba(13,13,13,0.95); backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 1.5rem; z-index: 100; box-shadow: 0 24px 60px rgba(0,0,0,0.5); animation: ddSlideDown 0.2s ease; }
    .nav-links .has-dropdown.open .nav-dropdown { display: block; }
    @keyframes ddSlideDown { from { opacity: 0; transform: translateX(-50%) translateY(-8px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
    .mega-menu { width: 1060px; }
    .mega-groups { display: grid; grid-template-columns: repeat(6, 1fr); }
    .mega-group { padding: 0.25rem 1.25rem 0.25rem 0; }
    .mega-group + .mega-group { padding-left: 1.25rem; border-left: 1px solid rgba(255,255,255,0.07); }
    .mega-group-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #D97706; margin-bottom: 0.65rem; display: block; }
    .mega-link { display: block; padding: 0.45rem 0.5rem; border-radius: 4px; text-decoration: none; transition: background 0.15s; margin: 0 -0.5rem; }
    .mega-link:hover { background: rgba(255,255,255,0.06); }
    .mega-link-name { display: block; font-family: 'Sora', sans-serif; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); }
    .mega-link:hover .mega-link-name { color: white; }
    .mega-link-desc { display: block; font-size: 0.7rem; color: #555; margin-top: 0.1rem; line-height: 1.35; }
    .mega-link:hover .mega-link-desc { color: #777; }
    .mega-badge { display: inline-block; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: #D97706; color: white; padding: 0.1rem 0.35rem; border-radius: 2px; margin-top: 0.2rem; width: fit-content; }

    /* ── Hero ── */
    #pricing-hero { padding: 10rem var(--gutter) 5rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .pricing-eyebrow { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.25rem; }
    .pricing-title { font-family: 'Sora', sans-serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; color: white; margin-bottom: 1.5rem; }
    .pricing-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.5); max-width: 520px; margin: 0 auto; }

    /* ── Pricing grid ── */
    #pricing-tiers { padding: 6rem var(--gutter); }
    .pricing-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
    .pricing-card { background: #111111; border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; padding: 2.5rem; position: relative; }
    .pricing-card.featured { border-color: var(--amber); background: #111111; }
    .featured-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--amber); color: white; font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 0 0 4px 4px; white-space: nowrap; }
    .card-tier { font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #555; margin-bottom: 1rem; display: block; line-height: 1; }
    h3.card-tier { font-weight: 700; }
    .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
    .pricing-card.featured .card-tier { color: var(--amber); }
    .card-price { font-family: 'Sora', sans-serif; font-size: 2.5rem; font-weight: 800; color: white; letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.5rem; }
    .card-price span { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 0; }
    .card-desc { font-size: 0.88rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem; line-height: 1.6; }
    .card-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 2rem; }
    .card-features { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.5rem; }
    .card-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.4; }
    .card-features li::before { content: ''; display: block; width: 16px; height: 16px; min-width: 16px; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%23D97706' stroke-opacity='0.4'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23D97706' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; }
    .card-cta { display: block; width: 100%; text-align: center; padding: 0.85rem 1.5rem; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; }
    .card-cta-outline { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
    .card-cta-outline:hover { border-color: rgba(255,255,255,0.4); color: white; }
    .card-cta-filled { background: var(--amber); color: white; }
    .card-cta-filled:hover { background: var(--amber-hover); transform: translateY(-1px); }
    .card-cta-white { background: white; color: #0A0A0A; }
    .card-cta-white:hover { background: #f0f0f0; transform: translateY(-1px); }

    /* ── FAQ strip ── */
    #pricing-note { padding: 4rem var(--gutter); border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
    .pricing-note-inner { max-width: 640px; margin: 0 auto; }
    .pricing-note-inner p { font-size: 0.95rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
    .pricing-note-inner a { color: var(--amber); text-decoration: none; }
    .pricing-note-inner a:hover { text-decoration: underline; }

    /* ── Footer ── */
    #footer { background: #0A0A0A; border-top: 1px solid rgba(255,255,255,0.05); padding: 5.5rem var(--gutter) 2.5rem; }
    .footer-inner { max-width: var(--max-w); margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 3.5rem; }
    .footer-talk { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; color: white; }
    .footer-form-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #555; display: block; margin-bottom: 1rem; }
    .footer-form { display: flex; border: 1px solid rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
    .footer-form input[type="email"] { flex: 1; background: transparent; border: none; outline: none; color: white; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; padding: 0.9rem 1.25rem; }
    .footer-form input::placeholder { color: #444; }
    .footer-form button { background: var(--amber); color: white; border: none; padding: 0.9rem 1.5rem; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
    .footer-form button:hover { background: var(--amber-hover); }
    .footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-bottom: 3.5rem; }
    .footer-col h4 { font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #444; margin-bottom: 1.25rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col a { font-size: 0.87rem; color: #555; text-decoration: none; transition: color 0.2s; }
    .footer-col a:hover { color: white; }
    .footer-col button { background: none; border: none; padding: 0; font-size: 0.87rem; color: #555; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: color 0.2s; }
    .footer-col button:hover { color: white; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.04); }
    .footer-copy { font-size: 0.8rem; color: #333; }
    .footer-legal { display: flex; gap: 1.5rem; }
    .footer-legal a { font-size: 0.8rem; color: #333; text-decoration: none; transition: color 0.2s; }
    .footer-legal a:hover { color: #666; }

    /* ── Responsive ── */
    @media (max-width: 900px) { :root { --gutter: 1.75rem; } .pricing-inner { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } .footer-top { grid-template-columns: 1fr; } .footer-links-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) { .nav-links { display: none; } }
    @media (max-width: 600px) { :root { --gutter: 1.25rem; } .footer-links-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; } }
