/*
 * Dark PPC landing based on the Chipps error funnel structure.
 * Green is reserved for conversion elements; blue is used for brand accents,
 * icons and links.
 */

:root {
    --cl-bg: #202020;          /* Page background */
    --cl-bg-2: #282828;        /* Card background */
    --cl-bg-3: #313131;        /* Tile and hover background */
    --cl-border: #414141;      /* colorBorderSecondary */
    --cl-text: #F4F4F4;
    --cl-text-2: #BEBEBE;
    --cl-text-3: #8C8C8C;
    --cl-accent: #60CDFF;      /* colorAccentBlue (dark) */
    --cl-accent-hover: #7DD6FF;
    --cl-accent-bg: rgba(96, 205, 255, .1);
    --cl-green: #3EB900;
    --cl-green-2: #41C400;
    --cl-tp: #00B67A;          /* Trustpilot green */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--cl-bg);
    color: var(--cl-text);
    font-family: 'Segoe UI', -apple-system, system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

a { color: var(--cl-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.cl-wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1 { font-size: 40px; line-height: 1.12; font-weight: 700; word-wrap: break-word; }

h2 { font-size: 24px; font-weight: 700; margin-bottom: 10px; word-wrap: break-word; }

.cl-section-sub { color: var(--cl-text-2); max-width: 760px; margin-bottom: 22px; }

/* Icon sprite */
svg { stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Top navigation ---------- */

.cl-nav {
    border-bottom: 1px solid var(--cl-border);
    background: rgba(32, 32, 32, .97);
    position: sticky; top: 0; z-index: 10;
}

.cl-nav__in { display: flex; align-items: center; gap: 18px; height: 52px; }

.cl-nav__brand {
    display: flex; align-items: center; gap: 8px; flex: 0 0 auto;
    font-weight: 700; letter-spacing: .08em; font-size: 15px;
    color: var(--cl-text) !important; text-decoration: none !important;
}

.cl-nav__brand img { width: 22px; height: 22px; }

.cl-nav__crumbs {
    flex: 1 1 auto; min-width: 0;
    font-size: 12px; color: var(--cl-text-3);
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}

.cl-nav__cta {
    flex: 0 0 auto;
    padding: 7px 18px; border-radius: 7px;
    background: var(--cl-green); color: #fff !important;
    font-size: 13px; font-weight: 700;
    text-decoration: none !important;
}

.cl-nav__cta:hover { background: var(--cl-green-2); }

/* ---------- Hero ---------- */

.cl-hero { padding: 40px 0 30px; }

.cl-hero__in { display: flex; gap: 44px; align-items: flex-start; }

.cl-hero__main { flex: 1 1 auto; min-width: 0; }

.cl-hero__sub { margin: 14px 0 4px; font-size: 17px; color: var(--cl-text-2); max-width: 620px; }

.cl-hero__sub b { color: var(--cl-text); }

.cl-checks { list-style: none; margin: 18px 0 24px; }

.cl-checks li { padding-left: 26px; position: relative; margin: 8px 0; color: var(--cl-text-2); font-size: 14px; }

.cl-checks li::before {
    content: "\2713";
    position: absolute; left: 0; top: 0;
    color: var(--cl-green-2); font-weight: 700;
}

.cl-checks b { color: var(--cl-text); }

/* CTA label, button and note */
.cl-cta { margin: 4px 0 8px; }

.cl-cta__label { font-size: 13px; font-weight: 600; color: var(--cl-text-2); margin-bottom: 8px; }

.cl-btn-download {
    display: inline-block;
    min-width: 280px;
    padding: 14px 36px;
    border-radius: 8px;
    background: linear-gradient(0deg, #3baf01 0, var(--cl-green) 50%, var(--cl-green-2) 100%);
    color: #fff !important;
    font-size: 17px; font-weight: 700; text-align: center;
    text-decoration: none !important;
    box-shadow: 0 4px 18px rgba(62, 185, 0, .3);
}

.cl-btn-download:hover { filter: brightness(1.07); }

.cl-cta__note { margin-top: 9px; font-size: 12px; color: var(--cl-text-3); }

/* Contents navigation */
.cl-contents { margin-top: 30px; }

.cl-contents__title { font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--cl-text-3); margin-bottom: 8px; }

.cl-contents ul { list-style: none; }

.cl-contents li { margin: 5px 0; font-size: 14px; }

.cl-contents a { text-decoration: underline; text-decoration-color: rgba(96, 205, 255, .4); }

/* ---------- Product card ---------- */

.cl-hero__side { flex: 0 0 340px; }

.cl-card {
    background: var(--cl-bg-2);
    border: 1px solid var(--cl-border);
    border-radius: 12px;
    padding: 16px;
}

.cl-card__tp { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }

.cl-card__stars { display: flex; gap: 3px; }

.cl-card__stars i {
    display: flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; background: var(--cl-tp); border-radius: 3px;
}

.cl-card__stars svg { width: 14px; height: 14px; stroke: none; fill: #fff; }

.cl-card__tp a { font-size: 13px; font-weight: 600; color: var(--cl-text-2); }

.cl-card__rows { margin-bottom: 14px; }

.cl-card__rows div {
    display: flex; justify-content: space-between; gap: 12px;
    font-size: 12.5px; padding: 6px 0;
    border-bottom: 1px solid var(--cl-border);
}

.cl-card__rows span { color: var(--cl-text-3); flex: 0 0 auto; }

.cl-card__rows b { text-align: right; }

.cl-card__disc { font-size: 11.5px; color: var(--cl-text-3); line-height: 1.5; margin-top: 12px; }

/* app-shot inside the card, preserving the 1095x632 application ratio */
.cl-card .app-shot { width: 100%; max-width: 306px; }

.cl-card .app-shot .as-frame { width: 306px; height: 177px; }

.cl-card .app-shot .as-frame .as-app { transform: scale(.279452); }

.cl-card .app-shot .as-hint { color: var(--cl-text-3); }

/* ---------- Steps ---------- */

.cl-steps { padding: 34px 0 6px; }

.cl-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.cl-step {
    background: var(--cl-bg-2);
    border: 1px solid var(--cl-border);
    border-radius: 12px;
    padding: 24px 22px;
    text-align: center;
}

.cl-step__ico {
    display: flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; margin: 0 auto 14px;
    border-radius: 13px;
    background: var(--cl-accent-bg);
    color: var(--cl-accent);
}

.cl-step__ico svg { width: 28px; height: 28px; }

.cl-step__n { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; color: var(--cl-accent); margin-bottom: 6px; }

.cl-step__t { font-size: 16px; font-weight: 700; margin-bottom: 8px; }

.cl-step p { font-size: 13px; color: var(--cl-text-2); }

.cl-step p b { color: var(--cl-text); }

/* ---------- Category tiles ---------- */

.cl-cats { padding: 40px 0 6px; }

.cl-cats__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }

.cl-cat {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    background: var(--cl-bg-2);
    border: 1px solid var(--cl-border);
    border-radius: 10px;
    padding: 18px 10px 14px;
    font-size: 12.5px; text-align: center; color: var(--cl-text-2);
}

.cl-cat:hover { background: var(--cl-bg-3); }

.cl-cat svg { width: 26px; height: 26px; color: var(--cl-accent); }

/* ---------- Text sections ---------- */

.cl-text { padding: 38px 0 4px; }

.cl-text p { margin: 10px 0; color: var(--cl-text-2); max-width: 820px; }

.cl-text b { color: var(--cl-text); }

.cl-bullets { list-style: none; margin: 12px 0 8px; max-width: 820px; }

.cl-bullets li { padding-left: 22px; position: relative; margin: 6px 0; color: var(--cl-text-2); }

.cl-bullets li::before { content: "\2022"; position: absolute; left: 6px; color: var(--cl-accent); }

.cl-text--fine p { font-size: 13px; color: var(--cl-text-3); }

/* ---------- Footer ---------- */

.cl-footer { border-top: 1px solid var(--cl-border); margin-top: 40px; padding: 24px 0 44px; font-size: 12px; color: var(--cl-text-3); }

.cl-footer__menu { list-style: none; display: flex; gap: 22px; margin-bottom: 14px; }

.cl-footer__menu a { font-size: 13px; }

.cl-footer p { margin: 6px 0; max-width: 900px; line-height: 1.6; }

/* ---------- Responsive layout ---------- */

@media screen and (max-width: 920px) {
    .cl-hero__in { flex-direction: column; }
    .cl-hero__side { flex: 0 0 auto; width: 100%; max-width: 360px; }
    .cl-steps__grid { grid-template-columns: 1fr; }
    .cl-cats__grid { grid-template-columns: repeat(3, 1fr); }
    h1 { font-size: 30px; }
    .cl-nav__crumbs { display: none; }
}

@media screen and (max-width: 480px) {
    .cl-cats__grid { grid-template-columns: repeat(2, 1fr); }
    .cl-btn-download { width: 100%; min-width: 0; }
}

/* ---------- RTL ---------- */

.cl-body.lang-ar,
.cl-body.lang-he { direction: rtl; }

/* Move checklist and bullet markers to the right. */
.lang-ar .cl-checks li,
.lang-he .cl-checks li { padding-left: 0; padding-right: 26px; }
.lang-ar .cl-checks li::before,
.lang-he .cl-checks li::before { left: auto; right: 0; }

.lang-ar .cl-bullets li,
.lang-he .cl-bullets li { padding-left: 0; padding-right: 22px; }
.lang-ar .cl-bullets li::before,
.lang-he .cl-bullets li::before { left: auto; right: 6px; }

/* Align contents and supporting text for RTL locales. */
.lang-ar .cl-contents,
.lang-he .cl-contents,
.lang-ar .cl-section-sub,
.lang-he .cl-section-sub { text-align: right; }

/* Keep the application preview LTR while returning its hint to the RTL flow. */
.lang-ar .app-shot .as-frame,
.lang-he .app-shot .as-frame { direction: ltr; }
.lang-ar .as-hint,
.lang-he .as-hint { direction: rtl; }
