/* =============================================================
   plannercraft-landing.css  –  Styles for the Planner Craft Pro Landing Page
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --pc-primary: #6366f1;
    --pc-primary-hover: #4f46e5;
    --pc-primary-light: #e0e7ff;
    --pc-dark: #0f172a;
    --pc-gray-dark: #1e293b;
    --pc-gray-light: #f8fafc;
    --pc-text-main: #334155;
    --pc-text-light: #64748b;
    --pc-accent: #f59e0b;
    --pc-border: #e2e8f0;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background-color: var(--pc-gray-light);
    color: var(--pc-text-main);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* ── Navbar ── */
.pc-navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--pc-border);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.pc-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--pc-dark);
}

.pc-brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--pc-primary), #a5b4fc);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    overflow: hidden;
}

.pc-brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pc-brand-text {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--pc-dark), var(--pc-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-pc-nav {
    background: var(--pc-primary);
    color: white !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
    text-decoration: none;
}

.btn-pc-nav:hover {
    background: var(--pc-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25);
}

/* ── Hero Section ── */
.pc-hero {
    background: radial-gradient(circle at 80% 20%, #f5f3ff 0%, var(--pc-gray-light) 100%);
    padding: 100px 0 80px;
    position: relative;
}

.pc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pc-primary-light);
    color: var(--pc-primary);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.pc-hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--pc-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.pc-hero h1 span {
    background: linear-gradient(135deg, var(--pc-primary), #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pc-hero-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--pc-text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.pc-hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pc-expiry-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    background: rgba(99, 102, 241, 0.07);
    color: #312e81;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-pc-primary {
    background: var(--pc-primary);
    color: white !important;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    padding: 1rem 2.25rem;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-pc-primary:hover {
    background: var(--pc-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.3);
}

.btn-pc-secondary {
    background: transparent;
    color: var(--pc-dark) !important;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    padding: 1rem 2rem;
    border: 2px solid var(--pc-border);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-pc-secondary:hover {
    background: rgba(15, 23, 42, 0.04);
    border-color: var(--pc-dark);
}

/* ── Interactive Preview / Mockup Card ── */
.pc-mockup-wrapper {
    position: relative;
}

.pc-mockup {
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid var(--pc-border);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pc-mockup:hover {
    transform: translateY(-4px);
}

.pc-mockup-header {
    background: var(--pc-dark);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pc-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
}
.pc-mockup-dot:nth-child(2) { background: #f59e0b; }
.pc-mockup-dot:nth-child(3) { background: #10b981; }

.pc-mockup-body {
    padding: 1.5rem;
    background: #fafafa;
}

.pc-mockup-page {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid var(--pc-border);
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.pc-mockup-block {
    border: 1px dashed var(--pc-border);
    border-radius: 0.6rem;
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.6rem;
    background: #fbfbff;
}

.pc-mockup-block:last-child { margin-bottom: 0; }

/* ── Features ── */
.pc-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--pc-dark);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pc-section-subtitle {
    font-size: 1.1rem;
    color: var(--pc-text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.pc-card {
    background: #ffffff;
    border: 1px solid var(--pc-border);
    border-radius: 1.25rem;
    padding: 2.25rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.pc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--pc-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.pc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
    border-color: rgba(99, 102, 241, 0.25);
}

.pc-card:hover::before {
    opacity: 1;
}

.pc-card-icon {
    width: 48px;
    height: 48px;
    background: var(--pc-primary-light);
    color: var(--pc-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pc-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pc-dark);
    margin-bottom: 0.75rem;
}

.pc-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--pc-text-light);
    margin: 0;
}

/* ── CTA Banner ── */
.pc-cta {
    background: linear-gradient(135deg, var(--pc-dark) 0%, #1e1b4b 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pc-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pc-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pc-cta p {
    font-size: 1.15rem;
    opacity: 0.8;
    margin-bottom: 2.25rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Footer ── */
.pc-footer {
    background: #090d16;
    color: #64748b;
    padding: 2.5rem 0;
    font-size: 0.9rem;
    border-top: 1px solid #1e293b;
}

.pc-footer a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 550;
    margin-left: 1.5rem;
    transition: color 0.15s ease;
}

.pc-footer a:hover {
    color: white;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .pc-hero {
        padding: 60px 0 60px;
    }
    .pc-hero h1 {
        font-size: 2.5rem;
    }
    .pc-mockup-wrapper {
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .pc-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-pc-primary, .btn-pc-secondary {
        justify-content: center;
    }
}
