/* ================================================================
   CrawlRabbit — Home Page Styles (PeerPush-inspired)
   ================================================================ */

/* ── 3-col hero card (replaces full-width .pp-hero) ──────────── */
.home-hero {
    background: linear-gradient(145deg, #eef2ff 0%, #faf5ff 55%, #f0fdf4 100%);
    border: 1px solid #c7d2fe;
    border-radius: 16px;
    padding: 36px 28px 26px;
    margin-bottom: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative glow blobs */
.home-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(91,108,249,.12) 0%, transparent 70%);
    pointer-events: none;
}
.home-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(5,150,105,.1) 0%, transparent 70%);
    pointer-events: none;
}

.home-hero .pp-eyebrow { margin-bottom: 18px; }

.home-hero .pp-hero-h1 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.5px;
    margin-bottom: 14px;
}

.home-hero .pp-hero-tagline {
    font-size: 14.5px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.home-hero .pp-hero-ctas {
    margin-bottom: 16px;
}

.home-hero .pp-cta-primary,
.home-hero .pp-cta-secondary {
    padding: 10px 20px;
    font-size: 13.5px;
}

.home-hero .pp-search-form { margin-bottom: 12px; }

.home-hero .pp-hero-footnote { font-size: 12px; }

/* ── Inline category chip strip (non-sticky in center col) ───── */
.home-chips {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.home-chips::-webkit-scrollbar { display: none; }

/* ── Section head (listings label) ───────────────────────────── */
.home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0 12px;
}
.home-section-h2 {
    font-size: 15px;
    font-weight: bold;
    color: #000;
    margin: 0;
}
.home-all-link {
    font-size: 13px;
    color: #059669;
    text-decoration: none;
}
.home-all-link:hover { text-decoration: underline; }

/* ── Home newsletter card ────────────────────────────────────── */
.home-newsletter-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #a7f3d0;
    border-radius: 14px;
    padding: 24px 22px;
    margin-top: 20px;
}
.home-nl-icon {
    font-size: 30px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}
.home-nl-body { flex: 1; min-width: 0; }
.home-nl-title {
    font-size: 16px;
    font-weight: bold;
    color: #065f46;
    margin: 0 0 6px;
}
.home-nl-desc {
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 14px;
}
.home-nl-form {
    display: flex;
    gap: 8px;
}
.home-nl-form input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 9px 13px;
    border: 1px solid #6ee7b7;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.home-nl-form input[type="email"]:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5,150,105,.12);
}
.home-nl-form button {
    padding: 9px 18px;
    background: #059669;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background .12s;
    flex-shrink: 0;
}
.home-nl-form button:hover { background: #047857; }
.home-nl-msg {
    margin-top: 10px;
    font-size: 12.5px;
    border-radius: 6px;
    padding: 8px 12px;
}
.home-nl-msg.success { background: #dcfce7; color: #15803d; }
.home-nl-msg.error   { background: #fee2e2; color: #dc2626; }

/* ── How It Works ───────────────────────────────────────────── */
.home-hiw { margin-top: 32px; }
.home-hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.home-hiw-step {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 16px;
    position: relative;
    overflow: hidden;
}
.home-hiw-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #059669 0%, #6366f1 100%);
}
.home-hiw-num {
    font-size: 10.5px; font-weight: 700;
    color: #059669; letter-spacing: .9px;
    text-transform: uppercase; margin-bottom: 10px;
}
.home-hiw-ico { font-size: 22px; margin-bottom: 8px; display: block; }
.home-hiw-step h3 {
    font-size: 13.5px; font-weight: 700; color: #111;
    margin: 0 0 6px;
}
.home-hiw-step p {
    font-size: 12.5px; color: #6b7280;
    line-height: 1.65; margin: 0;
}

/* ── Blog section ────────────────────────────────────────────── */
.home-blog { margin-top: 32px; }
.home-blog-list { display: flex; flex-direction: column; gap: 8px; }
.home-blog-item {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 16px;
    background: #fff; border: 1px solid #e5e7eb; border-radius: 10px;
    text-decoration: none; color: inherit;
    transition: border-color .12s, box-shadow .12s;
}
.home-blog-item:hover {
    border-color: #059669;
    box-shadow: 0 2px 8px rgba(5,150,105,.08);
}
.home-blog-meta {
    font-size: 11.5px; color: #9ca3af;
    flex-shrink: 0; min-width: 72px;
}
.home-blog-title {
    font-size: 13.5px; font-weight: 600; color: #111;
    flex: 1; line-height: 1.45;
}
.home-blog-arr {
    color: #059669; font-size: 15px; flex-shrink: 0;
    opacity: 0; transition: opacity .12s, transform .12s;
}
.home-blog-item:hover .home-blog-arr { opacity: 1; transform: translateX(3px); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.home-faq { margin-top: 32px; margin-bottom: 8px; }
.home-faq-list { display: flex; flex-direction: column; gap: 8px; }
.home-faq-item {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 10px;
    overflow: hidden;
}
.home-faq-item summary {
    padding: 13px 16px; font-size: 13.5px; font-weight: 600; color: #111;
    cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    transition: background .12s; user-select: none;
}
.home-faq-item summary::-webkit-details-marker { display: none; }
.home-faq-item summary::after {
    content: '+'; color: #059669; font-size: 20px;
    font-weight: 400; flex-shrink: 0; line-height: 1;
}
.home-faq-item[open] summary::after { content: '−'; }
.home-faq-item summary:hover { background: #f9fafb; }
.home-faq-item[open] > summary {
    background: #f9fafb; border-bottom: 1px solid #e5e7eb;
    color: #059669;
}
.home-faq-item > div {
    padding: 13px 16px; font-size: 13.5px; color: #374151;
    line-height: 1.7;
}

/* ── Design tokens ────────────────────────────────────────────── */
:root {
    --pp-bg:           #f6f8fa;
    --pp-card:         #ffffff;
    --pp-border:       #e5e7eb;
    --pp-border-hi:    #c7d2fe;
    --pp-text:         #000;
    --pp-sub:          #000;
    --pp-muted:        #555;
    --pp-primary:      #5b6cf9;
    --pp-primary-d:    #4754e0;
    --pp-vote:         #f97316;
    --pp-vote-bg:      #fff7ed;
    --pp-radius:       8px;
    --pp-shadow:       0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --pp-shadow-h:     0 4px 14px rgba(0,0,0,.09);
    --pp-t:            .15s ease;
}

/* ── Page background ─────────────────────────────────────────── */
body { background-color: var(--pp-bg); }

/* ── Shared container ────────────────────────────────────────── */
.pp-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.pp-hero {
    background: #fff;
    border-bottom: 1px solid var(--pp-border);
    padding: 60px 20px 44px;
    text-align: center;
}

.pp-hero-inner {
    max-width: 620px;
    margin: 0 auto;
}

/* Eyebrow badge */
.pp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #3730a3;
    font-weight: normal;
    background: rgba(255,255,255,.75);
    border: 1px solid #c7d2fe;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}

.pp-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: pp-pulse 2.4s infinite;
}

@keyframes pp-pulse {
    0%,100% { opacity: 1;   transform: scale(1); }
    50%      { opacity: .55; transform: scale(.8); }
}

/* Heading */
.pp-hero-h1 {
    font-size: 44px;
    font-weight: normal;
    line-height: 1.13;
    letter-spacing: -.6px;
    color: var(--pp-text);
    margin: 0 0 16px;
}

.pp-gradient-text {
    background: linear-gradient(130deg, #5b6cf9 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    display: inline-block;
}

/* Tagline */
.pp-hero-tagline {
    font-size: 17px;
    color: var(--pp-sub);
    line-height: 1.65;
    margin: 0 0 28px;
}

/* ── Hero CTAs ───────────────────────────────────────────────── */
.pp-hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pp-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--pp-primary);
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: normal;
    text-decoration: none;
    transition: all var(--pp-t);
    box-shadow: 0 4px 14px rgba(91,108,249,.35);
}

.pp-cta-primary:hover {
    background: var(--pp-primary-d);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(91,108,249,.4);
}

.pp-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: transparent;
    color: var(--pp-primary);
    border: 2px solid var(--pp-primary);
    border-radius: 8px;
    font-size: 15px;
    font-weight: normal;
    text-decoration: none;
    transition: all var(--pp-t);
}

.pp-cta-secondary:hover {
    background: var(--pp-primary);
    color: #fff;
}

/* Footnote row below search */
.pp-hero-footnote {
    font-size: 13px;
    color: var(--pp-muted);
    margin: 12px 0 0;
}

.pp-hero-footnote a {
    color: var(--pp-primary);
    text-decoration: none;
    font-weight: normal;
}

.pp-hero-footnote a:hover { text-decoration: underline; }

/* ── Search bar ──────────────────────────────────────────────── */
.pp-search-form { margin-bottom: 20px; }

.pp-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid var(--pp-border);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    transition: border-color var(--pp-t), box-shadow var(--pp-t);
}

.pp-search-box:focus-within {
    border-color: var(--pp-primary);
    box-shadow: 0 0 0 4px rgba(91,108,249,.1);
}

.pp-search-ico {
    color: var(--pp-muted);
    font-size: 14px;
    flex-shrink: 0;
}

.pp-search-box input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    font-size: 15px;
    color: var(--pp-text);
    background: transparent;
    font-family: inherit;
}

.pp-search-box input::placeholder { color: var(--pp-muted); }

.pp-search-btn {
    background: var(--pp-primary);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: background var(--pp-t);
    flex-shrink: 0;
}

.pp-search-btn:hover { background: var(--pp-primary-d); }

.pp-dot-sep { color: var(--pp-muted); }

/* ================================================================
   CATEGORY FILTER STRIP
   ================================================================ */
.pp-cat-nav {
    background: #fff;
    border-bottom: 1px solid var(--pp-border);
    position: sticky;
    top: 53px;
    z-index: 90;
}

.pp-cat-nav-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pp-cat-nav-inner::-webkit-scrollbar { display: none; }

.pp-chip {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: normal;
    color: var(--pp-sub);
    background: #f3f4f6;
    text-decoration: none;
    border: 1px solid transparent;
    flex-shrink: 0;
    transition: all var(--pp-t);
}

.pp-chip:hover {
    background: #e0e7ff;
    color: var(--pp-primary);
    border-color: var(--pp-border-hi);
}

.pp-chip--active,
.pp-chip.active {
    background: var(--pp-primary);
    color: #fff;
    border-color: var(--pp-primary);
}

.pp-chip--more {
    background: transparent;
    color: var(--pp-primary);
}

/* ================================================================
   SECTION HEADER
   ================================================================ */
.pp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 16px;
}

.pp-section-h2 {
    font-size: 18px;
    font-weight: normal;
    color: var(--pp-text);
    margin: 0;
}

.pp-all-link {
    font-size: 13px;
    color: var(--pp-primary);
    text-decoration: none;
    font-weight: normal;
}

.pp-all-link:hover { text-decoration: underline; }

/* ================================================================
   LISTING CARDS
   ================================================================ */
.pp-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--pp-card);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    padding: 14px 16px;
    margin-bottom: 8px;
    transition: border-color var(--pp-t), box-shadow var(--pp-t), transform var(--pp-t);
}

.pp-item:hover {
    border-color: var(--pp-border-hi);
    box-shadow: var(--pp-shadow-h);
    transform: translateY(-1px);
}

/* Premium card variant */
.pp-item--premium {
    border-color: #f59e0b;
    background: linear-gradient(to right, #fffbeb 0%, #fff 60%);
    position: relative;
}

.pp-item--premium:hover {
    border-color: #d97706;
    box-shadow: 0 4px 16px rgba(245,158,11,.18);
}

/* Premium badge */
.pp-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: normal;
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: .2px;
    flex-shrink: 0;
    white-space: nowrap;
}

.pp-premium-badge i { font-size: 9px; color: #f59e0b; }

/* Rank number */
.pp-item-rank {
    font-size: 12px;
    font-weight: normal;
    color: var(--pp-muted);
    min-width: 22px;
    text-align: right;
    padding-top: 11px;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

/* Favicon */
.pp-item-favicon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pp-border);
}

.pp-item-favicon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
}

/* Fallback when favicon fails to load */
.pp-favicon-err::before {
    content: '🌐';
    font-size: 20px;
}

.pp-favicon-err img { display: none; }

/* Card body */
.pp-item-body {
    flex: 1;
    min-width: 0;
}

.pp-item-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.pp-item-name {
    font-size: 15px;
    font-weight: normal;
    margin: 0;
    line-height: 1.3;
}

.pp-item-link {
    color: var(--pp-text);
    text-decoration: none;
    transition: color var(--pp-t);
}

.pp-item-link:hover { color: var(--pp-primary); }

/* SSL badge */
.pp-ssl {
    font-size: 11px;
    font-weight: normal;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
    letter-spacing: .2px;
}

.pp-ssl--a,
.pp-ssl--a-plus { background: #dcfce7; color: #15803d; }

.pp-ssl--b      { background: #dbeafe; color: #1d4ed8; }

.pp-ssl--c      { background: #fee2e2; color: #dc2626; }

/* Description */
.pp-item-desc {
    font-size: 13px;
    color: var(--pp-sub);
    line-height: 1.5;
    margin: 4px 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta row */
.pp-item-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--pp-muted);
    flex-wrap: wrap;
}

.pp-item-domain { font-weight: normal; color: var(--pp-sub); }
.pp-meta-sep    { color: var(--pp-border); }

/* ================================================================
   UPVOTE BUTTON
   ================================================================ */
.pp-vote {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    min-width: 48px;
    padding: 8px 6px;
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    background: #fff;
    color: var(--pp-sub);
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: normal;
    transition: all var(--pp-t);
    flex-shrink: 0;
    align-self: center;
    line-height: 1;
}

.pp-vote i {
    font-size: 18px;
    transition: transform var(--pp-t);
}

.pp-vote .upvote-count {
    font-size: 13px;
    font-weight: normal;
    font-variant-numeric: tabular-nums;
}

.pp-vote:hover {
    border-color: var(--pp-vote);
    color: var(--pp-vote);
    background: var(--pp-vote-bg);
}

.pp-vote:hover i { transform: translateY(-2px); }

.pp-vote.upvoted {
    border-color: var(--pp-vote);
    background: var(--pp-vote);
    color: #fff;
}

.pp-vote.upvoted i { transform: translateY(-1px); }

.pp-vote:disabled { opacity: .55; cursor: not-allowed; }

/* ================================================================
   BROWSE ALL CTA + PAGINATION
   ================================================================ */
.pp-browse-cta {
    text-align: center;
    padding: 24px 0 10px;
}

.pp-browse-cta a {
    display: inline-block;
    padding: 10px 26px;
    border: 1px solid var(--pp-primary);
    border-radius: 6px;
    color: var(--pp-primary);
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    transition: all var(--pp-t);
}

.pp-browse-cta a:hover {
    background: var(--pp-primary);
    color: #fff;
}

.pp-pages {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 20px 0 36px;
}

.pp-page {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border: 1px solid var(--pp-border);
    border-radius: 6px;
    background: #fff;
    color: var(--pp-text);
    font-size: 14px;
    text-decoration: none;
    transition: all var(--pp-t);
}

.pp-page:hover {
    border-color: var(--pp-primary);
    color: var(--pp-primary);
}

.pp-page--active {
    background: var(--pp-primary);
    border-color: var(--pp-primary);
    color: #fff;
    font-weight: normal;
}

.pp-page--disabled {
    color: var(--pp-muted);
    pointer-events: none;
    background: #f9fafb;
}

/* ================================================================
   EMPTY STATE
   ================================================================ */
.pp-empty-state {
    text-align: center;
    padding: 64px 20px;
    color: var(--pp-sub);
}

.pp-empty-state .pp-empty-icon {
    font-size: 52px;
    display: block;
    margin-bottom: 16px;
}

.pp-empty-state h3 {
    font-size: 20px;
    color: var(--pp-text);
    margin: 0 0 8px;
    font-weight: normal;
}

.pp-empty-state p { margin: 0 0 24px; }

.pp-submit-cta {
    display: inline-block;
    padding: 11px 26px;
    background: var(--pp-primary);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    transition: background var(--pp-t);
}

.pp-submit-cta:hover { background: var(--pp-primary-d); }

/* ================================================================
   CATEGORIES GRID SECTION
   ================================================================ */
.pp-cats-section {
    background: #fff;
    border-top: 1px solid var(--pp-border);
    margin-top: 12px;
    padding-bottom: 48px;
}

.pp-cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.pp-cat-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px 16px;
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    background: var(--pp-bg);
    text-decoration: none;
    gap: 6px;
    transition: all var(--pp-t);
}

.pp-cat-tile:hover {
    border-color: var(--pp-border-hi);
    background: #eef2ff;
    box-shadow: var(--pp-shadow);
    transform: translateY(-2px);
}

.pp-cat-ico  { font-size: 30px; }
.pp-cat-name { font-size: 13px; font-weight: normal; color: var(--pp-text); }
.pp-cat-n    { font-size: 11px; color: var(--pp-muted); }

/* ================================================================
   SUBMIT MODAL
   ================================================================ */
.pp-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pp-modal-box {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 48px rgba(0,0,0,.18);
}

.pp-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 26px;
    cursor: pointer;
    color: var(--pp-muted);
    background: none;
    border: none;
    line-height: 1;
    transition: color var(--pp-t);
    font-family: inherit;
}

.pp-modal-close:hover { color: var(--pp-text); }

.pp-modal-box h2 {
    margin: 0 0 6px;
    font-size: 20px;
    color: var(--pp-text);
    font-weight: normal;
}

.pp-modal-sub {
    font-size: 13px;
    color: var(--pp-sub);
    margin: 0 0 22px;
}

.pp-modal-form .pp-form-group { margin-bottom: 16px; }

.pp-modal-form label {
    display: block;
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 6px;
    color: var(--pp-text);
}

.pp-optional { font-weight: normal; color: var(--pp-muted); }

.pp-modal-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--pp-border);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color var(--pp-t), box-shadow var(--pp-t);
    color: var(--pp-text);
}

.pp-modal-form input:focus {
    outline: none;
    border-color: var(--pp-primary);
    box-shadow: 0 0 0 3px rgba(91,108,249,.12);
}

.pp-modal-form small {
    display: block;
    font-size: 12px;
    color: var(--pp-muted);
    margin-top: 5px;
}

.pp-modal-submit {
    width: 100%;
    padding: 12px;
    background: var(--pp-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: normal;
    cursor: pointer;
    font-family: inherit;
    transition: background var(--pp-t);
}

.pp-modal-submit:hover { background: var(--pp-primary-d); }
.pp-modal-submit:disabled { opacity: .65; cursor: not-allowed; }

.pp-msg {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.pp-msg--success { background: #dcfce7; color: #15803d; }
.pp-msg--error   { background: #fee2e2; color: #dc2626; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 680px) {
    .home-hiw-steps { grid-template-columns: 1fr; }
    .home-blog-meta { display: none; }
    .pp-hero { padding: 40px 16px 30px; }

    .pp-hero-h1 {
        font-size: 30px;
        letter-spacing: -.3px;
    }

    .pp-hero-tagline { font-size: 15px; }

    .pp-hero-ctas { gap: 10px; }

    .pp-cta-primary,
    .pp-cta-secondary { padding: 11px 20px; font-size: 14px; }

    .pp-search-box { padding: 6px 6px 6px 14px; }
    .pp-search-btn { padding: 9px 18px; }

    .pp-item { padding: 12px 14px; gap: 10px; }

    .pp-item-rank { display: none; }

    .pp-item-favicon,
    .pp-item-favicon img {
        width: 36px;
        height: 36px;
    }

    .pp-item-favicon img { width: 32px; height: 32px; }

    .pp-cats-grid { grid-template-columns: repeat(2, 1fr); }

    .pp-modal-box { padding: 24px 20px; }
}

@media (max-width: 420px) {
    .pp-hero-h1 { font-size: 26px; }

    .pp-search-box {
        flex-wrap: wrap;
        border-radius: 10px;
        padding: 10px 14px;
        gap: 8px;
    }

    .pp-search-ico  { display: none; }
    .pp-search-btn  { width: 100%; border-radius: 6px; padding: 10px; }

    .pp-hero-ctas    { flex-direction: column; align-items: center; }
    .pp-cta-primary,
    .pp-cta-secondary { width: 100%; max-width: 280px; justify-content: center; }
}
