/* PawSqueeze — polished tinypng-inspired design */
:root {
    --bg: #FFFFFF;
    --bg-soft: #FAFAF7;
    --surface: #FFFFFF;
    --surface-soft: #F5F5F2;
    --ink: #1A1A1A;
    --ink-dim: #555555;
    --ink-faint: #999999;
    --accent: #F4A261;
    --accent-dim: #E76F51;
    --accent-soft: #FFF5EC;
    --line: #EDEDE8;
    --line-strong: #D8D8D2;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.10);
    --success: #4CAF50;
    --danger: #E76F51;
    --radius: 12px;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
a { color: var(--accent-dim); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--ink); }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
strong { font-weight: 700; color: var(--ink); }

/* NAV */
nav.top {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
nav.top .container { display: flex; align-items: center; justify-content: space-between; }
nav.top .brand { display: flex; align-items: center; gap: 8px; font-size: 19px; color: var(--ink); font-weight: 800; }
nav.top .brand .logo { font-size: 26px; }
nav.top .brand-name { letter-spacing: -0.3px; }
nav.top .links { display: flex; gap: 28px; align-items: center; }
nav.top .links a { color: var(--ink-dim); font-size: 14px; font-weight: 500; }
nav.top .links a:hover { color: var(--ink); }
nav.top .btn-cta {
    background: var(--ink);
    color: white !important;
    padding: 9px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13.5px;
    transition: all 0.15s;
}
nav.top .btn-cta:hover { background: var(--accent-dim); transform: translateY(-1px); }

/* HERO */
.hero { padding: 70px 0 40px; text-align: center; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.hero-pill {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent-dim);
    border: 1px solid #F4D6B8;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
    color: var(--ink);
}
.hero h1 .accent { color: var(--accent-dim); }
.hero-sub {
    font-size: 18px;
    color: var(--ink-dim);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.55;
}

/* DROP ZONE wrapper */
.drop-wrap {
    max-width: 720px;
    margin: 0 auto 18px;
}
.drop {
    background: var(--surface);
    border: 2px dashed var(--line-strong);
    border-radius: 16px;
    padding: 56px 30px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.22s ease;
    box-shadow: var(--shadow);
    position: relative;
}
.drop:hover, .drop.dragging {
    border-color: var(--accent);
    background: var(--accent-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.drop .cat-wrap { position: relative; height: 70px; margin-bottom: 16px; }
.drop .cat {
    font-size: 56px;
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.5, 1.5, 0.5, 1);
}
.drop:hover .cat { transform: scale(1.12) rotate(-8deg); }
.drop .paws {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(40px);
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s 0.1s;
}
.drop:hover .paws { opacity: 1; transform: translateX(50px) translateY(-4px); }
.drop .label {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.drop .hint {
    font-size: 14px;
    color: var(--ink-dim);
    margin-bottom: 12px;
}
.drop .formats-allowed {
    display: inline-block;
    padding: 4px 12px;
    background: var(--surface-soft);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink-dim);
    letter-spacing: 0.3px;
}
.drop input[type=file] { display: none; }

/* FORMAT BAR */
.format-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 18px;
    margin-top: 14px;
    box-shadow: var(--shadow-sm);
}
.format-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; }
.toggle input { display: none; }
.toggle-track {
    position: relative; width: 38px; height: 22px;
    background: #ddd; border-radius: 999px;
    flex-shrink: 0;
    transition: background 0.18s;
}
.toggle-knob {
    position: absolute; top: 2px; left: 2px;
    width: 18px; height: 18px;
    background: white; border-radius: 50%;
    transition: left 0.18s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle input:checked + .toggle-track { background: var(--success); }
.toggle input:checked + .toggle-track .toggle-knob { left: 18px; }
.toggle-label { font-size: 13.5px; color: var(--ink); font-weight: 500; }
.chip {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    color: var(--ink-dim);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.chip:hover { border-color: var(--accent); color: var(--ink); }
.chip.active { background: var(--accent); color: white; border-color: var(--accent); box-shadow: 0 2px 8px rgba(244,162,97,0.3); }

.quota-pill {
    display: inline-block;
    background: white;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 13px;
    color: var(--ink-dim);
    box-shadow: var(--shadow-sm);
}

/* RESULTS */
.results {
    max-width: 720px;
    margin: 24px auto 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 24px;
}
.result-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: var(--shadow-sm);
    display: flex; align-items: center; gap: 16px;
}
.result-card .ico { font-size: 24px; flex-shrink: 0; }
.result-card .meta { flex: 1; min-width: 0; }
.result-card .meta .name { font-weight: 600; font-size: 14px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.result-card .meta .stat { font-size: 12.5px; color: var(--ink-dim); margin-top: 2px; }
.result-card .meta .stat .saved { color: var(--success); font-weight: 700; }
.result-card a.dl {
    background: var(--ink);
    color: white !important;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.15s;
}
.result-card a.dl:hover { background: var(--accent-dim); transform: translateY(-1px); }
.result-card.progress .meta .stat { color: var(--accent-dim); }
.result-card.error { background: #FFF6F4; border-color: #FAD2C8; }
.result-card.error .meta .stat { color: var(--danger); }

/* SECTIONS */
.section { padding: 70px 0; }
.section-alt { background: var(--bg-soft); }
.section-tag {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent-dim);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 16px;
}
.section-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
    color: var(--ink);
}
.section-sub {
    font-size: 16.5px;
    color: var(--ink-dim);
    max-width: 640px;
    margin-bottom: 40px;
    line-height: 1.55;
}

/* HOW IT WORKS */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.step {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    text-align: left;
    transition: all 0.2s;
}
.step:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: var(--accent); color: white;
    border-radius: 50%;
    font-weight: 800; font-size: 16px;
    margin-bottom: 14px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-dim); line-height: 1.55; }

/* FEATURE GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 36px;
}
.feature {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px;
    transition: all 0.2s;
}
.feature:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--ink-dim); line-height: 1.55; }

/* USE CASES */
.usecases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 32px;
}
.usecase {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.2s;
}
.usecase:hover { border-color: var(--accent); }
.uc-icon { font-size: 30px; margin-bottom: 12px; }
.usecase h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.usecase p { font-size: 14px; color: var(--ink-dim); line-height: 1.55; }

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 36px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.price-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px 26px;
    text-align: center;
    position: relative;
    transition: all 0.2s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(244,162,97,0.18);
    transform: scale(1.03);
}
.price-card .popular-tag {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: white;
    font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.price-card .tier-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.price-card .price { font-size: 36px; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.price-card .price small { font-size: 14px; color: var(--ink-faint); font-weight: 500; }
.price-card .price-month { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 16px; }
.price-card .features-list { list-style: none; text-align: left; margin: 18px 0; }
.price-card .features-list li { padding: 6px 0; font-size: 13.5px; color: var(--ink-dim); }
.price-card .features-list li::before { content: '✓ '; color: var(--success); font-weight: 700; margin-right: 4px; }
.btn-tier {
    display: block; width: 100%; padding: 11px;
    border-radius: 8px; font-weight: 700; font-size: 14px;
    text-decoration: none; transition: all 0.15s;
    border: none; cursor: pointer;
}
.btn-tier.solid { background: var(--accent); color: white; }
.btn-tier.solid:hover { background: var(--accent-dim); color: white; transform: translateY(-1px); }
.btn-tier.ghost { background: white; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-tier.ghost:hover { border-color: var(--accent); color: var(--accent-dim); }

/* FAQ */
.faq { max-width: 760px; margin: 36px auto 0; }
.faq details {
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 10px;
    transition: border-color 0.15s;
}
.faq details:hover { border-color: var(--line-strong); }
.faq details[open] { border-color: var(--accent); }
.faq summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--ink);
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--ink-faint); transition: transform 0.18s; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 14px; font-size: 14.5px; color: var(--ink-dim); line-height: 1.65; }

/* FOOTER CTA */
.footer-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    padding: 70px 0;
    text-align: center;
    color: white;
}
.footer-cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.6px; }
.footer-cta p { font-size: 17px; opacity: 0.94; margin-bottom: 28px; }
.btn-cta-big {
    display: inline-block;
    background: white;
    color: var(--ink) !important;
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    transition: all 0.2s;
}
.btn-cta-big:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.2); }

/* FOOTER */
footer.bottom {
    background: var(--ink);
    color: #999;
    padding: 50px 0 30px;
    font-size: 13.5px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}
.footer-grid > div { display: flex; flex-direction: column; gap: 8px; }
.footer-grid strong { color: #fff; font-size: 13px; margin-bottom: 4px; display: block; }
.footer-grid a { color: #aaa; font-size: 13px; }
.footer-grid a:hover { color: white; }
.footer-brand { display: flex; align-items: center; gap: 8px; color: white; font-size: 17px; }
.footer-brand .logo { font-size: 22px; }

/* AUTH (shared from before) */
.auth-shell { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}
.auth-card .brand { text-align: center; margin-bottom: 22px; }
.auth-card .brand .logo { font-size: 38px; }
.auth-card h2 { font-size: 24px; font-weight: 700; text-align: center; margin-bottom: 6px; }
.auth-card .sub { font-size: 14px; color: var(--ink-dim); text-align: center; margin-bottom: 24px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; color: var(--ink); margin-bottom: 6px; font-weight: 500; }
.field input {
    width: 100%;
    background: white;
    border: 1.5px solid var(--line);
    color: var(--ink);
    padding: 11px 13px;
    border-radius: 8px;
    font-size: 14.5px;
    font-family: inherit;
    transition: border-color 0.15s;
}
.field input:focus { outline: none; border-color: var(--accent); }
.btn-primary {
    display: block; width: 100%;
    background: var(--ink);
    color: white; border: none;
    padding: 12px; border-radius: 8px;
    font-size: 15px; font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s;
}
.btn-primary:hover { background: var(--accent-dim); transform: translateY(-1px); box-shadow: var(--shadow); }
.auth-foot { text-align: center; margin-top: 18px; font-size: 14px; color: var(--ink-dim); }
.errors {
    background: #FFF6F4;
    border: 1px solid #FAD2C8;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13.5px;
    color: var(--danger);
    margin-bottom: 16px;
}
.errors ul { margin: 4px 0 0 18px; }

/* DASHBOARD */
.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}
.dash-tile {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
}
.dash-tile .label { font-size: 11.5px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; font-weight: 600; }
.dash-tile .value { font-size: 28px; font-weight: 800; color: var(--ink); line-height: 1; }
.dash-tile .meta { font-size: 12.5px; color: var(--ink-dim); margin-top: 6px; }

.history { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 20px; }
.history h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.history-row { display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.history-row:last-child { border-bottom: none; }
.history-row .name { flex: 1; color: var(--ink); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.history-row .saved { color: var(--success); font-weight: 700; }

/* PRICING COMPARE TABLE */
.billing-toggle {
    display: inline-flex;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    margin: 0 auto 36px;
    gap: 2px;
}
.bt-btn {
    background: transparent;
    border: none;
    color: var(--ink-dim);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.bt-btn:hover { color: var(--ink); }
.bt-btn.active { background: white; color: var(--ink); box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.bt-btn .save {
    background: var(--success);
    color: white;
    font-size: 10.5px;
    padding: 2px 7px;
    border-radius: 999px;
    font-weight: 700;
}

.compare-table {
    max-width: 920px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.compare-table table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table thead th {
    padding: 24px 18px;
    text-align: center;
    background: var(--bg-soft);
    vertical-align: bottom;
    border-bottom: 1px solid var(--line);
}
.compare-table thead th:first-child { text-align: left; background: white; }
.compare-table thead .th-recommended {
    background: var(--accent-soft);
    position: relative;
}
.compare-table .th-badge {
    position: absolute;
    top: -1px; left: 0; right: 0;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 0;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.compare-table .th-recommended .th-tier { margin-top: 16px; }
.compare-table .th-tier {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.compare-table .th-tier .crown { font-size: 14px; }
.compare-table .th-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}
.compare-table .th-cycle {
    font-size: 11.5px;
    color: var(--ink-faint);
    margin-top: 4px;
}
.compare-table tbody th {
    text-align: left;
    padding: 13px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-dim);
    border-bottom: 1px solid var(--line);
    background: white;
}
.compare-table tbody td {
    padding: 13px 18px;
    text-align: center;
    font-size: 13.5px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}
.compare-table tbody td.center { text-align: center; }
.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th { border-bottom: none; }
.compare-table .yes {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 22px; height: 22px;
    background: var(--success); color: white;
    border-radius: 50%;
    font-size: 12px; font-weight: 700;
}
.compare-table .no {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 22px; height: 22px;
    background: #DDD; color: white;
    border-radius: 50%;
    font-size: 12px;
}
.compare-table tfoot th { background: white; }
.compare-table tfoot td { padding: 20px 18px; background: var(--bg-soft); }
.compare-table .current-plan {
    background: var(--surface-soft);
    color: var(--ink-faint);
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.btn-tier.solid-light {
    background: white;
    color: var(--ink);
    border: 1.5px solid var(--accent);
}
.btn-tier.solid-light:hover {
    background: var(--accent);
    color: white;
}

.vs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 36px;
}
.vs-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px;
}
.vs-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; color: var(--accent-dim); }
.vs-card ul { list-style: none; }
.vs-card li { padding: 6px 0; font-size: 13.5px; color: var(--ink-dim); border-bottom: 1px solid var(--line); }
.vs-card li:last-child { border-bottom: none; }
.vs-card li::before { content: '→ '; color: var(--accent); font-weight: 700; }

/* =========== HERO-DROP (drop zone IS the hero) =========== */
.hero-drop {
    padding: 56px 0 70px;
    background:
        radial-gradient(circle at 15% 20%, rgba(244,162,97,0.10), transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(244,162,97,0.07), transparent 50%),
        linear-gradient(180deg, #FFFCF7 0%, #FBF8F2 100%);
}
.drop-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(20,20,20,0.06), 0 1px 0 rgba(0,0,0,0.02);
    padding: 32px;
    max-width: 880px;
    margin: 0 auto;
}
.drop-card .drop {
    background: linear-gradient(180deg, var(--accent-soft) 0%, #FFF9F2 100%);
    border: 2px dashed var(--accent);
    border-radius: 16px;
    padding: 56px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.18s;
}
.drop-card .drop:hover, .drop-card .drop.dragging {
    border-color: var(--ink);
    background: linear-gradient(180deg, #FFF1E0 0%, #FFE9CF 100%);
    transform: scale(1.005);
}
.drop-card .drop input[type=file] { display: none; }
.cat-wrap { display: flex; justify-content: center; margin-bottom: 14px; }
.cat { font-size: 58px; line-height: 1; animation: bob 2.6s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.drop-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    margin: 6px 0 6px;
    letter-spacing: -0.02em;
}
.drop-hint { font-size: 14.5px; color: var(--ink-dim); margin: 0; }

.hero-strap {
    text-align: center;
    font-size: 16px;
    color: var(--ink-dim);
    line-height: 1.6;
    max-width: 680px;
    margin: 28px auto 0;
}
.hero-strap strong { color: var(--ink); font-weight: 600; }

.quota-pill {
    display: block;
    text-align: center;
    margin: 18px auto 0;
    font-size: 13.5px;
    color: var(--ink-dim);
    background: white;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 8px 18px;
    width: fit-content;
}
.quota-pill strong { color: var(--ink); font-weight: 700; }
.quota-pill a { color: var(--accent); font-weight: 600; }

/* =========== SECTION-HEAD (centered heading block) =========== */
.section-head { text-align: center; margin-bottom: 36px; }
.section-head .section-tag { display: inline-block; margin-bottom: 10px; }
.section-head .section-title { margin-bottom: 8px; }
.section-head .section-sub { max-width: 580px; margin: 0 auto; }

/* =========== PRICING-MINI (homepage teaser) =========== */
.pricing-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 920px;
    margin: 0 auto;
}
.pm-card {
    position: relative;
    background: white;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    padding: 26px 22px 24px;
    text-align: center;
    transition: all 0.18s;
}
.pm-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.06); }
.pm-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(244,162,97,0.12);
}
.pm-flag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.pm-name { font-size: 13px; font-weight: 700; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 8px; }
.pm-price { font-size: 32px; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 10px; }
.pm-price small { font-size: 13px; color: var(--ink-faint); font-weight: 500; }
.pm-meta { font-size: 13px; color: var(--ink-dim); line-height: 1.5; }

/* =========== FOOTER-ROW (clean horizontal footer) =========== */
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 14px 0;
}
.footer-row .footer-brand { color: white; font-size: 16px; font-weight: 600; }
.footer-row .footer-brand .logo { font-size: 22px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: #b8b8b8; font-size: 13.5px; transition: color 0.15s; }
.footer-links a:hover { color: white; }
.footer-meta { color: #888; font-size: 12.5px; }

@media (max-width: 720px) {
    .hero h1 { font-size: 34px; }
    .section-title { font-size: 26px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav.top .links a:not(.btn-cta) { display: none; }
    .price-card.featured { transform: none; }
    .drop-card { padding: 18px; }
    .drop-card .drop { padding: 36px 16px; }
    .drop-title { font-size: 22px; }
    .cat { font-size: 48px; }
    .pricing-mini { grid-template-columns: 1fr; }
    .footer-row { flex-direction: column; text-align: center; gap: 16px; }
    .footer-links { justify-content: center; }
}
