/* Adukoo Business Catalog — shared print-ready stylesheet.
 *
 * v78.63. One CSS file serving all 7 catalogs so the visual identity is
 * pixel-identical across business types. Designed to look great on
 * screen AND in a real WeasyPrint-generated PDF. Two key fixes vs.
 * v78.60:
 *   1. `@page` rule with tight 10mm margins so the printed PDF doesn't
 *      have huge whitespace bands on the sides.
 *   2. Cover-hero + sc-img are now driven by actual <img> tags (not
 *      background-image divs) because WeasyPrint can't render
 *      `background-image` reliably inside CSS Grid items.
 */

@page {
    size: A4;
    margin: 10mm 8mm;
}

:root {
    --navy: #0A192F;
    --navy-deep: #061327;
    --yellow: #F5C300;
    --yellow-soft: #FFE489;
    --ink: #0A192F;
    --ink-soft: rgba(10, 25, 47, 0.72);
    --ink-mute: rgba(10, 25, 47, 0.55);
    --paper: #FFFAEC;
    --paper-card: #FFFFFF;
    --border: rgba(10, 25, 47, 0.12);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, "Inter", "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

.catalog {
    max-width: 880px;
    margin: 0 auto;
    padding: 16px;
}

.page {
    background: var(--paper-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 36px;
    margin-bottom: 18px;
    page-break-after: always;
    break-after: page;
    box-shadow: 0 1px 0 rgba(10, 25, 47, 0.04);
}
.page:last-child { page-break-after: auto; }

.page--dark {
    background: var(--navy);
    color: #fff;
}
.page--dark h1, .page--dark h2, .page--dark h3 {
    color: #fff;
}
.page--dark p,
.page--dark .lead {
    color: rgba(255, 255, 255, 0.92);
}
.page--dark .chip {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.page--dark .eyebrow {
    color: rgba(255, 255, 255, 0.78) !important;
}
.page--dark .card p,
.page--dark .card h3 {
    color: #fff;
}

/* v78.61 — Showcase strip (Digital Store / Sponsored ad / Listing card)
   so prospects see what their content actually looks like on Adukoo. */
.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin: 22px 0 4px;
}
.showcase .sc {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.showcase .sc-img {
    display: block;
    width: 100%;
    height: 130px;
    object-fit: cover;
    object-position: center;
    background-color: var(--navy);
}
.showcase .sc-body { padding: 12px 14px 14px; }
.showcase .sc-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 4px;
}
.showcase .sc h4 {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--ink);
}
.showcase .sc p {
    margin: 0;
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.5;
}
.showcase .sc-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
@media (max-width: 640px) {
    .showcase { grid-template-columns: 1fr; }
}

.page--cover {
    background: linear-gradient(160deg, var(--navy) 0%, #112644 100%);
    color: #fff;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}
.page--cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(245, 195, 0, 0.16), transparent 45%),
        radial-gradient(circle at 15% 85%, rgba(245, 195, 0, 0.08), transparent 50%);
    pointer-events: none;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: 22px;
    position: relative;
    z-index: 1;
}
.logo-dot {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-weight: 900;
    font-size: 22px;
    box-shadow: 0 0 30px rgba(245, 195, 0, 0.45);
}
.logo-row small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 2px;
}

.cover-title {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0 0 14px;
    position: relative;
    z-index: 1;
}
.cover-title em {
    color: var(--yellow);
    font-style: normal;
}
.cover-sub {
    font-size: 18px;
    max-width: 540px;
    /* v78.61 — Bumped from 0.88 → full white-on-navy with subtle text-shadow.
       Previously the muted opacity + gradient overlay rendered this lead
       paragraph nearly unreadable against the radial yellow glow. */
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
    position: relative;
    z-index: 1;
}
.cover-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    z-index: 1;
}

.cover-hero {
    display: block;
    margin: 28px 0 24px;
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 1;
}

h1 {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
    font-size: 36px;
    margin: 0 0 12px;
}
h2 {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-weight: 800;
    font-size: 22px;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}
h3 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: -0.2px;
}
.eyebrow {
    color: var(--ink-mute);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.lead {
    font-size: 17px;
    color: var(--ink-soft);
    margin: 0 0 28px;
    max-width: 640px;
}
p { margin: 0 0 12px; color: var(--ink-soft); }
strong { color: var(--ink); }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

.card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 18px 16px;
}
.card .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--yellow);
    color: var(--navy);
    font-weight: 900;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 10px;
}
.card p { font-size: 13px; line-height: 1.5; margin: 0; }

ul.bul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}
ul.bul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
}
ul.bul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(245, 195, 0, 0.16);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(245, 195, 0, 0.45);
}

.mock-bar {
    background: var(--navy);
    color: #fff;
    border-radius: 12px;
    padding: 18px 22px;
    margin: 16px 0 0;
    display: flex;
    align-items: center;
    gap: 14px;
}
.mock-bar img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.kpi-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
    margin: 12px 0 18px;
}
.kpi {
    background: var(--navy);
    color: #fff;
    border-radius: 10px;
    padding: 14px 12px;
}
.kpi .v {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-weight: 900;
    color: var(--yellow);
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.5px;
}
.kpi .l {
    font-size: 10px;
    margin-top: 6px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.cta {
    background: var(--yellow);
    color: var(--navy);
    border-radius: 12px;
    padding: 26px 28px;
    margin-top: 22px;
}
.cta h3 { font-size: 20px; margin-bottom: 8px; }
.cta a {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.footer {
    font-size: 11px;
    color: var(--ink-mute);
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pillrow {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

/* Print tuning */
@media print {
    .catalog { padding: 0; max-width: none; }
    .page { box-shadow: none; border: none; border-radius: 0; padding: 30mm 22mm; }
    .page--cover { min-height: 0; }
    body { background: #fff; }
}

/* Mobile */
@media (max-width: 640px) {
    .page { padding: 28px 22px; }
    .grid-2, .grid-3, .kpi-row { grid-template-columns: 1fr 1fr; }
    .cover-title { font-size: 36px; }
    h1 { font-size: 28px; }
}


/* v78.63 — Share strip (visible only on screen). Hidden in print so the
   downloaded PDF stays clean and professional. */
.noprint { display: block; }
@media print { .noprint { display: none !important; } }

.share-strip {
    max-width: 880px;
    margin: 8px auto 32px;
    padding: 18px 20px;
    background: var(--navy);
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(10, 25, 47, 0.18);
}
.share-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.share-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
}
.share-title {
    font-weight: 700;
    margin-top: 2px;
    font-size: 15px;
}
.share-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.share-btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background .12s, border-color .12s, transform .08s;
}
.share-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.32);
}
.share-btn:active { transform: translateY(1px); }
.share-btn--primary {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--yellow);
}
.share-btn--primary:hover {
    background: var(--yellow-soft);
    border-color: var(--yellow-soft);
}
@media (max-width: 640px) {
    .share-strip-inner { flex-direction: column; align-items: flex-start; }
}


/* v78.66 — Package cards + contact-only card.
   Replaces the old per-line pricing table. Each .pkg sits in a 3-up grid
   on screen, single column on print/mobile. No prices anywhere — every
   package routes to a one-to-one conversation via reachus@adukoo.com. */
.package-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 14px 0 22px;
}
.pkg {
    background: var(--paper);
    border: 1px solid var(--border);
    border-top: 4px solid var(--yellow);
    border-radius: 12px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pkg-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.pkg-name {
    font-family: 'Poppins', Inter, sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: var(--navy);
    margin: 2px 0 4px;
    line-height: 1.2;
}
.pkg-desc {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}
.pkg-cta {
    margin-top: auto;
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
    background: rgba(250, 204, 21, 0.18);
    border-radius: 999px;
    padding: 6px 10px;
    align-self: flex-start;
}
@media (max-width: 720px) {
    .package-row { grid-template-columns: 1fr; }
}

.contact-card {
    margin-top: 18px;
    padding: 18px 20px;
    background: var(--navy);
    color: #fff;
    border-radius: 14px;
    text-align: left;
}
.contact-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
}
.contact-title {
    margin-top: 4px;
    font-family: 'Poppins', Inter, sans-serif;
    font-weight: 800;
    font-size: 17px;
    line-height: 1.35;
}
.contact-cta {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.4px;
}
.contact-cta:hover { background: var(--yellow-soft); }


/* v78.65 — Static-page back affordance. Shown only on screen; hidden in
   print so the downloaded PDF stays clean. */
.back-bar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    margin: 14px 0 0 14px;
    padding: 8px 14px 8px 12px;
    background: var(--navy);
    color: var(--yellow);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 18px rgba(10, 25, 47, 0.18);
}
.back-bar:hover { background: #08172b; }
@media print { .back-bar { display: none !important; } }


/* v78.64 — Single-catalog category sections + real-screenshot figures.
   Each `.cat-section` represents one of the 7 business categories.
   Visual identity matches the live adukoo.com pages: deep navy, yellow
   chip accents, the same "h2 with side ruled line" treatment. */

.h2-rule {
    font-family: 'Poppins', Inter, sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: var(--navy);
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--yellow);
    display: inline-block;
}
.h3-rule {
    font-family: 'Poppins', Inter, sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 22px 0 10px;
}

/* KPI strip used on the "Why Adukoo" page */
.kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 18px 0 22px;
}
.kpi {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-left: 4px solid var(--yellow);
    border-radius: 10px;
}
.kpi-n {
    font-family: 'Poppins', Inter, sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: var(--navy);
    line-height: 1;
}
.kpi-l {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--ink-soft);
    margin-top: 6px;
    font-weight: 700;
}

/* Per-category section */
.cat-section {
    background: var(--paper-card);
    position: relative;
}
.cat-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.cat-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.cat-title {
    font-family: 'Poppins', Inter, sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: var(--navy);
    margin: 4px 0 6px;
    line-height: 1.15;
}
.cat-tagline {
    color: var(--ink-soft);
    margin: 0;
    max-width: 560px;
}
.cat-badge {
    background: var(--navy);
    color: var(--yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
    align-self: flex-start;
}
.cat-img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    margin: 8px 0 18px;
    border: 1px solid var(--border);
}

/* Real screenshot figures */
.shot {
    margin: 16px 0 22px;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.shot img {
    display: block;
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.shot figcaption {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;
}
.shot-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--yellow);
    background: var(--navy);
    padding: 4px 8px;
    border-radius: 4px;
    align-self: flex-start;
}
.shot-caption {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
}

/* Pricing table on the last section */
.pricing {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin: 14px 0 22px;
}
.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    gap: 14px;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:nth-child(even) { background: var(--paper); }
.pricing-label {
    font-weight: 600;
    color: var(--navy);
}
.pricing-value {
    font-weight: 800;
    color: var(--ink);
    text-align: right;
    white-space: nowrap;
}

.note {
    margin-top: 18px;
    padding: 12px 14px;
    background: rgba(250, 204, 21, 0.12);
    border-left: 4px solid var(--yellow);
    border-radius: 8px;
    color: var(--navy);
    font-size: 13px;
}
.hl { color: var(--yellow); }

@media (max-width: 640px) {
    .kpi-row { grid-template-columns: repeat(2, 1fr); }
    .cat-head { flex-direction: column; }
}
