/* UtilityControl product page (redesign).
   Scoped under .q2 so nothing leaks into the rest of the site.
   Tokens are taken from the main site theme (static/css/style.min.css):
   slate #414f65/#4d586b hero + CTA bands, #007bff primary, #4aca85 theme green,
   #798eea icon tint, Nunito headings / Poppins body, white cards on #f8f9fa. */

.q2 {
    --q-slate: #4d586b;
    --q-slate-deep: #414f65;
    --q-blue: #0069d9;          /* theme #007bff, one step darker so white text passes AA */
    --q-blue-dark: #0056b3;
    --q-green: #4aca85;
    --q-accent: #798eea;
    --q-ink: #303133;
    --q-body: #555b66;
    --q-muted: #6c757d;
    --q-bg: #f8f9fa;
    --q-line: #e5e7eb;
    --q-radius: 12px;
    --q-shadow: 0 2px 12px rgba(48, 49, 51, .08);
    --q-shadow-lift: 0 10px 30px rgba(48, 49, 51, .14);
    font-family: "Poppins", Arial, sans-serif;
    color: var(--q-body);
}

.q2 *, .q2 *::before, .q2 *::after { box-sizing: border-box; }

/* The site theme styles every <article> (35px padding, 40px bottom margin, shadow, radius).
   Neutralize that inside .q2 with zero-specificity :where() so component classes
   (.q2-card, .q2-post …) still win when they set their own values. */
:where(.q2) article { padding: 0; margin: 0; background: none; box-shadow: none; border-radius: 0; }

.q2 h1, .q2 h2, .q2 h3, .q2 h4 {
    font-family: "Nunito", Arial, sans-serif;
    color: var(--q-ink);
    line-height: 1.25;
    margin: 0 0 12px;
}
.q2 p { line-height: 1.75; margin: 0 0 16px; font-weight: 400; }
.q2 a { color: var(--q-blue); }
.q2 a:hover { color: var(--q-blue-dark); }
.q2 :focus-visible { outline: 3px solid var(--q-accent); outline-offset: 2px; border-radius: 4px; }

.q2-wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.q2-section { padding: 72px 0; background: #fff; }
.q2-section--alt { background: var(--q-bg); }
.q2-section--slate { background: var(--q-slate); color: rgba(255, 255, 255, .92); }
.q2-section--slate h2, .q2-section--slate h3 { color: #fff; }

.q2-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.q2-head h2 { font-size: clamp(27.2px, 3.2vw, 36.8px); font-weight: 600; }
.q2-head p { font-size: 16.8px; font-weight: 300; margin: 0; }
.q2-section--slate .q2-head p { color: rgba(255, 255, 255, .88); }

.q2-eyebrow {
    display: inline-block; font-size: 12.48px; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--q-accent); margin-bottom: 10px;
}
.q2-hero .q2-eyebrow { color: #b9c5ff; }

/* ---- Buttons -------------------------------------------------------- */
.q2-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; padding: 12px 26px; border-radius: 8px; border: 2px solid transparent;
    font-family: "Poppins", Arial, sans-serif; font-weight: 500; font-size: 16px; line-height: 1.2;
    text-decoration: none !important; cursor: pointer;
    transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.q2-btn:hover { transform: translateY(-2px); }
.q2-btn--primary { background: var(--q-blue); color: #fff !important; box-shadow: 0 4px 14px rgba(0, 105, 217, .35); }
.q2-btn--primary:hover { background: var(--q-blue-dark); }
.q2-btn--light { background: #fff; color: var(--q-slate) !important; }
.q2-btn--light:hover { background: #eef1f6; }
.q2-btn--ghost { background: transparent; color: #fff !important; border-color: rgba(255, 255, 255, .85); }
.q2-btn--ghost:hover { background: rgba(255, 255, 255, .14); }
.q2-btn--outline { background: transparent; color: var(--q-blue) !important; border-color: var(--q-blue); }
.q2-btn--outline:hover { background: var(--q-blue); color: #fff !important; }
.q2-btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Hero ----------------------------------------------------------- */
.q2-hero {
    position: relative; overflow: hidden; color: #fff;
    background: linear-gradient(135deg, var(--q-slate-deep) 0%, var(--q-slate) 100%);
    padding: 130px 0 76px;
}
.q2-hero::before {           /* soft accent glow, same #798eea as the theme icons */
    content: ""; position: absolute; width: 620px; height: 620px; right: -140px; top: -160px;
    background: radial-gradient(circle, rgba(121, 142, 234, .34) 0%, rgba(121, 142, 234, 0) 68%);
    pointer-events: none;
}
.q2-hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.q2-hero h1 { color: #fff; font-size: clamp(32px, 4.4vw, 50px); font-weight: 600; margin-bottom: 18px; }
.q2-hero .q2-lead { font-size: 18.4px; font-weight: 300; color: rgba(255, 255, 255, .92); max-width: 560px; margin-bottom: 30px; }
.q2-trust { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.q2-trust li { display: flex; align-items: center; gap: 8px; font-size: 14.72px; color: rgba(255, 255, 255, .9); }
.q2-trust svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--q-green); }

/* Phone frames (CSS only, wraps the real app screenshots) */
.q2-phone {
    margin: 0; border-radius: 34px; padding: 8px; background: #1d2431;
    box-shadow: 0 24px 60px rgba(10, 16, 30, .45), inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.q2-phone img { display: block; width: 100%; height: auto; border-radius: 27px; background: #fff; }
.q2-phones { position: relative; height: 560px; }
.q2-phones .q2-phone { position: absolute; width: 250px; }
.q2-phones .q2-phone:nth-child(1) { left: 6%; top: 0; transform: rotate(-3deg); }
.q2-phones .q2-phone:nth-child(2) { right: 4%; top: 56px; transform: rotate(3deg); }

/* ---- Highlights strip (own band, directly under the breadcrumb) ------- */
.q2-strip-wrap { background: #fff; padding: 36px 20px; }
.q2-strip {
    max-width: 1140px; margin: 0 auto; background: #fff; border-radius: var(--q-radius);
    border: 1px solid var(--q-line); box-shadow: var(--q-shadow); display: grid; grid-template-columns: repeat(4, 1fr);
}
.q2-strip-item { padding: 24px 22px; display: flex; gap: 14px; align-items: flex-start; }
.q2-strip-item + .q2-strip-item { border-left: 1px solid var(--q-line); }
.q2-strip-item strong { display: block; color: var(--q-ink); font-family: "Nunito", Arial, sans-serif; font-size: 16.8px; font-weight: 700; line-height: 1.3; }
.q2-strip-item span { display: block; font-size: 13.76px; line-height: 1.5; color: var(--q-muted); margin-top: 2px; }

.q2-ico {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(121, 142, 234, .14); color: var(--q-accent);
}
.q2-ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Cards / feature grid ------------------------------------------ */
.q2-grid { display: grid; gap: 24px; }
.q2-grid--3 { grid-template-columns: repeat(3, 1fr); }
.q2-grid--4 { grid-template-columns: repeat(4, 1fr); }
.q2-card {
    background: #fff; border-radius: var(--q-radius); padding: 30px 28px;
    box-shadow: var(--q-shadow); border: 1px solid rgba(229, 231, 235, .7);
    transition: transform .25s, box-shadow .25s;
}
.q2-card:hover { transform: translateY(-4px); box-shadow: var(--q-shadow-lift); }
.q2-card .q2-ico { margin-bottom: 18px; }
.q2-card h3 { font-size: 18.88px; font-weight: 700; }
.q2-card p { font-size: 15.36px; margin-bottom: 0; }
.q2-card .q2-more { display: inline-block; margin-top: 14px; font-weight: 500; font-size: 15.2px; text-decoration: none; }
.q2-card .q2-more:hover { text-decoration: underline; }

/* ---- Showcase rows --------------------------------------------------- */
.q2-show { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.q2-show + .q2-show { margin-top: 64px; }
.q2-show--flip .q2-show-media { order: -1; }
.q2-show h3 { font-size: clamp(22.4px, 2.6vw, 29.6px); font-weight: 600; }
.q2-show p.q2-show-lead { font-size: 16.8px; font-weight: 300; }
.q2-checks { list-style: none; margin: 20px 0 0; padding: 0; }
.q2-checks li { position: relative; padding: 0 0 12px 32px; line-height: 1.6; font-size: 15.68px; }
.q2-checks li::before {
    content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%;
    background: rgba(74, 202, 133, .16)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a9d62' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.q2-show-media {
    display: flex; justify-content: center; align-items: flex-start; gap: 22px;
    height: 430px; padding: 32px 20px 0; overflow: hidden; border-radius: 20px;
    background: linear-gradient(135deg, rgba(121, 142, 234, .12), rgba(73, 155, 234, .08));
}
.q2-section--alt .q2-show-media { background: linear-gradient(135deg, rgba(121, 142, 234, .16), rgba(73, 155, 234, .1)); }
/* Phones are cropped to the top of the screen and fade out at the bottom edge */
.q2-show-media .q2-phone {
    width: 46%; max-width: 212px; border-radius: 28px 28px 0 0; padding: 6px 6px 0; flex-shrink: 0;
    box-shadow: 0 16px 40px rgba(29, 36, 49, .28);
    -webkit-mask-image: linear-gradient(to bottom, #000 68%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 68%, transparent 100%);
}
.q2-show-media .q2-phone img { border-radius: 22px 22px 0 0; }
.q2-show-media .q2-phone:nth-child(2) { margin-top: 40px; }

/* ---- Action buttons (CTA groups on dark bands) ------------------------
   One primary (white, animated arrow chip) + glass secondaries with a leading icon.
   Used under the demo video and in the closing CTA panel. */
.q2-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 14px; }
.q2-action {
    display: inline-flex; align-items: center; gap: 12px; min-height: 56px; padding: 0 22px 0 18px;
    border-radius: 14px; border: 1px solid transparent; text-decoration: none !important;
    font-family: "Poppins", Arial, sans-serif; font-size: 15.5px; font-weight: 500; line-height: 1.2; letter-spacing: .01em;
    cursor: pointer; -webkit-tap-highlight-color: transparent;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.q2-action:hover { transform: translateY(-2px); }
.q2-action:active { transform: translateY(0); }
.q2-action:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.q2-action svg { width: 22px; height: 22px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.q2-action--primary {
    background: #fff; color: var(--q-slate-deep) !important; padding: 0 9px 0 24px; font-weight: 600;
    box-shadow: 0 8px 24px rgba(10, 16, 30, .28), inset 0 -2px 0 rgba(65, 79, 101, .08);
}
.q2-action--primary:hover { box-shadow: 0 12px 30px rgba(10, 16, 30, .36), inset 0 -2px 0 rgba(65, 79, 101, .08); color: var(--q-slate-deep) !important; }
.q2-action-chip {
    display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px;
    background: var(--q-blue); color: #fff; transition: transform .2s ease, background-color .2s ease;
}
.q2-action-chip svg { width: 20px; height: 20px; stroke-width: 2.2; }
.q2-action--primary:hover .q2-action-chip { transform: translateX(3px); background: var(--q-blue-dark); }

.q2-action--glass {
    background: rgba(255, 255, 255, .08); color: #fff !important; border-color: rgba(255, 255, 255, .26);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.q2-action--glass:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .55); color: #fff !important; box-shadow: 0 10px 26px rgba(10, 16, 30, .25); }
.q2-action-glyph {
    display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px;
    background: rgba(255, 255, 255, .12); transition: background-color .2s ease;
}
.q2-action-glyph svg { width: 19px; height: 19px; }
.q2-action--glass:hover .q2-action-glyph { background: rgba(255, 255, 255, .22); }

@media (max-width: 640px) {
    .q2-actions { flex-direction: column; }
    .q2-action { width: 100%; }
    .q2-action--primary { justify-content: space-between; }
}

/* ---- Video ----------------------------------------------------------- */
.q2-video { max-width: 880px; margin: 0 auto; }
.q2-video-frame { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; border-radius: var(--q-radius); box-shadow: 0 20px 60px rgba(10, 16, 30, .4); }
.q2-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.q2-video .q2-actions { margin-top: 34px; }

/* ---- How it works (stepper list) ------------------------------------- */
.q2-steps { list-style: none; margin: 0 auto; padding: 0; max-width: 900px; counter-reset: uc-step; }
.q2-step {
    display: grid; grid-template-columns: 44px 200px 1fr; column-gap: 20px; align-items: start;
    background: #fff; border-radius: 10px; padding: 20px 24px; margin-bottom: 14px;
    box-shadow: var(--q-shadow); border-left: 4px solid var(--q-accent);
}
.q2-step::before {
    counter-increment: uc-step; content: counter(uc-step);
    display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
    border-radius: 50%; background: var(--q-slate); color: #fff; font-family: "Nunito", Arial, sans-serif; font-weight: 700; font-size: 17px;
}
.q2-step h3 { font-size: 17.6px; font-weight: 700; margin: 8px 0 0; }
.q2-step p { font-size: 15.2px; line-height: 1.7; margin: 0; }
.q2 .q2-steps-note { text-align: center; margin: 30px auto 0; max-width: 720px; font-size: 15.68px; }

/* ---- Audience cards -------------------------------------------------- */
.q2-aud h3 { font-size: 17.6px; font-weight: 700; }
.q2-aud p { font-size: 14.88px; }

/* ---- FAQ (native <details>, no JS) ---------------------------------- */
.q2-faq { max-width: 860px; margin: 0 auto; }
.q2-faq details {
    background: #fff; border-radius: 10px; margin-bottom: 14px; box-shadow: var(--q-shadow);
    border-left: 4px solid var(--q-blue); overflow: hidden;
}
.q2-faq summary {
    cursor: pointer; list-style: none; padding: 18px 56px 18px 24px; position: relative; min-height: 48px;
    display: flex; align-items: center;
}
.q2-faq summary::-webkit-details-marker { display: none; }
.q2-faq summary h3 { margin: 0; font-size: 16.64px; font-weight: 700; color: #0b4a94; }
.q2-faq summary::after {
    content: ""; position: absolute; right: 22px; top: 50%; width: 10px; height: 10px; margin-top: -8px;
    border-right: 2px solid var(--q-muted); border-bottom: 2px solid var(--q-muted); transform: rotate(45deg); transition: transform .2s;
}
.q2-faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.q2-faq .q2-answer { padding: 0 24px 20px; }
.q2-faq .q2-answer p { margin: 0; font-size: 15.52px; }

/* ---- Related reading -------------------------------------------------- */
.q2-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 24px; max-width: 960px; margin: 0 auto; }
.q2-link {
    display: block; background: var(--q-bg); border-radius: 10px; padding: 18px 22px; text-decoration: none !important;
    box-shadow: var(--q-shadow); border-left: 4px solid var(--q-accent); transition: transform .2s, box-shadow .2s;
}
.q2-link:hover { transform: translateY(-2px); box-shadow: var(--q-shadow-lift); background: #fff; }
.q2-link strong { display: block; font-family: "Nunito", Arial, sans-serif; font-size: 17px; font-weight: 700; color: var(--q-ink); line-height: 1.35; margin-bottom: 4px; }
.q2-link:hover strong { color: var(--q-blue); }
.q2-link span { display: block; font-size: 14.4px; line-height: 1.6; color: var(--q-muted); }
.q2 .q2-more-guides { text-align: center; margin: 32px auto 0; max-width: 900px; font-size: 15.2px; line-height: 2; }
.q2-more-guides a { white-space: nowrap; }

/* ---- Final CTA (same slate rounded panel as the Solutions page) ------- */
.q2-cta { background: var(--q-slate); border-radius: 16px; padding: 60px 30px; text-align: center; color: rgba(255, 255, 255, .92); }
.q2-cta h2 { color: #fff; font-size: clamp(25.6px, 3vw, 33.6px); font-weight: 600; }
.q2-cta p { max-width: 560px; margin: 0 auto 28px; font-weight: 300; font-size: 17.28px; }
.q2-cta .q2-btn-row { justify-content: center; }
.q2-cta small { display: block; margin-top: 18px; font-size: 13.6px; color: rgba(255, 255, 255, .75); }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 991px) {
    .q2-section { padding: 64px 0; }
    .q2-hero { padding: 120px 0 96px; }
    .q2-hero-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .q2-hero .q2-lead { margin-left: auto; margin-right: auto; }
    .q2-hero .q2-btn-row, .q2-trust { justify-content: center; }
    .q2-phones { height: 470px; max-width: 460px; margin: 0 auto; width: 100%; }
    .q2-phones .q2-phone { width: 210px; }
    .q2-strip { grid-template-columns: repeat(2, 1fr); }
    .q2-strip-item:nth-child(3) { border-left: 0; }
    .q2-strip-item:nth-child(n+3) { border-top: 1px solid var(--q-line); }
    .q2-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .q2-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .q2-show { grid-template-columns: 1fr; gap: 36px; }
    .q2-show + .q2-show { margin-top: 72px; }
    .q2-show--flip .q2-show-media { order: 0; }
}
@media (max-width: 640px) {
    .q2-wrap { padding: 0 16px; }
    .q2-strip-wrap { padding: 24px 16px; }
    .q2-strip { grid-template-columns: 1fr; }
    .q2-strip-item + .q2-strip-item { border-left: 0; border-top: 1px solid var(--q-line); }
    .q2-grid--3, .q2-grid--4, .q2-links { grid-template-columns: 1fr; }
    .q2-step { grid-template-columns: 40px 1fr; padding: 18px 18px; }
    .q2-step p { grid-column: 1 / -1; margin-top: 10px; }
    .q2-phones { height: 400px; }
    .q2-phones .q2-phone { width: 172px; border-radius: 28px; padding: 6px; }
    .q2-phones .q2-phone img { border-radius: 22px; }
    .q2-phones .q2-phone:nth-child(2) { top: 40px; }
    .q2-btn-row { flex-direction: column; align-items: stretch; }
    .q2-btn { width: 100%; }
    .q2-show-media { gap: 12px; padding: 24px 12px 0; height: 340px; }
    .q2-show-media .q2-phone:nth-child(2) { margin-top: 28px; }
    .q2-cta { padding: 44px 20px; }
}
@media (prefers-reduced-motion: reduce) {
    .q2 *, .q2 *::before, .q2 *::after { transition: none !important; animation: none !important; }
    .q2-btn:hover, .q2-card:hover { transform: none; }
}

/* =====================================================================
   Shared components for the other redesigned pages (/home2, /products2,
   /blog2). Same tokens and .q2 scope as above.
   ===================================================================== */

/* ---- Compact page hero (products, blog) ------------------------------- */
.q2-hero--compact { padding: 128px 0 64px; text-align: center; }
.q2-hero--compact .q2-hero-inner { position: relative; max-width: 780px; margin: 0 auto; }
.q2-hero--compact .q2-lead { margin: 0 auto; }
.q2-hero--compact h1 { margin-bottom: 14px; }

/* ---- Badges ------------------------------------------------------------- */
.q2-badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px;
    font-size: 12.5px; font-weight: 600; letter-spacing: .02em; line-height: 1.5;
    background: rgba(74, 202, 133, .16); color: #1d7a49; margin-bottom: 14px;
}
.q2-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.q2-badge--soon { background: #fef3c7; color: #92400e; }

/* ---- Product panels ------------------------------------------------------ */
.q2-product { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.q2-product + .q2-product { margin-top: 80px; }
.q2-product--flip .q2-product-media { order: 2; }
.q2-product-media {
    border-radius: 18px; padding: 22px;
    background: linear-gradient(135deg, rgba(121, 142, 234, .16), rgba(73, 155, 234, .08));
}
.q2-product-media picture, .q2-product-media img { display: block; width: 100%; height: auto; }
.q2-product-media img { border-radius: 10px; box-shadow: 0 14px 34px rgba(29, 36, 49, .18); background: #fff; }
.q2-product h2, .q2-product h3 { font-size: clamp(26px, 3vw, 34px); font-weight: 700; margin-bottom: 14px; }
.q2-product h2 a, .q2-product h3 a { color: var(--q-ink); text-decoration: none; }
.q2-product h2 a:hover, .q2-product h3 a:hover { color: var(--q-blue); }
.q2-product .q2-product-lead { font-size: 16.5px; font-weight: 300; }
.q2-product .q2-checks { margin-top: 18px; }
.q2-product-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: 22px; }
.q2-product-actions img { height: 42px; width: auto; display: block; }
.q2-textlink { font-weight: 500; text-decoration: none; }
.q2-textlink:hover { text-decoration: underline; }

/* ---- Pillars (3 short facts) --------------------------------------------- */
.q2-pillar h3 { font-size: 18px; font-weight: 700; }
.q2-pillar p { font-size: 15.2px; margin-bottom: 0; }

/* ---- Numbered mini steps -------------------------------------------------- */
.q2-mini { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: q-mini; }
.q2-mini li {
    position: relative; background: #fff; border-radius: var(--q-radius); padding: 26px 22px; box-shadow: var(--q-shadow);
    border-top: 4px solid var(--q-accent);
}
.q2-mini li::before {
    counter-increment: q-mini; content: counter(q-mini);
    display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; margin-bottom: 14px;
    border-radius: 50%; background: var(--q-slate); color: #fff; font-family: "Nunito", Arial, sans-serif; font-weight: 700;
}
.q2-mini h3 { font-size: 17px; font-weight: 700; }
.q2-mini p { font-size: 14.6px; line-height: 1.65; margin: 0; }
.q2 .q2-note { text-align: center; margin: 28px auto 0; max-width: 640px; font-size: 15.2px; }

/* ---- Comparison table -------------------------------------------------------- */
.q2-table-wrap { overflow-x: auto; border-radius: var(--q-radius); box-shadow: var(--q-shadow); background: #fff; -webkit-overflow-scrolling: touch; }
.q2-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.q2-table caption { position: absolute; left: -9999px; }
.q2-table th, .q2-table td { padding: 15px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--q-line); font-size: 15px; line-height: 1.55; }
.q2-table thead th { background: var(--q-slate); color: #fff; font-family: "Nunito", Arial, sans-serif; font-size: 16px; font-weight: 700; border-bottom: 0; }
.q2-table tbody th { width: 22%; font-weight: 600; color: var(--q-ink); background: #fafbfc; }
.q2-table tbody tr:last-child th, .q2-table tbody tr:last-child td { border-bottom: 0; }
.q2-table td a { font-weight: 500; }

/* ---- Blog: filters, featured card, grid ---------------------------------------- */
.q2-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 34px; padding: 0; list-style: none; }
.q2-chip {
    appearance: none; -webkit-appearance: none; cursor: pointer; padding: 8px 16px; min-height: 40px; border-radius: 999px;
    border: 1px solid var(--q-line); background: #fff; color: var(--q-body);
    font-family: "Poppins", Arial, sans-serif; font-size: 14px; font-weight: 500; line-height: 1.2;
    transition: background-color .15s, color .15s, border-color .15s;
}
.q2-chip:hover { border-color: var(--q-accent); color: var(--q-ink); }
.q2-chip[aria-pressed="true"] { background: var(--q-slate); border-color: var(--q-slate); color: #fff; }
.q2-chip small { opacity: .7; font-size: 12px; margin-left: 4px; }
.q2-count { text-align: center; font-size: 14px; color: var(--q-muted); margin: -14px 0 26px; }

.q2-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.q2-post {
    display: flex; flex-direction: column; background: #fff; border-radius: var(--q-radius); overflow: hidden;
    box-shadow: var(--q-shadow); border: 1px solid rgba(229, 231, 235, .7); transition: transform .25s, box-shadow .25s;
}
.q2-post:hover { transform: translateY(-4px); box-shadow: var(--q-shadow-lift); }
.q2-post[hidden] { display: none; }
.q2-post-thumb {
    display: block; position: relative; aspect-ratio: 16 / 9; overflow: hidden; text-decoration: none;
    background: linear-gradient(135deg, rgba(121, 142, 234, .22), rgba(73, 155, 234, .1));
}
.q2-post-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.q2-post-thumb--portrait img {          /* tall phone screenshots: centered device crop */
    width: auto; height: 118%; margin: 12% auto 0; border-radius: 14px 14px 0 0;
    border: 4px solid #1d2431; border-bottom: 0; box-shadow: 0 10px 26px rgba(29, 36, 49, .3);
}
.q2-post-thumb--none { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--q-slate-deep), var(--q-slate)); }
.q2-post-thumb-label { color: rgba(255, 255, 255, .85); font-family: "Nunito", Arial, sans-serif; font-weight: 700; font-size: 19px; padding: 0 22px; text-align: center; line-height: 1.3; }
.q2-post-body { display: flex; flex-direction: column; flex-grow: 1; padding: 22px 24px 20px; }
.q2-post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; font-size: 13px; color: var(--q-muted); margin-bottom: 12px; }
.q2-pill { display: inline-block; padding: 3px 12px; border-radius: 999px; background: rgba(0, 105, 217, .1); color: var(--q-blue-dark); font-weight: 600; font-size: 12px; }
.q2-post-title { font-size: 19px; font-weight: 700; line-height: 1.35; margin: 0 0 10px; }
.q2-post-title a { color: var(--q-ink); text-decoration: none; }
.q2-post-title a:hover { color: var(--q-blue); }
.q2 .q2-post-excerpt { font-size: 14.6px; line-height: 1.65; color: var(--q-body); margin: 0 0 16px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.q2-post-foot { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--q-line); }
.q2-tags { display: flex; flex-wrap: wrap; gap: 5px; list-style: none; margin: 0; padding: 0; }
.q2-tags li { font-size: 11.5px; padding: 1px 9px; line-height: 1.7; border-radius: 999px; background: #f0f2f5; color: var(--q-muted); }
.q2-post-more { font-weight: 600; font-size: 14.4px; text-decoration: none; white-space: nowrap; }
.q2-post-more:hover { text-decoration: underline; }

/* featured (newest) post spans the grid */
.q2-post--feature { grid-column: 1 / -1; flex-direction: row; }
.q2-post--feature .q2-post-thumb { flex: 0 0 46%; aspect-ratio: auto; min-height: 320px; }
.q2-post--feature .q2-post-body { padding: 34px 38px; justify-content: center; }
.q2-post--feature .q2-post-title { font-size: clamp(24px, 2.6vw, 32px); }
.q2-post--feature .q2-post-excerpt { font-size: 16px; -webkit-line-clamp: 5; }
.q2-post--feature .q2-post-foot { margin-top: 18px; }
.q2-eyebrow-flag { display: inline-block; margin-bottom: 12px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--q-accent); }
.q2-empty { text-align: center; padding: 40px 0; }

/* ---- Responsive additions ---------------------------------------------------- */
@media (max-width: 991px) {
    .q2-hero--compact { padding: 112px 0 52px; }
    .q2-product { grid-template-columns: 1fr; gap: 32px; }
    .q2-product + .q2-product { margin-top: 64px; }
    .q2-product--flip .q2-product-media { order: 0; }
    .q2-mini { grid-template-columns: repeat(2, 1fr); }
    .q2-posts { grid-template-columns: repeat(2, 1fr); }
    .q2-post--feature { flex-direction: column; }
    .q2-post--feature .q2-post-thumb { flex-basis: auto; min-height: 0; aspect-ratio: 16 / 9; }
    .q2-post--feature .q2-post-body { padding: 26px 26px; }
}
@media (max-width: 640px) {
    .q2-mini { grid-template-columns: 1fr; }
    .q2-posts { grid-template-columns: 1fr; }
    .q2-product-media { padding: 14px; }
}

/* official App Store badge under the hero copy */
.q2-badge-link { display: inline-block; margin-top: 22px; line-height: 0; }
.q2-badge-link img { height: 42px; width: auto; display: block; }
@media (max-width: 991px) { .q2-badge-link { display: block; } .q2-badge-link img { margin: 0 auto; } }

/* =====================================================================
   Legal documents + long-form prose (legal pages, blog posts)
   ===================================================================== */
.q2-hero--tight { padding: 120px 0 44px; }
.q2-hero--tight h1 { font-size: clamp(26px, 3.4vw, 40px); }
.q2-hero--tight .q2-lead { font-size: 15.5px; margin-top: 4px; }

.q2-legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 44px; align-items: start; }
.q2-legal-layout > .q2-legal { max-width: 800px; }
.q2-toc { position: sticky; top: 24px; background: #fff; border-radius: var(--q-radius); box-shadow: var(--q-shadow); padding: 20px 18px; max-height: calc(100vh - 48px); overflow: auto; }
.q2-toc[hidden] { display: none; }
.q2 .q2-toc-title { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--q-muted); margin: 0 0 10px; }
.q2-toc ol { list-style: none; margin: 0; padding: 0; }
.q2-toc li a { display: block; padding: 6px 10px; margin: 0 -10px; border-radius: 6px; font-size: 14px; line-height: 1.4; color: var(--q-body); text-decoration: none; }
.q2-toc li a:hover { background: var(--q-bg); color: var(--q-blue); }

.q2-prose { font-size: 16px; line-height: 1.8; color: var(--q-body); }
.q2-legal { background: #fff; border-radius: var(--q-radius); box-shadow: var(--q-shadow); padding: 40px 44px; }
.q2-prose h2 { font-size: 26px; font-weight: 700; margin: 44px 0 14px; scroll-margin-top: 20px; }
.q2-prose h2:first-child, .q2-legal .privacy-section:first-child h2:first-child { margin-top: 0; }
.q2-prose h3 { font-size: 20px; font-weight: 700; margin: 30px 0 10px; }
.q2-prose h4 { font-size: 17px; font-weight: 700; margin: 24px 0 8px; }
.q2-prose p { font-size: 16px; line-height: 1.8; margin: 0 0 16px; font-weight: 400; }
.q2-prose ul, .q2-prose ol { margin: 0 0 18px; padding-left: 24px; }
.q2-prose li { font-size: 16px; line-height: 1.75; margin-bottom: 6px; }
.q2-prose a { text-decoration: underline; text-underline-offset: 2px; }
.q2-prose strong { color: var(--q-ink); font-weight: 600; }
.q2-prose blockquote { margin: 22px 0; padding: 14px 20px; border-left: 4px solid var(--q-accent); background: var(--q-bg); border-radius: 0 8px 8px 0; }
.q2-prose blockquote p:last-child { margin-bottom: 0; }
.q2-prose table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 15px; }
.q2-prose th, .q2-prose td { padding: 11px 14px; border: 1px solid var(--q-line); text-align: left; vertical-align: top; line-height: 1.5; }
.q2-prose thead th, .q2-prose th { background: #f1f3f6; color: var(--q-ink); font-weight: 700; }
.q2-prose img { max-width: 100%; height: auto; }
.q2-prose hr { border: 0; border-top: 1px solid var(--q-line); margin: 34px 0; }
/* the source documents carry inline rem font sizes, which are 10px-based in this theme */
.q2-prose [style*="rem"] { font-size: inherit !important; }
.q2-prose [style*="background: #f8f9fa"] { background: var(--q-bg) !important; border: 1px solid var(--q-line); }
.q2-legal .privacy-section, .q2-legal .terms-section, .q2-legal .impressum-section { margin-bottom: 8px; }

@media (max-width: 991px) {
    .q2-legal-layout { grid-template-columns: 1fr; gap: 24px; }
    .q2-toc { position: static; max-height: none; }
}
@media (max-width: 640px) {
    .q2-legal { padding: 26px 20px; }
    .q2-prose h2 { font-size: 23px; }
    .q2-prose table { display: block; overflow-x: auto; }
}

/* =====================================================================
   Pricing (plan cards + comparison table)
   ===================================================================== */
.q2-grid--2 { grid-template-columns: repeat(2, 1fr); }
.q2-choice { display: flex; flex-direction: column; align-items: flex-start; }
.q2-choice .q2-btn { margin-top: auto; }
.q2 .q2-from { font-size: 15px; margin: 4px 0 18px; }
.q2 .q2-from strong { color: var(--q-ink); font-size: 20px; font-family: "Nunito", Arial, sans-serif; }

.q2-plans { display: grid; gap: 22px; align-items: stretch; }
.q2-plans--4 { grid-template-columns: repeat(4, 1fr); }
.q2-plans--3 { grid-template-columns: repeat(3, 1fr); }
.q2-plan {
    position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--q-line);
    border-radius: 14px; padding: 30px 26px 26px; box-shadow: var(--q-shadow); transition: transform .25s, box-shadow .25s;
}
.q2-plan:hover { transform: translateY(-4px); box-shadow: var(--q-shadow-lift); }
.q2-plan--hl { border: 2px solid var(--q-blue); box-shadow: 0 14px 40px rgba(0, 105, 217, .18); }
.q2-plan-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 4px 16px; border-radius: 999px;
    background: var(--q-blue); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .04em; white-space: nowrap;
}
.q2-plan h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.q2-plan-price { margin: 0 0 20px; min-height: 58px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 2px 6px; }
.q2-cur { font-size: 22px; font-weight: 600; color: var(--q-ink); align-self: flex-start; margin-top: 6px; }
.q2-amt { font-family: "Nunito", Arial, sans-serif; font-size: 40px; font-weight: 800; line-height: 1; color: var(--q-ink); letter-spacing: -.02em; }
.q2-per { font-size: 15px; color: var(--q-muted); white-space: nowrap; }
.q2-custom { font-family: "Nunito", Arial, sans-serif; font-size: 30px; font-weight: 800; color: var(--q-ink); line-height: 1.3; align-self: center; }
.q2-plan-list { list-style: none; margin: 0 0 26px; padding: 0; flex-grow: 1; }
.q2-plan-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.6px; line-height: 1.5; padding: 7px 0; border-bottom: 1px solid #f0f2f5; }
.q2-plan-list li:last-child { border-bottom: 0; }
.q2-mark { flex: 0 0 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-top: 1px; }
.q2-plan-list .yes .q2-mark { background: rgba(74, 202, 133, .18); color: #1d7a49; }
.q2-plan-list .no { color: #98a0aa; }
.q2-plan-list .no .q2-mark { background: #f0f2f5; color: #b3bac3; }
.q2-plan .q2-btn { width: 100%; }
.q2-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.q2-table--plans { min-width: 640px; }
.q2-table--plans thead th { text-align: center; }
.q2-table--plans thead th:first-child { text-align: left; }
.q2-table--plans td { text-align: center; }
.q2-table--plans tbody th[scope="row"] { font-weight: 500; }
.q2-table--plans .q2-group th { background: #eef1f6; color: var(--q-ink); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; width: auto; }
.q2-table--plans .q2-hl { background: rgba(0, 105, 217, .06); }
.q2-table--plans thead .q2-hl { background: var(--q-blue); color: #fff; }
.q2-yes { color: #1d7a49; font-weight: 700; }
.q2-no { color: #b3bac3; }

@media (max-width: 1099px) { .q2-plans--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
    .q2-plans--4, .q2-plans--3, .q2-grid--2 { grid-template-columns: 1fr; }
    .q2-plan-badge { top: -12px; }
}

/* =====================================================================
   Content-page components: split sections, device shots, meta chips
   ===================================================================== */
.q2-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.q2-split--flip > :first-child { order: 2; }
.q2 .q2-lead-dark { font-size: 17px; font-weight: 300; }
.q2 .q2-split h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 700; }
.q2-shot { margin: 0; }
.q2-shot img { display: block; width: 100%; height: auto; border-radius: 12px; box-shadow: 0 16px 40px rgba(29, 36, 49, .16); background: #fff; }
.q2-shot figcaption { margin-top: 12px; text-align: center; font-size: 14px; color: var(--q-muted); }
.q2-shot--phone-solo { max-width: 300px; margin: 0 auto; }
.q2-devices { display: grid; grid-template-columns: 1.6fr 1.1fr .7fr; gap: 28px; align-items: end; }
.q2-devices .q2-shot--phone img, .q2-devices .q2-shot--tablet img { border-radius: 16px; }
.q2 .q2-note { text-align: center; margin: 28px auto 0; max-width: 720px; font-size: 15.5px; }
.q2-meta-chips { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; margin: 26px 0 0; padding: 0; }
.q2-meta-chips li { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px 6px 8px; border-radius: 999px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); color: #fff; font-size: 14px; }
.q2-meta-chips .q2-ico { width: 28px; height: 28px; background: rgba(255, 255, 255, .14); color: #fff; }
.q2-meta-chips .q2-ico svg { width: 16px; height: 16px; }
@media (max-width: 991px) {
    .q2-split { grid-template-columns: 1fr; gap: 32px; }
    .q2-split--flip > :first-child { order: 0; }
    .q2-devices { grid-template-columns: 1fr 1fr; }
    .q2-devices .q2-shot--web { grid-column: 1 / -1; }
}
@media (max-width: 640px) { .q2-devices { grid-template-columns: 1fr; } .q2-devices .q2-shot--phone { max-width: 220px; margin: 0 auto; } }

/* =====================================================================
   Blog post page
   ===================================================================== */
.q2-hero--post h1 { font-size: clamp(28px, 3.6vw, 44px); }
.q2 .q2-postmeta { font-size: 15px; margin-top: 10px; display: flex; flex-wrap: wrap; gap: 4px 10px; justify-content: center; color: rgba(255, 255, 255, .85); }
.q2-post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 48px; align-items: start; }
.q2-post-main { min-width: 0; max-width: 780px; }
.q2 .q2-back { font-size: 14.5px; margin: 0 0 22px; }
.q2-post-aside { position: sticky; top: 24px; display: grid; gap: 20px; }
.q2-side-cta { background: var(--q-slate); color: rgba(255, 255, 255, .92); border-radius: var(--q-radius); padding: 24px 22px; }
.q2-side-cta h4 { color: #fff; font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.q2 .q2-side-cta p { font-size: 14.5px; line-height: 1.6; color: rgba(255, 255, 255, .88); margin-bottom: 16px; }
.q2-side-cta .q2-btn { width: 100%; margin-bottom: 12px; }
.q2-side-cta .q2-textlink { color: #fff; font-size: 14.5px; display: inline-block; }
.q2-article { font-size: 17.5px; line-height: 1.8; }
.q2-article p, .q2-article li { font-size: 17.5px; line-height: 1.8; }
.q2-article .lead { font-size: 19px; line-height: 1.7; font-weight: 300; margin-bottom: 30px; }
.q2-article h2 { font-size: 30px; margin-top: 52px; }
.q2-article h3 { font-size: 22px; }
.q2-article .blog-image { margin: 34px 0; text-align: center; }
.q2-article .blog-image img { margin: 0 auto; border-radius: 12px; box-shadow: 0 12px 34px rgba(29, 36, 49, .16); }
.q2-article .blog-image-caption { margin-top: 12px; font-size: 14px; color: var(--q-muted); font-style: italic; line-height: 1.6; }
.q2-article .table-responsive { overflow-x: auto; margin: 26px 0; }
.q2-article .table-responsive table { margin: 0; min-width: 520px; }
.q2-article tr:nth-child(even) td { background: #fafbfc; }
.q2-article .use-case { background: var(--q-bg); border-left: 4px solid var(--q-blue); border-radius: 0 10px 10px 0; padding: 16px 22px; margin: 22px 0; }
.q2-article .use-case h4 { margin-top: 0; color: var(--q-blue); }
.q2-article .blog-cta, .q2-article [class*="blog-cta"] {
    background: var(--q-bg) !important; border: 1px solid var(--q-line); border-radius: 14px !important; padding: 30px !important; margin: 40px 0 !important; text-align: center;
}
.q2-article .blog-cta h3 { margin-top: 0; }
.q2-article .btn, .q2-prose .btn {
    display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 10px 24px; border-radius: 8px; margin: 4px 6px;
    font-family: "Poppins", Arial, sans-serif; font-weight: 500; font-size: 15.5px; text-decoration: none; border: 2px solid var(--q-blue); transition: background-color .2s, color .2s;
}
.q2-article .btn-primary, .q2-prose .btn-primary { background: var(--q-blue); color: #fff; }
.q2-article .btn-primary:hover, .q2-prose .btn-primary:hover { background: var(--q-blue-dark); border-color: var(--q-blue-dark); color: #fff; text-decoration: none; }
.q2-article .btn-outline-primary, .q2-prose .btn-outline-primary { background: transparent; color: var(--q-blue); }
.q2-article .btn-outline-primary:hover { background: var(--q-blue); color: #fff; text-decoration: none; }
.q2-article .table, .q2-article table.table { width: 100%; }
.q2-about { margin-top: 56px; padding: 30px 32px; background: var(--q-bg); border-radius: var(--q-radius); border: 1px solid var(--q-line); }
.q2-about h3:first-child { margin-top: 0; }
@media (max-width: 991px) {
    .q2-post-layout { grid-template-columns: 1fr; gap: 32px; }
    .q2-post-aside { position: static; order: -1; }
    .q2-post-aside .q2-toc { display: none; }
}
@media (max-width: 640px) { .q2-article, .q2-article p, .q2-article li { font-size: 16.5px; } .q2-article h2 { font-size: 25px; } .q2-about { padding: 22px 18px; } }

/* =====================================================================
   Contact
   ===================================================================== */
.q2-contact { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 36px; align-items: start; }
.q2-form-card { padding: 34px 34px 30px; }
.q2-form-card h2 { font-size: 26px; font-weight: 700; margin-bottom: 20px; }
.q2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.q2-field { display: block; margin-bottom: 16px; }
.q2-field > span { display: block; font-size: 14px; font-weight: 500; color: var(--q-ink); margin-bottom: 6px; }
.q2-field input, .q2-field textarea {
    display: block; width: 100%; padding: 12px 14px; font: 400 15.5px/1.5 "Poppins", Arial, sans-serif; color: var(--q-ink);
    background: #fff; border: 1px solid #cfd5dd; border-radius: 8px; box-shadow: none; height: auto; transition: border-color .15s, box-shadow .15s;
}
.q2-field textarea { resize: vertical; min-height: 150px; }
.q2-field input:focus, .q2-field textarea:focus { outline: none; border-color: var(--q-blue); box-shadow: 0 0 0 3px rgba(0, 105, 217, .18); }
.q2-field small { display: block; margin-top: 6px; font-size: 13px; color: var(--q-muted); }
.q2-alert { border-radius: 10px; padding: 14px 18px; margin-bottom: 22px; font-size: 15px; line-height: 1.5; }
.q2-alert--ok { background: rgba(74, 202, 133, .14); border: 1px solid rgba(29, 122, 73, .35); color: #14603a; }
.q2-alert--err { background: #fdecea; border: 1px solid #f1b5ae; color: #8a1f14; }
.q2-side-h { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.q2-whatsapp { display: flex; align-items: center; gap: 14px; padding: 16px 20px; margin-bottom: 18px; border-radius: 12px; background: #e9f9ef; border: 1px solid rgba(37, 211, 102, .45); color: #0f6b39; font-weight: 600; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.q2-whatsapp:hover { transform: translateY(-2px); box-shadow: var(--q-shadow-lift); color: #0f6b39; }
.q2-whatsapp .q2-ico { background: rgba(37, 211, 102, .2); color: #128c4a; }
.q2-info h3 { font-size: 19px; font-weight: 700; }
.q2-info p { font-size: 15px; margin-bottom: 14px; }
.q2 .q2-info-note { color: var(--q-muted); margin-bottom: 0; }
@media (max-width: 991px) { .q2-contact { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .q2-form-row { grid-template-columns: 1fr; gap: 0; } .q2-form-card { padding: 24px 20px; } }

/* link colours that must beat the generic `.q2 a` rule */
.q2 a.q2-whatsapp, .q2 a.q2-whatsapp:hover { color: #0f6b39; }
.q2 .q2-side-cta a.q2-textlink { color: #fff; }

/* UtilityControl page: stacked feature blocks, platform tiles, article cards */
.q2-feat + .q2-feat { margin-top: 38px; }
.q2-feat h3 { margin-bottom: 8px; }
.q2-feat .q2-checks { margin-top: 14px; }
.q2-plat { display: flex; align-items: center; gap: 18px; padding: 24px 26px; }
.q2-plat h3 { font-size: 17px; margin-bottom: 4px; }
.q2 .q2-plat p { font-size: 14.4px; line-height: 1.55; margin: 0 0 8px; }
.q2-plat img { height: 40px; width: auto; display: block; margin-top: 6px; }
.q2-soon { display: inline-block; padding: 3px 12px; border-radius: 999px; background: #fef3c7; color: #92400e; font-size: 12px; font-weight: 600; }
.q2-post-card h3 { font-size: 17.5px; font-weight: 700; }
.q2-post-card h3 a { color: var(--q-ink); text-decoration: none; }
.q2-post-card h3 a:hover { color: var(--q-blue); }
.q2-post-card p { font-size: 14.8px; }
.q2-post-card { display: flex; flex-direction: column; }
.q2-post-card p { flex-grow: 1; }
