/* ==========================================================================
   sub.css — the vertical subdomains (insurance., finance.)

   ONE stylesheet, TWO skins. Everything that differs between insurance and
   finance is the three --accent* custom properties, which layouts/base.blade.php
   writes inline from config/verticals.php. Adding a third vertical needs a
   config entry and no CSS at all.

   Self-contained on purpose: no Bootstrap, no icon font, no jQuery. These are
   landing pages judged on how fast the first screenful paints.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------
   Deliberately the SAME values the main site uses (tk.css / site.css), so the
   three hostnames read as one brand: identical ink and body colours, identical
   line and surface greys, 14px/10px radii, the same soft green shadow, a
   1200px container and pill buttons.

   --accent* are the ONLY per-vertical values; base.blade.php injects them from
   config/verticals.php. --brand is Tractor Kharido's green, kept alongside the
   accent so shared chrome (links in the footer, the trust strip) stays on the
   parent brand rather than drifting blue or teal.
   ------------------------------------------------------------------------ */
:root{
    /* Parent brand — matches site.css. */
    --brand:#0a7d3f;
    --brand-d:#0a6d39;
    --brand-l:#e9f7ee;
    --amber:#f4b400;

    /* Text and surfaces — matches site.css / tk.css. */
    --ink:#1f2a44;          /* headings                      */
    --ink-2:#516079;        /* body copy                     */
    --ink-3:#8a94a6;        /* muted / captions              */
    --line:#e7eaef;         /* borders                       */
    --bg:#ffffff;
    --bg-alt:#f5f6f8;       /* alternating section + footer  */
    --danger:#c02626;

    /* Radii and shadows — matches tk.css. */
    --r-sm:10px;
    --r:14px;
    --r-lg:14px;
    --shadow:0 2px 10px rgba(20,40,25,.06);
    --shadow-lg:0 6px 24px rgba(20,40,25,.08);

    --wrap:1200px;
    --gut:16px;
}

*,*::before,*::after{box-sizing:border-box}

body.tk-sub{
    margin:0;
    font-family:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
    color:var(--ink-2);
    background:var(--bg);
    font-size:16px;
    line-height:1.65;
    -webkit-font-smoothing:antialiased;
    /* Room for the sticky mobile action bar so it never covers the footer. */
    padding-bottom:0;
}
.tk-sub h1,.tk-sub h2,.tk-sub h3,.tk-sub h4{color:var(--ink);font-weight:700;line-height:1.25;margin:0 0 .6rem}
.tk-sub h1{font-size:clamp(1.8rem,4vw,2.7rem);letter-spacing:-.02em}
.tk-sub h2{font-size:clamp(1.4rem,2.6vw,2rem);letter-spacing:-.01em}
.tk-sub h3{font-size:1.08rem}
.tk-sub p{margin:0 0 1rem}
.tk-sub a{color:var(--brand-d);text-decoration:none;transition:.15s}
.tk-sub a:hover{color:var(--brand)}
.tk-sub img{max-width:100%;height:auto}
.tk-sub ul,.tk-sub ol{margin:0;padding:0;list-style:none}

.tk-sub :focus-visible{outline:3px solid var(--accent);outline-offset:2px;border-radius:4px}

.tk-skip{position:absolute;left:-9999px;top:0;background:var(--accent);color:#fff;padding:.7rem 1.1rem;z-index:999}
.tk-skip:focus{left:0}

.tk-wrap{max-width:var(--wrap);margin:0 auto;padding:0 var(--gut);width:100%}
.tk-wrap--narrow{max-width:820px}

.tk-i{width:1em;height:1em;flex:none;vertical-align:-.125em}

/* ---- Buttons ----------------------------------------------------------- */
.tk-btn{
    display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
    padding:.68rem 1.25rem;border:1px solid transparent;border-radius:999px;
    font-size:.94rem;font-weight:600;line-height:1.2;cursor:pointer;
    text-decoration:none;transition:transform .12s ease,box-shadow .12s ease,background .12s ease;
    white-space:nowrap;
}
.tk-btn:hover{text-decoration:none;transform:translateY(-1px)}
.tk-btn:active{transform:translateY(0)}
.tk-btn--accent{background:var(--accent);color:#fff;box-shadow:0 6px 16px color-mix(in srgb,var(--accent) 32%,transparent)}
.tk-btn--accent:hover{background:var(--accent-dark);color:#fff}
.tk-btn--ghost{background:transparent;color:var(--accent);border-color:currentColor}
.tk-btn--light{background:#fff;color:var(--accent-dark)}
.tk-btn--light:hover{background:#fff;color:var(--accent-dark)}
.tk-btn--lg{padding:.9rem 1.7rem;font-size:1rem}
.tk-btn--block{width:100%}

/* ---- Top bar ----------------------------------------------------------- */
.tk-topbar{background:var(--ink);color:#c8d3de;font-size:.8rem}
.tk-topbar__in{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:38px}
.tk-topbar__right{display:flex;align-items:center;gap:1.2rem}
.tk-topbar__link{display:inline-flex;align-items:center;gap:.4rem;color:#c8d3de}
.tk-topbar__link:hover{color:#fff;text-decoration:none}
.tk-topbar__tel{font-weight:600;color:#fff}

/* ---- Header ------------------------------------------------------------ */
.tk-head{
    position:sticky;top:0;z-index:60;background:rgba(255,255,255,.92);
    backdrop-filter:saturate(180%) blur(12px);
    border-bottom:1px solid var(--line);
}
.tk-head.is-stuck{box-shadow:0 4px 20px rgba(16,32,48,.08)}
.tk-head__in{display:flex;align-items:center;gap:1.4rem;min-height:68px}

.tk-brand{display:flex;align-items:center;gap:.6rem;flex:none}
.tk-brand:hover{text-decoration:none}
.tk-brand img{height:38px;width:auto;display:block}
/* The sub-brand label — the only thing separating this header from the main
   site's. Same logo, different word, so the visitor knows which desk they
   are at without feeling they have left the brand. */
.tk-brand__sub{
    font-size:.78rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
    color:var(--accent);border-left:2px solid var(--line);padding-left:.6rem;
}

.tk-nav{margin-left:auto}
.tk-nav ul{display:flex;align-items:center;gap:.3rem}
.tk-nav a{
    display:block;padding:.5rem .75rem;border-radius:var(--r-sm);
    font-size:.9rem;font-weight:500;color:var(--ink-2);
}
.tk-nav a:hover{background:var(--bg-alt);color:var(--ink);text-decoration:none}
.tk-nav a.is-active{color:var(--accent);background:var(--accent-soft)}

.tk-head__cta{flex:none}

.tk-burger{display:none;flex-direction:column;gap:5px;background:none;border:0;padding:10px;cursor:pointer}
.tk-burger span{display:block;width:22px;height:2px;background:var(--ink);border-radius:2px;transition:.2s}
.tk-burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.tk-burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.tk-burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---- Hero -------------------------------------------------------------- */
.tk-hero{
    background:
        radial-gradient(1000px 420px at 82% -8%, color-mix(in srgb,var(--accent) 42%,transparent), transparent 62%),
        linear-gradient(160deg, var(--ink) 0%, #0a1119 100%);
    color:#d6e0ea;padding:clamp(2.4rem,6vw,4.4rem) 0;
}
.tk-hero__in{display:grid;grid-template-columns:1fr 440px;gap:clamp(1.6rem,4vw,3.2rem);align-items:start}
.tk-hero h1{color:#fff}
.tk-hero__sub{font-size:1.06rem;color:#9fb0c1;max-width:44ch;margin-bottom:1.5rem}
.tk-hero__points{display:grid;gap:.65rem}
.tk-hero__points li{display:flex;align-items:flex-start;gap:.6rem;font-size:.95rem;color:#cfdae5}
.tk-hero__points .tk-i{color:var(--accent);margin-top:.32em;font-size:1.05rem}

/* ---- Form -------------------------------------------------------------- */
.tk-form{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.5rem;box-shadow:var(--shadow-lg);color:var(--ink-2)}
.tk-form--compact{padding:1.35rem}
.tk-form__head h2{font-size:1.24rem;margin-bottom:.25rem}
.tk-form__head p{font-size:.87rem;color:var(--ink-3);margin-bottom:1.1rem}

.tk-form__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.85rem}
.tk-f{display:flex;flex-direction:column;gap:.32rem;grid-column:1/-1;min-width:0}
.tk-f--half{grid-column:auto}
.tk-f label,.tk-form .form-label{font-size:.8rem;font-weight:600;color:var(--ink)}
.tk-f label span{color:var(--danger)}

.tk-form input[type=text],.tk-form input[type=tel],.tk-form input[type=email],
.tk-form input[type=date],.tk-form textarea,.tk-form select,.tk-form .form-select{
    width:100%;padding:.62rem .78rem;font:inherit;font-size:.92rem;color:var(--ink);
    background:#fff;border:1px solid var(--line);border-radius:var(--r-sm);
    transition:border-color .12s,box-shadow .12s;appearance:none;
}
.tk-form select,.tk-form .form-select{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7a89' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat:no-repeat;background-position:right .6rem center;background-size:1.05rem;
    padding-right:2.1rem;
}
.tk-form input:focus,.tk-form textarea:focus,.tk-form select:focus,.tk-form .form-select:focus{
    outline:none;border-color:var(--accent);
    box-shadow:0 0 0 3px color-mix(in srgb,var(--accent) 18%,transparent);
}
.tk-form .is-invalid{border-color:var(--danger)}
.tk-f em{font-style:normal;font-size:.76rem;color:var(--danger)}

.tk-form__submit{margin-top:.2rem}
.tk-form__fine{font-size:.72rem;color:var(--ink-3);margin:.6rem 0 0;line-height:1.5}
.tk-alert{background:#fdecec;color:var(--danger);border-radius:var(--r-sm);padding:.6rem .8rem;font-size:.85rem;margin-bottom:.9rem}

/* Off-screen rather than hidden — see the partial. */
.tk-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

.tk-form__done{text-align:center;padding:1.4rem .6rem}
.tk-form__done .tk-i{font-size:2.4rem;color:var(--accent);stroke-width:2.5}
.tk-form__done h3{margin:.7rem 0 .3rem;font-size:1.2rem}
.tk-form__done p{font-size:.9rem;color:var(--ink-3);margin-bottom:1.1rem}

/* ---- Trust strip ------------------------------------------------------- */
.tk-trust{background:var(--bg-alt);border-bottom:1px solid var(--line)}
.tk-trust__in{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;padding-top:1.5rem;padding-bottom:1.5rem;text-align:center}
.tk-trust__item strong{display:block;font-size:1.5rem;font-weight:700;color:var(--ink);line-height:1.2}
.tk-trust__item span{font-size:.82rem;color:var(--ink-3)}

/* ---- Sections ---------------------------------------------------------- */
.tk-sec{padding:clamp(2.4rem,5vw,4rem) 0}
.tk-sec--alt{background:var(--bg-alt)}
.tk-sec__head{max-width:660px;margin:0 auto clamp(1.6rem,3vw,2.4rem);text-align:center}
.tk-sec__head p{color:var(--ink-3);margin:0}

/* ---- Steps ------------------------------------------------------------- */
.tk-steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.1rem}
.tk-step{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.5rem 1.3rem;position:relative}
.tk-step__n{
    position:absolute;top:1.1rem;right:1.2rem;font-size:2.4rem;font-weight:700;
    color:var(--accent-soft);line-height:1;
}
.tk-step__ico{
    display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;
    border-radius:12px;background:var(--accent-soft);color:var(--accent);font-size:1.3rem;margin-bottom:.9rem;
}
.tk-step h3{margin-bottom:.35rem}
.tk-step p{font-size:.9rem;color:var(--ink-3);margin:0}

/* ---- Generic cards ----------------------------------------------------- */
.tk-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.1rem}
.tk-card{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.4rem;transition:box-shadow .15s,transform .15s}
.tk-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.tk-card__ico{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:10px;background:var(--accent-soft);color:var(--accent);font-size:1.2rem;margin-bottom:.8rem}
.tk-card p{font-size:.9rem;color:var(--ink-3);margin:0}
.tk-card ul{display:grid;gap:.45rem;margin-top:.7rem}
.tk-card ul li{display:flex;gap:.5rem;font-size:.88rem;color:var(--ink-3)}
.tk-card ul .tk-i{color:var(--accent);margin-top:.3em;flex:none}

/* ---- Comparison table -------------------------------------------------- */
.tk-tablewrap{overflow-x:auto;border:1px solid var(--line);border-radius:var(--r-lg);background:#fff;-webkit-overflow-scrolling:touch}
.tk-table{width:100%;border-collapse:collapse;min-width:640px;font-size:.9rem}
.tk-table th,.tk-table td{padding:.85rem 1rem;text-align:left;border-bottom:1px solid var(--line);vertical-align:middle}
.tk-table thead th{background:var(--bg-alt);font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--ink-3);white-space:nowrap}
.tk-table tbody tr:last-child td{border-bottom:0}
.tk-table tbody tr:hover{background:var(--accent-soft)}
.tk-table__name{font-weight:600;color:var(--ink)}
.tk-table__muted{color:var(--ink-3)}
.tk-pill{display:inline-block;padding:.15rem .55rem;border-radius:999px;background:var(--accent-soft);color:var(--accent-dark);font-size:.72rem;font-weight:600;text-transform:uppercase;letter-spacing:.03em}

/* ---- Partner grid ------------------------------------------------------ */
.tk-partners{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:.8rem}
.tk-partner{
    display:flex;align-items:center;justify-content:center;text-align:center;
    min-height:76px;padding:.9rem;background:#fff;border:1px solid var(--line);
    border-radius:var(--r);font-size:.83rem;font-weight:600;color:var(--ink-2);line-height:1.35;
}
.tk-partner img{max-height:38px;width:auto}

/* ---- FAQ --------------------------------------------------------------- */
.tk-faq{display:grid;gap:.6rem}
.tk-faq__item{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden}
.tk-faq__item[open]{border-color:var(--accent)}
.tk-faq summary{
    display:flex;align-items:center;justify-content:space-between;gap:1rem;
    padding:1rem 1.2rem;cursor:pointer;font-weight:600;color:var(--ink);font-size:.97rem;
    list-style:none;
}
.tk-faq summary::-webkit-details-marker{display:none}
.tk-faq summary .tk-i{flex:none;color:var(--ink-3);transition:transform .18s}
.tk-faq__item[open] summary .tk-i{transform:rotate(180deg);color:var(--accent)}
.tk-faq__a{padding:0 1.2rem 1.1rem}
.tk-faq__a p{margin:0;font-size:.92rem;color:var(--ink-3)}

/* ---- Prose (guides, legal) --------------------------------------------- */
.tk-prose{font-size:1rem;color:var(--ink-2)}
.tk-prose h2{margin:2.2rem 0 .8rem}
.tk-prose h3{margin:1.6rem 0 .5rem;font-size:1.05rem}
.tk-prose ul{list-style:disc;padding-left:1.3rem;margin:0 0 1.1rem}
.tk-prose ol{list-style:decimal;padding-left:1.3rem;margin:0 0 1.1rem}
.tk-prose li{margin-bottom:.4rem}
.tk-prose>:first-child{margin-top:0}
.tk-note{background:var(--accent-soft);border-left:3px solid var(--accent);border-radius:0 var(--r) var(--r) 0;padding:1rem 1.2rem;margin:1.4rem 0}
.tk-note p:last-child{margin:0}

/* ---- Split layout (content + sticky form) ------------------------------ */
.tk-split{display:grid;grid-template-columns:1fr 400px;gap:clamp(1.6rem,4vw,3rem);align-items:start}
.tk-split__aside{position:sticky;top:88px}

/* ---- Calculator -------------------------------------------------------- */
.tk-calc{display:grid;grid-template-columns:1fr 320px;gap:1.6rem;background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:clamp(1.2rem,3vw,2rem)}
.tk-calc__fields{display:grid;gap:1.3rem}
.tk-calc__row label{display:flex;align-items:baseline;justify-content:space-between;font-size:.85rem;font-weight:600;color:var(--ink);margin-bottom:.5rem}
.tk-calc__row output{font-size:1rem;font-weight:700;color:var(--accent)}
.tk-calc input[type=range]{width:100%;appearance:none;height:5px;border-radius:5px;background:var(--line);outline:none}
.tk-calc input[type=range]::-webkit-slider-thumb{appearance:none;width:20px;height:20px;border-radius:50%;background:var(--accent);cursor:pointer;border:3px solid #fff;box-shadow:0 1px 5px rgba(0,0,0,.28)}
.tk-calc input[type=range]::-moz-range-thumb{width:20px;height:20px;border-radius:50%;background:var(--accent);cursor:pointer;border:3px solid #fff}
.tk-calc__out{background:var(--accent-soft);border-radius:var(--r);padding:1.3rem;text-align:center;align-self:start}
.tk-calc__big{display:block;font-size:2rem;font-weight:700;color:var(--accent-dark);line-height:1.2}
.tk-calc__lbl{font-size:.8rem;color:var(--ink-3)}
.tk-calc__split{display:grid;gap:.5rem;margin-top:1rem;padding-top:1rem;border-top:1px solid color-mix(in srgb,var(--accent) 22%,transparent);font-size:.85rem}
.tk-calc__split div{display:flex;justify-content:space-between}
.tk-calc__split b{color:var(--ink)}

/* ---- Accent band ------------------------------------------------------- */
.tk-band{background:linear-gradient(120deg,var(--accent),var(--accent-dark));color:#fff;padding:clamp(2rem,4vw,3rem) 0}
.tk-band h2{color:#fff;margin-bottom:.3rem}
.tk-band p{margin:0;color:rgba(255,255,255,.86)}
.tk-band__in{display:flex;align-items:center;justify-content:space-between;gap:1.6rem;flex-wrap:wrap}

/* ---- Footer ------------------------------------------------------------
   Light, exactly like the main site's .tk-ft (#f5f6f8 on #e7eaef, muted
   #516079 text, green hover). The subdomains previously used a dark footer,
   which was the single loudest signal that they were a different website.
   ------------------------------------------------------------------------ */
.tk-foot{
    background:var(--bg-alt);color:var(--ink-2);font-size:.9rem;
    border-top:1px solid var(--line);padding:clamp(2.2rem,4vw,2.8rem) 0 1.2rem;
}
.tk-foot__grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:1.8rem}
.tk-foot h3{
    color:var(--ink);font-size:.82rem;font-weight:700;text-transform:uppercase;
    letter-spacing:.06em;margin-bottom:1rem;
}
.tk-foot ul{display:grid;gap:.5rem}
.tk-foot a{color:var(--ink-2)}
.tk-foot a:hover{color:var(--brand)}
.tk-foot__brand p{max-width:38ch;margin:.9rem 0;color:var(--ink-2)}
.tk-foot__contact{display:grid;gap:.35rem}
.tk-foot__contact a{display:inline-flex;align-items:center;gap:.4rem;font-weight:600}
.tk-foot__soc{display:flex;gap:.5rem;margin-top:1rem}
.tk-foot__soc a{
    display:flex;align-items:center;justify-content:center;width:34px;height:34px;
    border-radius:50%;background:#fff;border:1px solid var(--line);
    color:var(--ink-2);font-size:.68rem;font-weight:700;
}
.tk-foot__soc a:hover{background:var(--brand);border-color:var(--brand);color:#fff}
.tk-foot__legal{
    margin:1.8rem 0 0;padding-top:1.3rem;border-top:1px solid var(--line);
    font-size:.76rem;line-height:1.7;color:var(--ink-3);
}
.tk-foot__bar{
    display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;
    margin-top:1.1rem;padding-top:1.1rem;border-top:1px solid var(--line);
    font-size:.8rem;color:var(--ink-3);
}

/* ---- Sticky mobile bar ------------------------------------------------- */
.tk-sticky{display:none}

/* ---- Product page sidebar card ----------------------------------------- */
.tk-side{background:var(--bg-alt);border:1px solid var(--line);border-radius:var(--r);padding:1.3rem}
.tk-side h3{font-size:1.02rem;margin-bottom:.9rem}
.tk-side__list{display:grid;gap:.6rem;margin-bottom:1.2rem}
.tk-side__list li{display:flex;gap:.55rem;align-items:flex-start;font-size:.88rem;color:var(--ink-2)}
.tk-side__list .tk-i{color:var(--brand);margin-top:.3em;flex:none;stroke-width:2.5}
.tk-side__call{
    display:flex;align-items:center;gap:.7rem;margin-top:.9rem;padding:.75rem .85rem;
    background:#fff;border:1px solid var(--line);border-radius:var(--r-sm);color:var(--ink-2);
}
.tk-side__call:hover{border-color:var(--brand);text-decoration:none}
.tk-side__call .tk-i{color:var(--brand);font-size:1.15rem;flex:none}
.tk-side__call em{display:block;font-style:normal;font-size:.74rem;color:var(--ink-3)}
.tk-side__call strong{display:block;font-size:.98rem;color:var(--ink)}

/* ==========================================================================
   Products — dropdown, cards and the product page body
   ========================================================================== */

/* ---- Header products dropdown ------------------------------------------ */
.tk-nav__has-sub{position:relative}
.tk-nav__toggle{
    display:inline-flex;align-items:center;gap:.35rem;padding:.5rem .75rem;
    background:none;border:0;border-radius:var(--r-sm);cursor:pointer;
    font:inherit;font-size:.9rem;font-weight:600;color:var(--ink-2);
}
.tk-nav__toggle:hover{background:var(--bg-alt);color:var(--ink)}
.tk-nav__toggle .tk-i{transition:transform .18s}
.tk-nav__toggle[aria-expanded="true"]{color:var(--accent);background:var(--accent-soft)}
.tk-nav__toggle[aria-expanded="true"] .tk-i{transform:rotate(180deg)}

.tk-sub{
    position:absolute;top:calc(100% + 10px);left:0;z-index:80;
    width:min(620px,92vw);padding:.6rem;background:#fff;
    border:1px solid var(--line);border-radius:var(--r);box-shadow:var(--shadow-lg);
    /* Closed by default but still in the DOM and still real links, so a
       crawler follows every product page from every page of the site. */
    opacity:0;visibility:hidden;transform:translateY(-6px);
    transition:opacity .16s,transform .16s,visibility .16s;
}
.tk-nav__has-sub.is-open .tk-sub{opacity:1;visibility:visible;transform:translateY(0)}
.tk-sub__grid{display:grid;grid-template-columns:1fr 1fr;gap:.15rem}
.tk-sub__grid a{
    display:flex;gap:.7rem;align-items:flex-start;padding:.6rem .65rem;
    border-radius:var(--r-sm);color:var(--ink-2);
}
.tk-sub__grid a:hover{background:var(--bg-alt);text-decoration:none}
.tk-sub__grid a.is-active{background:var(--accent-soft)}
.tk-sub__grid strong{display:block;font-size:.88rem;color:var(--ink);line-height:1.35}
.tk-sub__grid em{
    display:block;font-style:normal;font-size:.76rem;color:var(--ink-3);
    line-height:1.4;margin-top:.1rem;
}
.tk-sub__ico{
    display:flex;align-items:center;justify-content:center;flex:none;
    width:34px;height:34px;border-radius:9px;
    background:var(--accent-soft);color:var(--accent);font-size:1.05rem;
}

/* ---- Product cards ------------------------------------------------------ */
.tk-cards--tight{grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:.9rem}
.tk-card--link{display:block;color:inherit}
.tk-card--link:hover{text-decoration:none;border-color:var(--accent)}
.tk-card--link h3{color:var(--ink)}
.tk-card__go{
    display:inline-flex;align-items:center;gap:.35rem;margin-top:.9rem;
    font-size:.84rem;font-weight:600;color:var(--accent);
}
.tk-card--link:hover .tk-card__go .tk-i{transform:translateX(3px)}
.tk-card__go .tk-i{transition:transform .15s}

/* ---- Product page body -------------------------------------------------- */
.tk-lead{font-size:1.06rem;color:var(--ink-2)}
.tk-ticks{list-style:none;padding:0;margin:0 0 1.2rem;display:grid;gap:.55rem}
.tk-ticks li{display:flex;gap:.6rem;align-items:flex-start;font-size:.95rem}
.tk-ticks .tk-i{color:var(--brand);margin-top:.32em;flex:none;stroke-width:2.5}

/* Breadcrumb-only page header on product pages: a thin strip, no big title. */
.tk-pagehead--bare{padding:.8rem 0;background:#fff}
.tk-pagehead--bare .tk-crumb{margin:0}

/* The mobile treatment for this dropdown lives in the Responsive section
   above, with the rest of the breakpoints, rather than trailing the file
   where it would override them. */

/* ==========================================================================
   Everything below this line is RESPONSIVE ONLY.

   It has to stay last in the file. Media queries add no specificity, so a
   plain `.tk-sub{position:absolute}` declared after `@media (max-width:900px)
   .tk-sub{position:static}` wins on a phone — which is exactly how the
   products dropdown ended up rendering as a floating panel on mobile the
   first time round. New component styles go ABOVE here; new breakpoint rules
   go below.
   ========================================================================== */

/* ==========================================================================
   Responsive
   --------------------------------------------------------------------------
   Mobile-first in behaviour if not in source order: most traffic to these two
   sites arrives on a phone over a patchy rural connection, so the phone layout
   is the one that has to be right, not the one that has to survive.

   Breakpoints: 1024 (tablet landscape), 900 (tablet portrait → the big
   single-column switch), 640 (phone), 400 (small phone).
   ========================================================================== */

/* Nothing may ever push the page sideways. A single overflowing table or a
   long unbroken URL turns every page into a horizontally scrolling mess, and
   it is invisible on a desktop browser. */
html,body.tk-sub{max-width:100%;overflow-x:clip}
.tk-sub{-webkit-text-size-adjust:100%;text-size-adjust:100%}
/* Grid and flex children default to min-width:auto, which is what lets a wide
   child (a table, a long word) blow out its parent. */
.tk-wrap,.tk-hero__in,.tk-split,.tk-cards,.tk-steps,.tk-form__grid,.tk-foot__grid{min-width:0}
.tk-wrap>*,.tk-split>*,.tk-cards>*,.tk-steps>*{min-width:0}
.tk-prose{overflow-wrap:anywhere}

/* The header is sticky, so an in-page jump has to clear it. */
#lead-form,#faq,#main{scroll-margin-top:84px}

@media (max-width:1024px){
    .tk-hero__in{grid-template-columns:1fr 372px;gap:1.8rem}
    .tk-split{grid-template-columns:1fr 320px;gap:1.8rem}
    .tk-calc{grid-template-columns:1fr 260px}
    .tk-nav a,.tk-nav__toggle{padding:.5rem .55rem;font-size:.86rem}
    .tk-sub{width:min(560px,92vw)}
}

/* ==========================================================================
   ≤900px — the single-column switch
   ========================================================================== */
@media (max-width:900px){

    /* ---- Header ---------------------------------------------------------- */
    .tk-head__in{gap:.7rem;min-height:60px}
    .tk-burger{display:flex;margin-left:auto;padding:12px 10px}   /* 44px tall */
    .tk-head__cta{display:none}                                    /* lives in the sticky bar */

    /* The nav becomes a panel under the header. max-height rather than
       display:none so it can animate AND stays in the DOM — every product
       link is still crawlable with the menu shut. */
    .tk-nav{
        position:absolute;left:0;right:0;top:100%;margin:0;background:#fff;
        border-bottom:1px solid var(--line);box-shadow:var(--shadow-lg);
        max-height:0;overflow:hidden;transition:max-height .25s ease;
    }
    .tk-nav.is-open{max-height:calc(100vh - 100px);overflow-y:auto;-webkit-overflow-scrolling:touch}
    .tk-nav ul{flex-direction:column;align-items:stretch;gap:0;padding:.2rem var(--gut) 1rem}
    .tk-nav a{
        display:flex;align-items:center;min-height:48px;padding:.7rem .2rem;
        border-bottom:1px solid var(--line);border-radius:0;font-size:.95rem;
    }
    .tk-nav a:hover{background:transparent}
    .tk-nav a.is-active{background:transparent;color:var(--accent)}

    /* ---- Hero ------------------------------------------------------------ */
    .tk-hero{padding:1.8rem 0 2.2rem}
    .tk-hero__in{grid-template-columns:1fr;gap:1.6rem}
    .tk-hero__form{order:-1}          /* the form comes FIRST on a phone */
    .tk-hero__sub{font-size:1rem;max-width:none;margin-bottom:1.1rem}
    .tk-hero__points{gap:.5rem}

    /* ---- Layout ---------------------------------------------------------- */
    .tk-split{grid-template-columns:1fr;gap:1.8rem}
    .tk-split__aside{position:static}
    .tk-calc{grid-template-columns:1fr;gap:1.2rem}
    .tk-trust__in{grid-template-columns:repeat(2,1fr);gap:1.1rem}
    .tk-foot__grid{grid-template-columns:1fr 1fr;gap:1.4rem}
    .tk-cards,.tk-cards--tight{grid-template-columns:repeat(auto-fit,minmax(min(100%,240px),1fr))}
    .tk-steps{grid-template-columns:repeat(auto-fit,minmax(min(100%,240px),1fr))}

    /* ---- Products dropdown becomes an expandable block ------------------- */
    .tk-sub{
        position:static;width:auto;box-shadow:none;border:0;padding:0 0 .5rem;
        opacity:1;visibility:hidden;transform:none;height:0;overflow:hidden;
    }
    .tk-nav__has-sub.is-open .tk-sub{visibility:visible;height:auto}
    .tk-sub__grid{grid-template-columns:1fr;gap:0}
    .tk-sub__grid a{min-height:52px;padding:.6rem .2rem;border-bottom:1px solid var(--line)}
    .tk-sub__grid a:last-child{border-bottom:0}
    .tk-nav__toggle{
        width:100%;justify-content:space-between;min-height:48px;padding:.7rem .2rem;
        border-bottom:1px solid var(--line);border-radius:0;font-size:.95rem;
    }
    .tk-nav__toggle:hover,.tk-nav__toggle[aria-expanded="true"]{background:transparent}

    /* ---- Sticky action bar ----------------------------------------------- */
    /* Body padding keeps it from ever covering the footer. */
    body.tk-sub{padding-bottom:72px}
    .tk-sticky{
        display:grid;grid-template-columns:auto 1fr;gap:.6rem;align-items:center;
        position:fixed;left:0;right:0;bottom:0;z-index:70;
        padding:.55rem var(--gut) calc(.55rem + env(safe-area-inset-bottom,0px));
        background:rgba(255,255,255,.97);backdrop-filter:blur(10px);
        border-top:1px solid var(--line);box-shadow:0 -4px 18px rgba(20,40,25,.10);
    }
    .tk-sticky__call{
        display:inline-flex;align-items:center;justify-content:center;gap:.4rem;
        min-height:46px;padding:0 1rem;border:1px solid var(--line);border-radius:999px;
        font-size:.88rem;font-weight:600;color:var(--ink);background:#fff;
    }
    .tk-sticky__cta{
        display:flex;align-items:center;justify-content:center;min-height:46px;
        padding:0 1rem;border-radius:999px;background:var(--accent);color:#fff;
        font-size:.94rem;font-weight:600;text-align:center;
    }
    .tk-sticky a:hover{text-decoration:none;color:inherit}
    .tk-sticky__cta:hover{color:#fff}
}

/* ==========================================================================
   ≤640px — phone
   ========================================================================== */
@media (max-width:640px){

    .tk-sub h1{font-size:clamp(1.55rem,6.2vw,2rem)}
    .tk-sub h2{font-size:clamp(1.25rem,4.8vw,1.6rem)}

    .tk-topbar__in{min-height:34px;font-size:.75rem}
    .tk-topbar__right{gap:.85rem}
    .tk-topbar__link span{display:none}       /* icons only, keeps one line */
    .tk-topbar__tel span{display:inline}      /* except the phone number */

    .tk-brand img{height:30px}
    .tk-brand__sub{font-size:.68rem;padding-left:.5rem}

    .tk-sec{padding:2rem 0}
    .tk-sec__head{margin-bottom:1.4rem;text-align:left}
    .tk-pagehead{padding:1.1rem 0}

    /* ---- Forms ----------------------------------------------------------- */
    .tk-form{padding:1.15rem;border-radius:var(--r)}
    .tk-form__grid{grid-template-columns:1fr}
    .tk-f--half{grid-column:1/-1}
    /* 16px exactly. Any smaller and iOS Safari zooms the whole page in when a
       field is focused, which then leaves the form scrolled off-centre — the
       single most common way a mobile form loses a submission. */
    .tk-form input[type=text],.tk-form input[type=tel],.tk-form input[type=email],
    .tk-form input[type=date],.tk-form textarea,.tk-form select,.tk-form .form-select{
        font-size:16px;padding:.7rem .8rem;min-height:46px;
    }
    .tk-form textarea{min-height:88px}

    .tk-trust__in{gap:.9rem;padding-top:1.2rem;padding-bottom:1.2rem}
    .tk-trust__item strong{font-size:1.25rem}
    .tk-trust__item span{font-size:.76rem}

    .tk-foot__grid{grid-template-columns:1fr;gap:1.6rem}
    .tk-foot__bar{flex-direction:column;gap:.5rem}

    .tk-band__in{flex-direction:column;align-items:flex-start;gap:1.1rem}
    .tk-band .tk-btn{width:100%}

    .tk-faq summary{padding:.9rem 1rem;font-size:.93rem;min-height:52px}
    .tk-faq__a{padding:0 1rem 1rem}

    .tk-partners{grid-template-columns:repeat(auto-fill,minmax(min(100%,138px),1fr));gap:.6rem}
    .tk-partner{min-height:66px;font-size:.78rem;padding:.7rem}

    .tk-step,.tk-card{padding:1.2rem 1.1rem}
    .tk-step__n{font-size:2rem;top:.9rem;right:1rem}

    /* Sliders need a bigger target on touch than a mouse ever does. */
    .tk-calc{padding:1.1rem}
    .tk-calc input[type=range]{height:6px;padding:.6rem 0;background-clip:content-box}
    .tk-calc input[type=range]::-webkit-slider-thumb{width:26px;height:26px}
    .tk-calc input[type=range]::-moz-range-thumb{width:26px;height:26px}
    .tk-calc__big{font-size:1.7rem}

    /* Wide tables scroll inside their own box, and say so. */
    .tk-tablewrap{position:relative}
    .tk-tablewrap::after{
        content:'Swipe to see more →';display:block;padding:.5rem 1rem;
        font-size:.74rem;color:var(--ink-3);background:var(--bg-alt);
        border-top:1px solid var(--line);
    }
    .tk-table{min-width:520px;font-size:.86rem}
    .tk-table th,.tk-table td{padding:.7rem .8rem}

    #lead-form,#faq,#main{scroll-margin-top:72px}
}

/* ==========================================================================
   ≤400px — small phones (still a large share of rural traffic)
   ========================================================================== */
@media (max-width:400px){
    :root{--gut:14px}
    .tk-brand img{height:26px}
    .tk-brand__sub{font-size:.62rem;letter-spacing:.04em}
    .tk-btn{padding:.62rem 1rem;font-size:.9rem}
    .tk-btn--lg{padding:.8rem 1.2rem;font-size:.95rem}
    .tk-sticky{grid-template-columns:auto 1fr;gap:.45rem}
    .tk-sticky__call{padding:0 .8rem}
    .tk-sticky__call span{display:none}       /* icon-only call button */
    .tk-sticky__cta{font-size:.88rem}
    .tk-trust__in{grid-template-columns:1fr 1fr}
    .tk-form{padding:1rem}
}

/* Landscape phones are short, not narrow — a sticky header plus a sticky
   action bar leaves very little in between. */
@media (max-height:460px) and (orientation:landscape){
    .tk-head{position:static}
    .tk-sticky{position:static;box-shadow:none}
    body.tk-sub{padding-bottom:0}
}

@media (prefers-reduced-motion:reduce){
    .tk-sub *{animation:none!important;transition:none!important}
    .tk-btn:hover,.tk-card:hover{transform:none}
    html{scroll-behavior:auto}
}

/* Print: drop the chrome, keep the content. */
@media print{
    .tk-topbar,.tk-head,.tk-sticky,.tk-form,.tk-band,.tk-foot__soc{display:none}
    .tk-hero{background:none;color:#000;padding:0}
    .tk-hero h1{color:#000}
    .tk-sub a{color:#000;text-decoration:underline}
}
