/* =========================================================================
   KINKO — visual skin (light + indigo)
   -------------------------------------------------------------------------
   Per-client design layer loaded AFTER the structural style.css. The skeleton
   ships with zero aesthetics; everything that gives Kinko its look — colour,
   typography, shadow, the pricing UI — lives here. Structural sizing/grids
   come from style.css; this file adds the visual tokens + skin.

   Vibe: clean modern SaaS. Near-white surfaces, indigo→violet accent, soft
   shadows, generous radius, crisp Inter/Plus Jakarta type. Light comparison
   table (Mobbin-style) with a dark high-contrast CTA band.
   ========================================================================= */

/* -------------------------------------------------------------------------
   0. Visual design tokens
   ---------------------------------------------------------------------- */
:root {
    /* Surfaces */
    --bg:           #FFFFFF;   /* page background */
    --bg-2:         #F8FAFC;   /* slate-50 band / muted sections (matches the logo backdrop) */
    --bg-3:         #EEF2F8;   /* deeper tint */
    --surface:      #FFFFFF;   /* cards / panels */
    --surface-2:    #FBFCFE;   /* subtle raised */
    --line:         #E2E8F0;   /* hairline borders (slate-200) */
    --line-2:       #CFD8E4;   /* stronger borders */

    /* Brand — pulled from the Kinko logo: blue + emerald on slate */
    --accent:       #2563EB;   /* blue — primary */
    --accent-2:     #60A5FA;   /* light blue — gradient partner (logo) */
    --accent-ink:   #FFFFFF;   /* text on the accent */
    --accent-weak:  rgba(37, 99, 235, .08);
    --accent-weak-2:rgba(37, 99, 235, .14);
    --accent-text:  #1D4ED8;   /* deep blue for accent text on light (logo blue) */
    --emerald:      #10B981;   /* emerald — secondary brand (logo "balance") */
    --emerald-deep: #047857;
    --ok:           #10B981;   /* included checks — brand emerald */
    --danger:       #E11D48;   /* sale / errors */

    /* Text */
    --text:         #3F4858;   /* body (slate) */
    --ink:          #0F172A;   /* headings (slate-900, logo ink) */
    --muted:        #64748B;   /* secondary / meta (slate-500) */

    /* Effects */
    --grad:         linear-gradient(135deg, #1D4ED8 0%, #60A5FA 100%);   /* logo blue gradient */
    --grad-emerald: linear-gradient(135deg, #047857 0%, #34D399 100%);   /* logo emerald gradient */
    --grad-soft:    linear-gradient(180deg, #F5F8FF 0%, #FFFFFF 60%);
    --radius:       14px;
    --radius-sm:    10px;
    --radius-lg:    22px;
    --pill:         999px;
    --shadow-sm:    0 1px 2px rgba(15, 23, 42, .06), 0 1px 1px rgba(15, 23, 42, .04);
    --shadow:       0 12px 32px -14px rgba(15, 23, 42, .22);
    --shadow-lg:    0 30px 70px -24px rgba(15, 23, 42, .30);
    --ring:         0 0 0 4px rgba(37, 99, 235, .16);
    --speed:        .18s;

    /* Dark band (CTA / hybrid accent) — slate-900 to match the logo ink */
    --dark:         #0F172A;
    --dark-2:       #1E293B;
    --dark-line:    rgba(255, 255, 255, .12);

    /* Typography */
    --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-head:    "Plus Jakarta Sans", "Inter", system-ui, sans-serif;

    /* Layout */
    --header-h:     68px;
}

/* -------------------------------------------------------------------------
   1. Base
   ---------------------------------------------------------------------- */
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--ink);
    line-height: 1.12;
    letter-spacing: -.02em;
    font-weight: 800;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

p { margin: 0 0 1rem; }

a { color: var(--accent-text); text-decoration: none; transition: color var(--speed) ease; }
a:hover { color: var(--accent); }

::selection { background: var(--accent-weak-2); color: var(--ink); }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: #CDD0DE; border-radius: var(--pill); border: 3px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: #B6BACB; }

/* Intro helpers ---------------------------------------------------------- */
.eyebrow {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent-text);
    background: var(--accent-weak);
    padding: .4em .85em;
    border-radius: var(--pill);
}
.section-title { color: var(--ink); }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.55; }

/* Alternating band backgrounds for vertical rhythm */
.kinko-features { background: var(--bg-2); }
.kinko-pricing--teaser { background: var(--bg); }

/* -------------------------------------------------------------------------
   2. Buttons (theme + WooCommerce share this look)
   ---------------------------------------------------------------------- */
.button,
.home-banner__btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.contact-col--form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .98rem;
    line-height: 1.1;
    letter-spacing: -.01em;
    padding: .8em 1.4em;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--accent-ink) !important;
    cursor: pointer;
    transition: transform var(--speed) ease, box-shadow var(--speed) ease, background var(--speed) ease, filter var(--speed) ease;
    box-shadow: var(--shadow-sm);
}
.button:hover,
.home-banner__btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.contact-col--form input[type="submit"]:hover {
    background: #4B49E6;
    color: var(--accent-ink) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}
.button:focus-visible { outline: none; box-shadow: var(--ring); }

/* Ghost / secondary */
.button--ghost,
.woocommerce a.added_to_cart,
.woocommerce a.button.wp-element-button.product_type_grouped {
    background: var(--surface);
    color: var(--ink) !important;
    border: 1px solid var(--line-2);
    box-shadow: var(--shadow-sm);
}
.button--ghost:hover,
.woocommerce a.added_to_cart:hover,
.woocommerce a.button.wp-element-button.product_type_grouped:hover {
    background: var(--surface);
    color: var(--accent-text) !important;
    border-color: var(--accent);
    box-shadow: var(--ring);
    transform: translateY(-1px);
}

/* Sizes */
.button--lg { padding: .95em 1.7em; font-size: 1.05rem; border-radius: 12px; }
.button--sm { padding: .55em 1em; font-size: .9rem; }

/* On the dark CTA band */
.button--on-dark { background: #fff; color: var(--ink) !important; }
.button--on-dark:hover { background: #fff; filter: brightness(.94); color: var(--ink) !important; }
.button--ghost-on-dark {
    background: transparent;
    color: #fff !important;
    border: 1px solid var(--dark-line);
    box-shadow: none;
}
.button--ghost-on-dark:hover { background: rgba(255, 255, 255, .08); color: #fff !important; border-color: rgba(255, 255, 255, .4); box-shadow: none; }

/* AJAX add-to-cart: hide the duplicate "Add to cart" once added */
.woocommerce ul.products li.product a.add_to_cart_button.added { display: none !important; }

/* -------------------------------------------------------------------------
   3. Header
   ---------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}

/* Promo strip — indigo gradient bar announcing the annual discount */
.site-header-promo {
    background: var(--grad);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: .01em;
    font-size: .85rem;
}
.site-header-promo a { color: #fff; text-decoration: underline; }
/* header.php emits a duplicate promo set for an optional marquee; we show a
   simple centred bar, so the clones stay hidden on every screen size. */
.promo-item--clone { display: none; }

.site-header-main .wrap { padding-block: 14px; min-height: var(--header-h); }

/* Logo wordmark fallback (if text logo) */
.site-branding .site-title,
.site-branding a.site-logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -.02em;
    color: var(--ink);
}

/* Primary nav */
.main-navigation .menu a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .98rem;
    color: var(--text);
    padding: .4em 0;
    position: relative;
}
.main-navigation .menu a:hover,
.main-navigation .current-menu-item > a { color: var(--ink); }
.main-navigation .menu a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    border-radius: 2px;
    background: var(--accent);
    transition: width var(--speed) ease;
}
.main-navigation .menu a:hover::after,
.main-navigation .current-menu-item > a::after { width: 100%; }

/* Header tools: CTA button + cart */
.header-tools { gap: 14px; }
.header-cart-link {
    display: inline-flex;
    align-items: center;
    gap: .4em;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .95rem;
    color: var(--text);
    padding: .5em .4em;
}
.header-cart-link:hover { color: var(--accent-text); }
.header-cta { white-space: nowrap; }

/* Menu items styled as a CTA button (when a menu item has class .menu-cta) */
.main-navigation .menu .menu-cta a {
    color: var(--accent-ink);
    background: var(--accent);
    padding: .55em 1.1em;
    border-radius: var(--radius-sm);
}
.main-navigation .menu .menu-cta a::after { display: none; }
.main-navigation .menu .menu-cta a:hover { background: #4B49E6; color: #fff; }

/* -------------------------------------------------------------------------
   4. Hero — expressive, layered (Ditto-style)
   ---------------------------------------------------------------------- */
.kinko-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(42% 55% at 2% 100%, rgba(16, 185, 129, .10), transparent 60%),
        radial-gradient(48% 60% at 100% 0%, rgba(37, 99, 235, .12), transparent 60%),
        linear-gradient(180deg, #F5F8FF 0%, #FFFFFF 72%);
}
/* soft dot grid, faded toward the edges */
.kinko-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(rgba(37, 99, 235, .12) 1.4px, transparent 1.6px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(120% 95% at 62% 0%, #000 28%, transparent 72%);
    mask-image: radial-gradient(120% 95% at 62% 0%, #000 28%, transparent 72%);
    opacity: .6;
    pointer-events: none;
}
/* blurred colour blob top-right */
.kinko-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -6%;
    top: -16%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 30%, rgba(37, 99, 235, .34), transparent 60%),
        radial-gradient(circle at 70% 72%, rgba(16, 185, 129, .24), transparent 60%);
    filter: blur(26px);
    pointer-events: none;
}
.kinko-hero__inner { position: relative; z-index: 1; }
.kinko-hero__title { color: var(--ink); }
.kinko-hero__text { color: var(--muted); }
.kinko-hero__note { color: var(--muted); font-size: .88rem; }
.eyebrow + .kinko-hero__title { margin-top: 16px; }

/* Highlighted word in the headline (marker swipe) */
.kinko-mark {
    background: linear-gradient(120deg, rgba(37, 99, 235, .24) 0%, rgba(16, 185, 129, .22) 100%);
    border-radius: .3em;
    padding: 0 .12em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* Inline social proof (avatars + rating) */
.kinko-avatars { display: inline-flex; }
.kinko-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .68rem;
    color: #fff;
    margin-left: -10px;
    box-shadow: var(--shadow-sm);
}
.kinko-avatar:first-child { margin-left: 0; }
.kinko-avatar--1 { background: #2563EB; }
.kinko-avatar--2 { background: #10B981; }
.kinko-avatar--3 { background: #0EA5E9; }
.kinko-avatar--4 { background: #0891B2; }
.kinko-avatar--more { background: var(--ink); font-size: .62rem; }
.kinko-avatars--sm .kinko-avatar { width: 26px; height: 26px; font-size: .56rem; border-width: 2px; }
.kinko-stars { color: #F5A623; letter-spacing: 1px; }
.kinko-hero__proof-text { margin: 0; color: var(--muted); font-size: .9rem; }
.kinko-hero__proof-text strong { color: var(--ink); }

/* --- Hero collage: board card + floating accent cards --- */
.kinko-stage { padding: 26px 22px 34px; }

.kinko-board {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: rotate(-1deg);
}
.kinko-board__head { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.kinko-board__dots { display: inline-flex; gap: 6px; }
.kinko-board__dots span { width: 9px; height: 9px; border-radius: 50%; background: #D7DAE6; }
.kinko-board__dots span:nth-child(1) { background: #FF6058; }
.kinko-board__dots span:nth-child(2) { background: #FFBD2E; }
.kinko-board__dots span:nth-child(3) { background: #28C840; }
.kinko-board__title { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--ink); }
.kinko-board__sprint { margin-left: auto; font-size: .68rem; font-weight: 700; color: var(--accent-text); background: var(--accent-weak); padding: .25em .65em; border-radius: var(--pill); }
.kinko-board__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; padding: 15px; background: var(--bg-2); }
.kinko-bcol__title { margin: 0 0 10px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.kinko-bcol__title span { background: #E4E5EF; color: var(--muted); border-radius: var(--pill); padding: .05em .5em; font-size: .62rem; }
.kinko-tcard { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px; margin-bottom: 10px; box-shadow: var(--shadow-sm); }
.kinko-tcard--active { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-weak); }
.kinko-tcard--done { opacity: .68; }
.kinko-chip { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .6rem; letter-spacing: .01em; padding: .25em .6em; border-radius: var(--pill); margin-bottom: 8px; }
.kinko-chip--violet { background: #EDE9FE; color: #6D28D9; }
.kinko-chip--amber  { background: #FEF3C7; color: #B45309; }
.kinko-chip--blue   { background: #DBEAFE; color: #1D4ED8; }
.kinko-chip--pink   { background: #FCE7F3; color: #BE185D; }
.kinko-l { display: block; height: 7px; border-radius: var(--pill); background: #E7E8F0; margin-bottom: 7px; }
.kinko-l--s { width: 62%; }
.kinko-prog { display: block; height: 6px; border-radius: var(--pill); background: #E7E8F0; overflow: hidden; margin-top: 9px; }
.kinko-prog i { display: block; height: 100%; width: 64%; border-radius: var(--pill); background: var(--grad); }
.kinko-tcard__check { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: var(--ok); color: #fff; font-size: .62rem; margin-bottom: 8px; }

.kinko-float {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .8rem;
    color: var(--ink);
    white-space: nowrap;
}
.kinko-float--team   { left: 0; bottom: 4px; animation: kinko-bob 5.5s ease-in-out infinite; }
.kinko-float--status { top: 8px; right: 0; color: var(--ok); animation: kinko-bob 4.6s ease-in-out infinite .3s; }
.kinko-float--stat   { right: 2px; bottom: 86px; flex-direction: column; align-items: flex-start; gap: 0; animation: kinko-bob 6.2s ease-in-out infinite .6s; }
.kinko-float--stat strong { font-size: 1.3rem; font-weight: 800; color: var(--accent-text); line-height: 1.05; }
.kinko-float--stat span { font-size: .68rem; color: var(--muted); font-weight: 600; }
.kinko-dot-ok { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(22, 163, 74, .15); }
@keyframes kinko-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* -------------------------------------------------------------------------
   5. Feature bento
   ---------------------------------------------------------------------- */
.kinko-feat {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--speed) ease, box-shadow var(--speed) ease, border-color var(--speed) ease;
}
.kinko-feat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: color-mix(in srgb, var(--feat, var(--accent)) 32%, var(--line));
}
/* per-card accent colour */
.kinko-feat--boards   { --feat: #2563EB; }
.kinko-feat--collab   { --feat: #10B981; }
.kinko-feat--timeline { --feat: #0EA5E9; }
.kinko-feat--dash     { --feat: #0891B2; }
.kinko-feat--integ    { --feat: #3B82F6; }
.kinko-feat--autom    { --feat: #059669; }

.kinko-feat__icon {
    color: var(--feat, var(--accent));
    background: var(--accent-weak);                                   /* fallback */
    background: color-mix(in srgb, var(--feat, var(--accent)) 13%, #fff);
    border-radius: 13px;
}
.kinko-feat__icon svg { width: 24px; height: 24px; }
.kinko-feat__title { color: var(--ink); }
.kinko-feat__text { color: var(--muted); }
/* compact cards: push the mini-visual to the bottom of the card */
.kinko-feat:not(.kinko-feat--wide) .kinko-feat__visual { margin-top: auto; padding-top: 6px; }

/* --- Feature mini-visuals --- */
.kinko-chip--green { background: #DCFCE7; color: #15803D; }

/* board */
.kinko-mini--board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.kinko-mini__col { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 8px; box-shadow: var(--shadow-sm); }
.kinko-mini__col .kinko-chip { font-size: .55rem; padding: .2em .5em; }
.kinko-mini__check { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; background: var(--ok); color: #fff; font-size: .58rem; }

/* chart */
.kinko-mini--chart { display: flex; align-items: flex-end; gap: 8px; height: 122px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.kinko-mini--chart span {
    flex: 1;
    min-height: 8px;
    border-radius: 6px 6px 3px 3px;
    background: var(--feat);                                          /* fallback */
    background: linear-gradient(180deg, color-mix(in srgb, var(--feat) 45%, #fff), var(--feat));
}

/* integrations */
.kinko-mini--integ { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.kinko-ilogo { width: 42px; height: 42px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: .9rem; color: #fff; box-shadow: var(--shadow-sm); }
.kinko-ilogo--1 { background: #4A154B; }
.kinko-ilogo--2 { background: #24292F; }
.kinko-ilogo--3 { background: #1FA463; }
.kinko-ilogo--4 { background: #2563EB; }
.kinko-ilogo--more { background: var(--bg-3); color: var(--muted); font-size: .76rem; }

/* collaboration */
.kinko-mini--collab { display: flex; align-items: center; gap: 12px; }
.kinko-bubble { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 14px 14px 14px 4px; background: color-mix(in srgb, var(--feat) 14%, #fff); font-size: 1.05rem; }

/* timeline / gantt */
.kinko-mini--gantt { display: flex; flex-direction: column; gap: 9px; }
.kinko-gbar {
    height: 13px;
    border-radius: var(--pill);
    background: var(--feat);                                          /* fallback */
    background: linear-gradient(90deg, var(--feat), color-mix(in srgb, var(--feat) 35%, #fff));
}
.kinko-gbar--1 { width: 72%; }
.kinko-gbar--2 { width: 54%; margin-left: 16%; opacity: .85; }
.kinko-gbar--3 { width: 40%; margin-left: 34%; opacity: .7; }

/* automations */
.kinko-mini--auto { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.kinko-rule { font-family: var(--font-head); font-weight: 700; font-size: .72rem; padding: .4em .7em; border-radius: 10px; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink); }
.kinko-rule--accent { color: var(--feat); background: color-mix(in srgb, var(--feat) 12%, #fff); border-color: color-mix(in srgb, var(--feat) 28%, #fff); }
.kinko-arrow { color: var(--muted); font-weight: 700; }

/* -------------------------------------------------------------------------
   7. Pricing — billing toggle + tier cards
   ---------------------------------------------------------------------- */
.kinko-toggle {
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: var(--pill);
}
.kinko-toggle__btn {
    border-radius: var(--pill);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .92rem;
    color: var(--muted);
    transition: color var(--speed) ease, background var(--speed) ease, box-shadow var(--speed) ease;
}
.kinko-toggle__btn.is-active {
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.kinko-billing__save {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .85rem;
    color: var(--accent-text);
    background: var(--accent-weak);
    padding: .35em .8em;
    border-radius: var(--pill);
}
.kinko-billing__save::before { content: "🎉"; font-size: .9em; }

/* Tier cards */
.kinko-tier {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--speed) ease, box-shadow var(--speed) ease, border-color var(--speed) ease;
}
.kinko-tier:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.kinko-tier.is-featured {
    border-color: var(--accent);
    box-shadow: var(--ring), var(--shadow);
}
.kinko-tier__badge {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--accent-ink);
    background: var(--grad);
    padding: .4em .9em;
    border-radius: var(--pill);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}
.kinko-tier__name { color: var(--ink); font-size: 1.25rem; }
.kinko-tier__who { color: var(--muted); font-size: .92rem; }

.kinko-price { display: inline-flex; align-items: baseline; color: var(--ink); font-family: var(--font-head); }
.kinko-price--lg { font-size: 1rem; }
.kinko-price--lg .kinko-price__cur { font-size: 1.5rem; font-weight: 700; align-self: flex-start; margin-top: .15em; }
.kinko-price--lg .kinko-price__amount { font-size: 3rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.kinko-price__per { color: var(--muted); font-weight: 600; font-size: 1rem; margin-left: 4px; }
/* Quote-based tier: "Get quotes" shown in place of a numeric price. */
.kinko-price--quote { font-weight: 800; letter-spacing: -.02em; line-height: 1.05; }
.kinko-price--lg.kinko-price--quote { font-size: 1.9rem; }
.kinko-compare .kinko-price--sm.kinko-price--quote { font-size: 1.05rem; }
.kinko-tier__billed { color: var(--muted); font-size: .85rem; }

.kinko-tier__features { border-top: 1px solid var(--line); }
.kinko-tier__features li { color: var(--text); font-size: .94rem; }
.kinko-tier__features .kinko-val { margin-top: 1px; }

/* The yes/dash/value tokens (cards + table) */
.kinko-val { line-height: 1; }
.kinko-yes { color: var(--ok); }
.kinko-yes svg { display: block; }
.kinko-no { color: #C2C5D2; font-size: 1.1rem; }
.kinko-text { color: var(--ink); font-weight: 600; font-size: .92rem; }

.kinko-pricing__compare-link { text-align: center; margin-top: 28px; }
.kinko-pricing__compare-link a { font-family: var(--font-head); font-weight: 600; }

/* -------------------------------------------------------------------------
   8. Pricing — comparison table (Mobbin-style)
   ---------------------------------------------------------------------- */
.kinko-pricing__compare { margin-top: clamp(40px, 6vw, 80px); }
.kinko-pricing__compare-title { text-align: center; margin-bottom: 28px; }

.kinko-compare-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}
.kinko-compare { font-size: .94rem; }
.kinko-compare thead th {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}
.kinko-compare__plan-name {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 4px;
}
.kinko-compare .kinko-price--sm { font-size: .8rem; }
.kinko-compare .kinko-price--sm .kinko-price__cur { font-weight: 700; }
.kinko-compare .kinko-price--sm .kinko-price__amount { font-size: 1.3rem; font-weight: 800; }
.kinko-compare .kinko-price--sm .kinko-price__per { font-size: .8rem; }
.kinko-compare__cta { margin-top: 10px; }

/* feature-name column */
.kinko-compare th[scope="row"] {
    background: var(--surface);
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--line);
}
.kinko-compare tbody td { border-bottom: 1px solid var(--line); color: var(--text); }

/* group header rows */
.kinko-compare__group th {
    background: var(--bg-2);
    color: var(--ink);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
    padding-top: 18px !important;
    padding-bottom: 10px !important;
}

/* highlighted recommended column */
.kinko-compare thead th.is-featured,
.kinko-compare tbody td.is-featured {
    background: var(--accent-weak);
}
.kinko-compare thead th.is-featured .kinko-compare__plan-name { color: var(--accent-text); }

.kinko-compare tbody tr:last-child td,
.kinko-compare tbody tr:last-child th { border-bottom: 0; }

/* -------------------------------------------------------------------------
   9. FAQ accordion (light)
   ---------------------------------------------------------------------- */
.kinko-faq-section, .kinko-pricing__faq { }
.faq__title { text-align: center; }
.faq__list { max-width: 820px; }
.faq__item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    margin-bottom: 12px;
    padding-inline: 22px;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--speed) ease, box-shadow var(--speed) ease;
}
.faq__item[open] { border-color: var(--accent); box-shadow: var(--ring); }
.faq__question { font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.faq__question::after { color: var(--accent); font-size: 1.4em; }
.faq__answer { color: var(--muted); }

/* -------------------------------------------------------------------------
   10. CTA band (dark)
   ---------------------------------------------------------------------- */
.kinko-cta {
    background:
        radial-gradient(60% 120% at 50% 0%, rgba(37, 99, 235, .42), transparent 60%),
        var(--dark);
    color: #fff;
}
.kinko-cta__title { color: #fff; }
.kinko-cta__text { color: rgba(255, 255, 255, .72); font-size: 1.1rem; }

/* -------------------------------------------------------------------------
   11. Footer (light)
   ---------------------------------------------------------------------- */
.site-footer {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    margin-top: 0;
}
.footer-col__title {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--ink);
    font-size: 1rem;
}
.footer-menu a, .footer-contact a, .footer-contact li { color: var(--muted); }
.footer-menu a:hover, .footer-contact a:hover { color: var(--accent-text); }
.footer-social a { color: var(--muted); transition: color var(--speed), transform var(--speed); }
.footer-social a:hover { color: var(--accent-text); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .site-info { color: var(--muted); font-size: .9rem; }

/* Payment logos: light chips so brand marks lift off the footer */
.footer-payments__row .payment-icon {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 6px 8px;
    height: 40px;
    box-shadow: var(--shadow-sm);
}
.footer-payments__primary { background: transparent; border: 0; padding: 0; }

/* -------------------------------------------------------------------------
   12. WooCommerce — light recolour
   ---------------------------------------------------------------------- */
/* Product cards */
.woocommerce ul.products li.product {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px !important;
    box-shadow: var(--shadow-sm);
    transition: transform var(--speed) ease, box-shadow var(--speed) ease, border-color var(--speed) ease;
}
.woocommerce ul.products li.product:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.woocommerce ul.products li.product a img { border-radius: var(--radius-sm); background: var(--bg-2); margin-bottom: 12px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--ink); padding: .25em 0 .4em;
}
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--ink); font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; }
.woocommerce .price del { color: var(--muted); font-weight: 400; opacity: .7; margin-right: .4em; }
.woocommerce .price ins { text-decoration: none; }

/* Sale badge */
.woocommerce span.onsale {
    background: var(--accent);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    border-radius: var(--pill);
    padding: .35em .8em;
    min-height: 0; min-width: 0; line-height: 1;
    box-shadow: var(--shadow-sm);
}
.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale { position: absolute; top: 16px; left: 16px; right: auto; margin: 0; z-index: 2; }
.woocommerce .star-rating span { color: #F5A623; }

/* Single product tabs */
.woocommerce div.product .product_title { color: var(--ink); }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: var(--bg-2); border-color: var(--line); border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--surface); border-bottom-color: var(--accent); }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: var(--text); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--accent-text); }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-color: var(--line); }

.woocommerce table.shop_attributes, .woocommerce-product-attributes { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.woocommerce table.shop_attributes th { background: var(--bg-2); color: var(--muted); font-family: var(--font-head); }
.woocommerce table.shop_attributes td { background: var(--surface); }
.woocommerce table.shop_attributes th, .woocommerce table.shop_attributes td { border-color: var(--line); padding: .7em 1em; }

.woocommerce .quantity .qty {
    background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-sm); color: var(--ink); padding: .6em;
}

/* Notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
    background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--accent); color: var(--text); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
}
.woocommerce-error { border-top-color: var(--danger); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--accent); }

/* Cart / checkout panels */
.woocommerce table.cart,
.woocommerce #content table.cart,
.woocommerce-checkout #payment,
.woocommerce .cart-collaterals .cart_totals {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.woocommerce table.shop_table th { color: var(--muted); font-family: var(--font-head); }
.woocommerce table.shop_table td { border-color: var(--line); }
.woocommerce-checkout #payment { overflow: hidden; }

/* Variation picker */
.woocommerce div.product form.cart table.variations th.label { font-family: var(--font-head); font-weight: 600; color: var(--muted); }

/* Fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"] {
    background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-sm); color: var(--ink); padding: .7em .8em;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { border-color: var(--accent); box-shadow: var(--ring); outline: none; }

/* Ordering select (shop) */
.woocommerce-ordering select.orderby,
.woocommerce div.product table.variations select {
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    background-color: var(--surface); color: var(--ink); border: 1px solid var(--line-2); border-radius: var(--radius-sm);
    font: inherit; font-family: var(--font-head); padding: .6em 2.4em .6em .9em; cursor: pointer; line-height: 1.2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .85em center; background-size: 14px 14px;
}
.woocommerce-ordering select.orderby:focus,
.woocommerce div.product table.variations select:focus { border-color: var(--accent); box-shadow: var(--ring); outline: none; }

/* My Account nav → light buttons */
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.woocommerce-MyAccount-navigation li a {
    display: flex; align-items: center; padding: .85em 1.1em; font-family: var(--font-head); font-weight: 600;
    color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
    transition: border-color var(--speed) ease, color var(--speed) ease, box-shadow var(--speed) ease;
}
.woocommerce-MyAccount-navigation li a:hover,
.woocommerce-MyAccount-navigation li.is-active a { border-color: var(--accent); color: var(--accent-text); box-shadow: var(--shadow-sm); }

/* Block cart / checkout (wc-block-components) — colours only */
.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-combobox input,
.wc-block-components-select .wc-block-components-select__select,
.wc-block-components-address-form input,
.wc-block-components-address-form select,
.wc-block-components-quantity-selector__input {
    background-color: var(--surface) !important; color: var(--ink) !important; border-color: var(--line-2) !important;
}
.wc-block-components-text-input.is-active input,
.wc-block-components-text-input input:focus,
.wc-block-components-combobox input:focus,
.wc-block-components-select__select:focus { border-color: var(--accent) !important; box-shadow: var(--ring) !important; }
.wc-block-components-checkout-place-order-button,
.wp-block-woocommerce-checkout .wc-block-components-button.contained,
.wp-block-woocommerce-cart .wc-block-components-button.contained {
    background: var(--accent) !important; color: var(--accent-ink) !important; border: 0 !important;
}
.wc-block-components-checkbox__input { accent-color: var(--accent) !important; }

/* -------------------------------------------------------------------------
   13. Global form controls (light)
   ---------------------------------------------------------------------- */
:where(
    input[type="text"], input[type="email"], input[type="search"],
    input[type="tel"], input[type="url"], input[type="password"],
    input[type="number"], input[type="date"], input[type="datetime-local"],
    input[type="month"], input[type="week"], input[type="time"], textarea
) {
    background: var(--surface); color: var(--ink); border: 1px solid var(--line-2);
    border-radius: var(--radius-sm); padding: .65em .85em; font: inherit;
    transition: border-color var(--speed) ease, box-shadow var(--speed) ease;
}
:where(input:focus, textarea:focus) { border-color: var(--accent); box-shadow: var(--ring); outline: none; }
:where(input, textarea)::placeholder { color: var(--muted); opacity: 1; }
:where(input[type="checkbox"], input[type="radio"]) { accent-color: var(--accent); width: 1.05em; height: 1.05em; vertical-align: text-bottom; cursor: pointer; }

/* Contact / about (carried over from skeleton) */
.contact-col--form input[type="text"],
.contact-col--form input[type="email"],
.contact-col--form textarea { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-sm); color: var(--ink); }
.contact-col--form input:focus, .contact-col--form textarea:focus { border-color: var(--accent); box-shadow: var(--ring); outline: none; }
.contact-info__label { color: var(--accent-text); }
.about-intro__media img, .about-team__media img { border-radius: var(--radius); border: 1px solid var(--line); }
.page-title { color: var(--ink); }

/* -------------------------------------------------------------------------
   14. Third-party plugins — light retheme
   ---------------------------------------------------------------------- */
/* Complianz cookie banner */
#cmplz-cookiebanner-container .cmplz-cookiebanner {
    background: var(--surface) !important; border: 1px solid var(--line) !important; border-radius: var(--radius) !important;
    box-shadow: var(--shadow-lg) !important; color: var(--text) !important; font-family: var(--font-body) !important;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-title,
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-category-title { color: var(--ink) !important; font-family: var(--font-head) !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-body,
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-message { color: var(--text) !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-link,
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-documents a { color: var(--accent-text) !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-category { background: var(--bg-2) !important; border: 1px solid var(--line) !important; border-radius: var(--radius-sm) !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-btn { font-family: var(--font-head) !important; font-weight: 700 !important; border-radius: var(--radius-sm) !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-btn.cmplz-accept { background: var(--accent) !important; color: #fff !important; border: 0 !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-btn.cmplz-deny,
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-btn.cmplz-save-preferences,
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-btn.cmplz-view-preferences {
    background: var(--surface) !important; color: var(--accent-text) !important; border: 1px solid var(--line-2) !important;
}

/* Footer "Cookie Settings" button → footer link look */
.footer-menu .footer-cookie-settings {
    appearance: none; -webkit-appearance: none; background: none; border: 0; padding: 0; margin: 0;
    font: inherit; line-height: inherit; color: var(--muted); cursor: pointer; text-align: left; transition: color var(--speed) ease;
}
.footer-menu .footer-cookie-settings:hover { color: var(--accent-text); }

/* Tidio launcher: soft shadow only (iframe is cross-origin) */
#tidio-chat-iframe { filter: drop-shadow(0 10px 24px rgba(15, 23, 42, .18)) !important; }

/* De-collide floating widgets */
#cmplz-manage-consent { display: none !important; }
.grecaptcha-badge { bottom: 214px !important; }

/* Woo Lucky Wheel: keep dark popup chrome readable on light theme */
.wlwl-overlay { background: rgba(15, 23, 42, .55) !important; }
.wlwl_lucky_wheel_content .wlwl_field_input {
    background: var(--surface) !important; border: 1px solid var(--line-2) !important; color: var(--ink) !important; border-radius: var(--radius-sm) !important;
}
.wlwl_lucky_wheel_content .wlwl_spin_button {
    background: var(--accent) !important; color: #fff !important; font-family: var(--font-head); font-weight: 700 !important; border: 0 !important; border-radius: var(--radius-sm) !important;
}

/* -------------------------------------------------------------------------
   15. Mobile / tablet
   ---------------------------------------------------------------------- */
.menu-toggle {
    display: none; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0;
    background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-sm); cursor: pointer;
    transition: border-color var(--speed) ease, box-shadow var(--speed) ease;
}
.menu-toggle:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.menu-toggle__bars, .menu-toggle__bars::before, .menu-toggle__bars::after {
    content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--speed) ease, background var(--speed) ease;
}
.menu-toggle__bars { position: relative; }
.menu-toggle__bars::before { position: absolute; left: 0; top: -6px; }
.menu-toggle__bars::after { position: absolute; left: 0; top: 6px; }
.main-navigation.is-open .menu-toggle__bars { background: transparent; }
.main-navigation.is-open .menu-toggle__bars::before { transform: translateY(6px) rotate(45deg); background: var(--accent); }
.main-navigation.is-open .menu-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); background: var(--accent); }

@media (max-width: 900px) {
    .site-header-main .wrap { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 12px; }
    .site-header-main { position: relative; }
    .site-branding { margin-right: auto; }
    .site-header .ss-logo-img { width: 140px !important; height: auto !important; }
    .menu-toggle { display: inline-flex; order: 3; }
    .header-tools { order: 2; }
    .header-cta { display: none; }   /* CTA repeats inside the open menu / hero */

    .main-navigation { order: 4; width: 100%; }
    .main-navigation .primary-menu {
        display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 90;
        flex-direction: column; gap: 0; margin: 0; background: var(--surface);
        border-top: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: 6px var(--gutter) 12px;
    }
    .main-navigation.is-open .primary-menu { display: flex; }
    .main-navigation .primary-menu li { width: 100%; }
    .main-navigation .primary-menu a { display: block; padding: .95em 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
    .main-navigation .primary-menu a::after { display: none; }
    .main-navigation .primary-menu li:last-child a { border-bottom: 0; }
    .main-navigation .menu .menu-cta a { display: inline-block; margin-top: 8px; }

    /* Hero board: flatten the slight tilt on small screens */
    .kinko-board { transform: none; }
}

@media (max-width: 720px) {
    .kinko-stage { padding: 16px 4px 24px; }
    .kinko-float--stat { display: none; }   /* avoid crowding the board on narrow screens */
    .kinko-tier.is-featured { box-shadow: var(--shadow); }   /* lighter ring on mobile */
    /* Promo bar: keep it readable, allow wrap */
    .site-header-promo { font-size: .8rem; }
}

@media (max-width: 480px) {
    .kinko-billing { align-items: stretch; }
    .kinko-toggle { justify-content: center; }
    .kinko-price--lg .kinko-price__amount { font-size: 2.6rem; }
    .kinko-hero__proof { gap: 10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
    .kinko-feat:hover, .kinko-tier:hover, .button:hover, .woocommerce ul.products li.product:hover { transform: none; }
    .kinko-board { transform: none; }
    .kinko-float { animation: none !important; }
}
