/* ============================================
   MINDHUSH — landing page styles v2
   ============================================ */

.container        { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow{ max-width: 620px; }
.section          { padding: 5rem 0; background: #fff; }
.section--alt     { background: var(--navy-light); }

.sec-label { font-size: 13px; font-weight: 500; color: var(--navy); text-transform: uppercase; letter-spacing: .1em; text-align: center; margin-bottom: .6rem; }
.sec-title { font-size: 30px; font-weight: 500; text-align: center; color: var(--text); margin-bottom: .75rem; letter-spacing: -.3px; line-height: 1.2; }
.sec-sub   { font-size: 16px; color: var(--text-muted); text-align: center; max-width: 480px; margin: 0 auto 3rem; line-height: 1.65; }

/* --- Navbar --- */
.land-nav { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); padding: 0 2rem; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.land-nav-links { display: flex; align-items: center; gap: 1.5rem; font-size: 14px; }
.land-nav-links a:not(.btn) { color: var(--text-muted); }
.land-nav-links a:not(.btn):hover { color: var(--navy); text-decoration: none; }
.land-btn-sm { padding: .45rem 1rem !important; font-size: 13px !important; }
.lang-select { font-size: 13px; padding: 3px 8px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: transparent; color: var(--text-muted); cursor: pointer; }
.lang-select:focus { outline: none; border-color: var(--navy); }
.nav-burger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text); }

/* --- Hero --- */
.hero { background: var(--navy); padding: 6rem 2rem 5rem; text-align: center; }
.hero-inner { max-width: 700px; margin: 0 auto; }
.hero-badge { display: inline-block; background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); font-size: 13px; padding: 4px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,.15); margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(30px, 5vw, 50px); font-weight: 500; color: #fff; line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -1px; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.82); line-height: 1.65; max-width: 520px; margin: 0 auto 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.25rem; }
.btn-hero-primary { background: #fff; color: var(--navy); padding: .85rem 2rem; border-radius: var(--radius-sm); font-size: 15px; font-weight: 500; cursor: pointer; border: none; text-decoration: none; display: inline-block; }
.btn-hero-primary:hover { background: var(--navy-light); text-decoration: none; }
.btn-hero-ghost { background: transparent; color: rgba(255,255,255,.7); padding: .85rem 2rem; border-radius: var(--radius-sm); font-size: 15px; border: 1px solid rgba(255,255,255,.25); cursor: pointer; text-decoration: none; display: inline-block; }
.btn-hero-ghost:hover { background: rgba(255,255,255,.08); text-decoration: none; color: #fff; }
.hero-note { font-size: 14px; color: rgba(255,255,255,.6); }

/* --- Stats --- */
.stats-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; text-align: center; }
.stat-num { font-size: 28px; font-weight: 500; color: var(--navy); margin-bottom: .2rem; }
.stat-lbl { font-size: 13px; color: var(--text-muted); }

/* --- Demo --- */
.demo-sec { background: var(--warm-white) !important; }
.demo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.demo-txt h2 { font-size: 28px; font-weight: 500; color: var(--text); margin-bottom: 1rem; line-height: 1.2; text-align: left; }
.demo-txt p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: .75rem; }
.demo-note { font-size: 13px; color: var(--sage); font-style: italic; }
.demo-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.demo-header { background: var(--navy); padding: .7rem 1rem; display: flex; align-items: center; gap: .5rem; }
.demo-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); }
.demo-title { font-size: 13px; color: rgba(255,255,255,.78); margin-left: .25rem; }
.demo-msgs { padding: 1rem; min-height: 200px; max-height: 260px; overflow-y: auto; display: flex; flex-direction: column; gap: .75rem; }
.dmsg { padding: .65rem .9rem; border-radius: var(--radius); font-size: 14px; line-height: 1.5; max-width: 85%; }
.dmsg-ai { background: var(--navy-light); color: var(--navy-dark); align-self: flex-start; border-bottom-left-radius: 3px; }
.dmsg-user { background: var(--navy); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.dmsg-typing { background: var(--navy-light); align-self: flex-start; padding: .65rem 1rem; border-radius: var(--radius); border-bottom-left-radius: 3px; }
.typing-dots { display: flex; gap: 4px; align-items: center; }
.typing-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); animation: blink 1.2s infinite; }
.typing-dots span:nth-child(2) { animation-delay: .2s; }
.typing-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,80%,100%{opacity:.2;} 40%{opacity:1;} }
.demo-gate { background: var(--navy-light); border-top: 1px solid var(--border); padding: 1rem; text-align: center; display: none; }
.demo-gate p { font-size: 13px; color: var(--navy-dark); margin-bottom: .6rem; }
.demo-input-area { border-top: 1px solid var(--border); padding: .6rem; display: flex; gap: .5rem; }
.demo-input { flex: 1; padding: .5rem .75rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; outline: none; font-family: inherit; background: var(--warm-white); }
.demo-input:focus { border-color: var(--navy); background: #fff; }
.demo-send { padding: .5rem 1rem; background: var(--navy); color: #fff; border: none; border-radius: var(--radius-sm); font-size: 14px; cursor: pointer; font-weight: 500; }

/* --- How --- */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.how-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 1.5rem; }
.how-num { width: 36px; height: 36px; min-width: 36px; aspect-ratio: 1; border-radius: 50%; background: var(--navy); color: #fff; font-size: 14px; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-bottom: 1rem; }
.how-card h3 { font-size: 16px; font-weight: 500; margin-bottom: .5rem; color: var(--text); }
.how-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* --- Quotes --- */
.quotes-sec { background: var(--navy); padding: 4rem 0; }
.quotes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.quote-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.5rem; }
.quote-text { font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.quote-author { font-size: 13px; color: rgba(255,255,255,.62); }

/* --- Vs --- */
.vs-sec { background: var(--warm-white) !important; }
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 680px; margin: 0 auto; }
.vs-card { border-radius: var(--radius); padding: 1.75rem; }
.vs-card--bad { background: #fff; border: 1px solid var(--border); }
.vs-card--good { background: var(--navy); }
.vs-card-title { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.vs-card--bad .vs-card-title { color: var(--text-muted); }
.vs-card--good .vs-card-title { color: rgba(255,255,255,.72); }
.vs-item { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .75rem; font-size: 14px; line-height: 1.5; }
.vs-card--bad .vs-item { color: var(--text-muted); }
.vs-card--good .vs-item { color: rgba(255,255,255,.85); }
.vs-icon { flex-shrink: 0; margin-top: 1px; font-style: normal; }

/* --- Privacy --- */
.priv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.priv-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; background: #fff; }
.priv-icon { color: var(--navy); display: flex; }
.priv-card h3 { font-size: 15px; font-weight: 500; margin-bottom: .4rem; color: var(--text); }
.priv-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* --- FAQ --- */
.faq-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; cursor: pointer; }
.faq-q { font-size: 15px; font-weight: 500; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-arrow { color: var(--text-muted); font-size: 13px; transition: transform .2s; flex-shrink: 0; }
.faq-a { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-top: .75rem; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* --- Pricing --- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 560px; margin: 0 auto; }
.pc { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; position: relative; }
.pc--pro { border: 2px solid var(--navy); }
.pc-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--navy); color: #fff; font-size: 13px; font-weight: 500; padding: 3px 12px; border-radius: 20px; white-space: nowrap; }
.pc-name { font-size: 13px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6rem; }
.pc-price { font-size: 34px; font-weight: 500; color: var(--navy); line-height: 1; margin-bottom: 1.5rem; }
.pc-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.pc ul { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.pc ul li { font-size: 14px; color: var(--text-muted); }
.btn-pp { display: block; width: 100%; box-sizing: border-box; text-align: center; padding: .7rem; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; cursor: pointer; border: none; text-decoration: none; }
.btn-pp-p { background: var(--navy); color: #fff; }
.btn-pp-p:hover { background: var(--navy-dark); text-decoration: none; color: #fff; }
.btn-pp-g { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-pp-g:hover { background: var(--navy-light); text-decoration: none; }
.btn-pp--soon { background: #8fa0b5; color: #fff; cursor: not-allowed; pointer-events: none; }
.btn-pp--soon:hover { background: #8fa0b5; text-decoration: none; color: #fff; }

/* --- Waitlist --- */
.wl-sec { background: var(--navy); padding: 5rem 2rem; }
.wl-sec h2 { font-size: 32px; font-weight: 500; color: #fff; margin-bottom: .75rem; letter-spacing: -.3px; }
.wl-desc { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.wl-form { display: flex; gap: .75rem; max-width: 460px; margin: 0 auto 1rem; }
.wl-form input { flex: 1; padding: .75rem 1rem; border: none; border-radius: var(--radius-sm); font-size: 15px; outline: none; font-family: inherit; }
.wl-form button { padding: .75rem 1.25rem; background: var(--sage); color: #fff; border: none; border-radius: var(--radius-sm); font-size: 15px; font-weight: 500; cursor: pointer; white-space: nowrap; }
.wl-form button:hover { background: var(--navy-dark); }
.wl-note { font-size: 13px; color: rgba(255,255,255,.58); max-width: 400px; margin: 0 auto; line-height: 1.5; }

/* --- Footer --- */
.land-footer { background: var(--navy-dark); padding: 3rem 0 2rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.55); margin-top: .25rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.68); }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.48); border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; text-align: center; }


/* --- Use cases section --- */
.use-sec { background: var(--navy-light) !important; }
.use-list { list-style: none; padding: 0; margin: 0 auto; max-width: 820px; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.use-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; color: var(--text); line-height: 1.45; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.75rem 1rem; }
.use-check { color: var(--sage); font-size: 0.65rem; flex-shrink: 0; }

/* --- Why section --- */
.why-sec { background: var(--warm-white) !important; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.why-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.why-card-header h3 { margin: 0; font-size: 1rem; font-weight: 500; }
.why-icon { flex-shrink: 0; color: var(--navy); display: flex; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* --- How section — number + h3 inline --- */
.how-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.how-card-header h3 { margin: 0; }

/* --- Privacy grid — icon + h3 inline --- */
.priv-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.priv-card-header h3 { margin: 0; }

/* --- Waitlist agree checkbox --- */
.wl-agree-label { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,.55); margin: 0.75rem auto 0.5rem; max-width: 460px; text-align: left; cursor: pointer; line-height: 1.5; }
.wl-agree-label input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; cursor: pointer; }
.wl-agree-label span { flex: 1; }
.wl-agree-label a { color: rgba(255,255,255,.85); text-decoration: underline; }

/* --- Cookie banner --- */
.cookie-banner { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #1c2340; color: rgba(255,255,255,.8); padding: 1rem 2rem; z-index: 9999; align-items: center; justify-content: space-between; gap: 1.5rem; font-size: 0.875rem; border-top: 1px solid rgba(255,255,255,.1); }
.cookie-banner p { margin: 0; }
.cookie-btn { white-space: nowrap; padding: 0.45rem 1.25rem; background: var(--sage); color: #fff; border: none; border-radius: var(--radius-sm); cursor: pointer; font-size: 0.875rem; font-weight: 500; }
.cookie-btn:hover { opacity: .85; }
/* --- Use-case featured cards --- */
.use-featured { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(44,62,107,.12); }
.use-featured-label { font-size: 0.8rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.use-featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.use-featured-card:last-child:nth-child(3n - 2) { grid-column: 2; }
.use-featured-card { display: flex; flex-direction: column; gap: 0.3rem; padding: 1.1rem 1.25rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); text-decoration: none; color: inherit; transition: border-color .15s, box-shadow .15s; }
.use-featured-card:hover { border-color: var(--navy); box-shadow: 0 2px 10px rgba(44,62,107,.08); }
.use-featured-card strong { font-size: 0.925rem; color: var(--navy); }
.use-featured-card span { font-size: 0.825rem; color: var(--text-muted); line-height: 1.5; }

/* --- Responsywność --- */
@media (max-width: 768px) {
    .demo-inner { grid-template-columns: 1fr; }
    .how-grid, .quotes-grid, .priv-grid, .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(3,1fr); gap: 1rem; }
    .use-featured-grid { grid-template-columns: 1fr 1fr; }
    .use-featured-card:last-child:nth-child(3n - 2) { grid-column: auto; }
}
@media (max-width: 640px) {
    .land-nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: #fff; padding: 1rem 2rem; border-bottom: 1px solid var(--border); gap: 1rem; z-index: 99; }
    .land-nav-links.open { display: flex; }
    .nav-burger { display: block; }
    .hero { padding: 4rem 1.5rem 3rem; }
    .section { padding: 3.5rem 0; }
    .vs-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
    .wl-form { flex-direction: column; }
    .footer-inner { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .sec-title { font-size: 24px; }
    .use-list { grid-template-columns: 1fr; }
    .use-featured-grid { grid-template-columns: 1fr; }
    .use-featured-card:last-child:nth-child(3n - 2) { grid-column: 1; }
    .cookie-banner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}