/* ═══════════════════════════════════════════════════════════════════════════
   CartRecovr Landing Site — Styles
   Clean, dark, Paddle-inspired design with green accent
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:         #0a0a0f;
    --bg2:        #111118;
    --bg3:        #16161f;
    --border:     rgba(255,255,255,0.08);
    --border-hi:  rgba(255,255,255,0.14);
    --text:       #f0f0f5;
    --text-mid:   #9898ab;
    --text-soft:  #5a5a70;
    --green:      #22c55e;
    --green-dark: #16a34a;
    --green-glow: rgba(34,197,94,0.15);
    --green-soft: rgba(34,197,94,0.08);
    --radius:     16px;
    --radius-lg:  24px;
    --radius-xl:  32px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, .display {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.018em;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utility ──────────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }

.tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--green);
    background: var(--green-soft);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 100px; padding: 5px 14px;
    margin-bottom: 20px;
}
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* ─── Navbar ───────────────────────────────────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 24px;
    background: rgba(10,10,15,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1140px; margin: 0 auto;
    height: 64px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 18px;
    display: flex; align-items: center; gap: 8px;
}
.nav-brand .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
}
.nav-links {
    display: flex; align-items: center; gap: 8px;
}
.nav-links a {
    font-size: 14px; font-weight: 500; color: var(--text-mid);
    padding: 8px 14px; border-radius: 10px;
    transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-cta {
    font-size: 14px; font-weight: 600;
    background: var(--green); color: #000 !important;
    border-radius: 100px !important;
    padding: 9px 22px !important;
    transition: all 0.2s !important;
}
.nav-cta:hover { background: #16d95a !important; transform: translateY(-1px); box-shadow: 0 4px 20px var(--green-glow); }

/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ─── Hero ─────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 0%, rgba(34,197,94,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(34,197,94,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    pointer-events: none;
}
.hero-inner {
    position: relative; z-index: 1;
    max-width: 780px;
}
.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a0ffc8 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero h1 em { font-style: normal; color: var(--green); -webkit-text-fill-color: var(--green); }
.hero p {
    font-size: 18px; color: var(--text-mid);
    max-width: 560px; margin-bottom: 40px; line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 56px; }
.hero-trust { display: flex; align-items: center; gap: 20px; }
.hero-trust span {
    font-size: 13px; color: var(--text-soft);
    display: flex; align-items: center; gap: 6px;
}
.hero-trust span::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ─── Buttons ──────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px; font-weight: 600;
    border-radius: 100px; padding: 13px 28px;
    border: none; cursor: pointer;
    transition: all 0.25s; text-decoration: none;
}
.btn-primary {
    background: var(--green); color: #000;
    box-shadow: 0 0 0 0 var(--green-glow);
}
.btn-primary:hover {
    background: #16d95a; transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--green-glow);
}
.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border: 1px solid var(--border-hi);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ─── Stats strip ──────────────────────────────────────────────────── */
.stats-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    background: var(--bg2);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center; padding: 0 24px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem; font-weight: 700;
    color: var(--green); display: block; margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--text-soft); }

/* ─── Features ─────────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.feature-card {
    background: var(--bg2);
    padding: 36px 32px;
    transition: background 0.3s;
}
.feature-card:hover { background: var(--bg3); }
.feature-icon {
    font-size: 28px; margin-bottom: 16px;
    width: 52px; height: 52px;
    background: var(--green-soft);
    border: 1px solid rgba(34,197,94,0.15);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.feature-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px; font-weight: 700;
    margin-bottom: 10px; color: var(--text);
}
.feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ─── How it works ─────────────────────────────────────────────────── */
.steps-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.steps-left h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 20px; }
.steps-left p { color: var(--text-mid); font-size: 16px; line-height: 1.75; margin-bottom: 32px; }

.steps-list { display: flex; flex-direction: column; gap: 0; }
.step {
    display: flex; gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--green-soft);
    border: 1px solid rgba(34,197,94,0.3);
    color: var(--green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 13px;
    display: flex; align-items: center; justify-content: center;
}
.step h5 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.step p  { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ─── Pricing (home & dedicated page) ─────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 840px; margin: 0 auto; }
.pricing-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 1080px; }
.pricing-card {
    border-radius: var(--radius-lg);
    padding: 40px;
    background: var(--bg2);
    border: 1px solid var(--border);
    position: relative;
}
.pricing-card.featured {
    border-color: var(--green);
    background: linear-gradient(135deg, rgba(34,197,94,0.05) 0%, var(--bg2) 60%);
    box-shadow: 0 0 0 1px var(--green), 0 20px 60px rgba(34,197,94,0.1);
}
.pricing-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--green); color: #000;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 100px;
    white-space: nowrap;
}
.pricing-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 12px; }
.pricing-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem; font-weight: 700;
    color: var(--text); line-height: 1;
    margin-bottom: 4px;
}
.pricing-price sup { font-size: 1.5rem; vertical-align: super; }
.pricing-price span { font-size: 1.2rem; font-weight: 500; color: var(--text-mid); }
.pricing-desc { font-size: 13px; color: var(--text-mid); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pf {
    font-size: 14px; color: var(--text-mid);
    display: flex; align-items: flex-start; gap: 10px;
}
.pf::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pf.off { color: var(--text-soft); }
.pf.off::before { content: '—'; color: var(--text-soft); }

.coming-soon-pill {
    display: inline-flex; align-items: center; gap: 8px;
    width: 100%; justify-content: center;
    border: 1px dashed rgba(34,197,94,0.3);
    border-radius: 100px; padding: 13px 28px;
    font-size: 14px; font-weight: 600; color: var(--text-mid);
    background: var(--green-soft);
}

/* ─── Pricing page extras ─────────────────────────────────────────── */
.pricing-guarantee {
    text-align: center;
    margin-top: 48px;
    padding: 28px 32px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-guarantee h4 {
    font-size: 16px; font-weight: 700;
    color: var(--text); margin-bottom: 8px;
}
.pricing-guarantee p {
    font-size: 14px; color: var(--text-mid); line-height: 1.65;
}

/* ─── FAQ ──────────────────────────────────────────────────────────── */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
    border-radius: 12px; overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg2);
}
.faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px; font-weight: 600; color: var(--text);
    text-align: left;
    transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--text-soft); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ─── CTA Banner ───────────────────────────────────────────────────── */
.cta-banner {
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    background: linear-gradient(135deg, #0f1f0f 0%, #0a1a0a 100%);
    border: 1px solid rgba(34,197,94,0.2);
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(34,197,94,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 16px; }
.cta-banner p { font-size: 16px; color: var(--text-mid); margin-bottom: 36px; }

/* ─── Footer ───────────────────────────────────────────────────────── */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.footer-inner {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 15px;
    color: var(--text-mid);
}
.footer-brand a { color: var(--text-mid); }
.footer-brand a:hover { color: var(--green); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-soft); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-mid); }

/* ─── Section headers ──────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.section-header p { font-size: 17px; color: var(--text-mid); max-width: 540px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════════════
   Legal Pages (Terms, Privacy, Refund)
   ═══════════════════════════════════════════════════════════════════════ */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}
.legal-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 32px;
    color: var(--green);
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s;
}
.legal-back:hover { opacity: 0.8; }
.legal-container h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #a0ffc8 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.legal-updated {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 48px;
}
.legal-container h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 40px 0 14px;
}
.legal-container h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 10px;
}
.legal-container p {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 16px;
    line-height: 1.75;
}
.legal-container ul {
    padding-left: 24px;
    margin-bottom: 16px;
    list-style: disc;
}
.legal-container li {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 8px;
    line-height: 1.65;
}
.legal-container a {
    color: var(--green);
    transition: opacity 0.2s;
}
.legal-container a:hover { opacity: 0.8; }
.legal-container strong {
    color: var(--text);
    font-weight: 600;
}
.legal-container code {
    font-size: 13px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 6px;
    color: var(--green);
}
.legal-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.legal-container th,
.legal-container td {
    text-align: left;
    padding: 12px 16px;
    border: 1px solid var(--border);
    font-size: 14px;
}
.legal-container th {
    background: var(--bg3);
    font-weight: 600;
    color: var(--text);
}
.legal-container td {
    color: var(--text-mid);
}
.legal-highlight {
    background: var(--green-soft);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 28px 0;
}
.legal-highlight p {
    margin-bottom: 0;
    color: var(--text);
}

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
    .steps-layout  { grid-template-columns: 1fr; gap: 48px; }
    .pricing-grid  { grid-template-columns: 1fr; max-width: 480px; }
    .pricing-grid-3 { grid-template-columns: 1fr; max-width: 480px; }
    .stats-grid    { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
    .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
    .stat-item { padding: 24px 0; }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-trust    { flex-direction: column; align-items: flex-start; gap: 10px; }
    .stats-grid    { grid-template-columns: 1fr 1fr; }
    .cta-banner    { padding: 48px 28px; }
    .nav-links     { display: none; }
    .nav-toggle    { display: block; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 64px; left: 0; right: 0;
        background: var(--bg2); border-bottom: 1px solid var(--border);
        padding: 20px 24px; gap: 4px;
    }
    .pricing-card { padding: 32px 24px; }
    .footer-links { gap: 16px; }
}
