/* =========================================================================
   Global Quotes — Main Stylesheet
   Brand colors: #0D5EB4 primary · #45D8E0 accent
   Fonts: Josefin Sans (display) · Poppins (body)
   ========================================================================= */

:root {
    --gq-primary:         #0D5EB4;
    --gq-primary-600:     #0A4A91;
    --gq-primary-100:     #E4EFFA;
    --gq-accent:          #45D8E0;
    --gq-accent-600:      #2BB8C0;
    --gq-accent-100:      #E0F9FB;
    --gq-ink:             #0B1B2B;
    --gq-ink-2:           #223042;
    --gq-muted:           #5B6B7B;
    --gq-muted-2:         #8A99A8;
    --gq-bg:              #FFFFFF;
    --gq-bg-alt:          #F4F8FC;
    --gq-bg-dark:         #0B1B2B;
    --gq-border:          #E2E8F0;
    --gq-border-strong:   #C7D2DE;
    --gq-danger:          #D64545;
    --gq-success:         #1F8F5C;

    --gq-radius-sm:       8px;
    --gq-radius:          14px;
    --gq-radius-lg:       22px;
    --gq-radius-xl:       28px;
    --gq-shadow-sm:       0 2px 6px rgba(11, 27, 43, .05);
    --gq-shadow:          0 10px 25px -10px rgba(11, 27, 43, .18);
    --gq-shadow-lg:       0 30px 60px -20px rgba(11, 27, 43, .25);
    --gq-shadow-brand:    0 20px 45px -15px rgba(13, 94, 180, .35);

    --gq-font-body:       'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --gq-font-display:    'Josefin Sans', 'Poppins', system-ui, sans-serif;

    --gq-container:       1200px;
    --gq-container-wide:  1320px;
    --gq-gutter:          clamp(1rem, 2.5vw, 2rem);

    --gq-transition:      200ms ease;
    --gq-ease-out:        cubic-bezier(.2, .8, .2, 1);
}

/* --------------------------------------------------------------------- */
/* Reset & base                                                           */
/* --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--gq-font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gq-ink);
    background: var(--gq-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gq-primary); text-decoration: none; transition: color var(--gq-transition); }
a:hover, a:focus-visible { color: var(--gq-accent-600); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid rgba(69, 216, 224, .55);
    outline-offset: 2px;
    border-radius: 6px;
}
ul, ol { padding: 0; margin: 0; list-style: none; }
p { margin: 0 0 1em; }

body { font-size: 17px; line-height: 1.7; }

h1, h2, h3, h4, h5 {
    font-family: var(--gq-font-display);
    font-weight: 800;
    letter-spacing: -.015em;
    color: var(--gq-ink);
    line-height: 1.1;
    margin: 0 0 .55em;
}
h1 { font-size: clamp(2.75rem, 5.2vw, 4.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 700; }
h5 { font-size: 1.02rem; font-weight: 700; }

p     { font-size: 1.03rem; }
.gq-hero__lead,
.gq-section-heading__lead {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.65;
}

small { font-size: .9rem; color: var(--gq-muted); }

.gq-container {
    width: 100%;
    max-width: var(--gq-container);
    margin: 0 auto;
    padding: 0 var(--gq-gutter);
}

.gq-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}
.gq-section--alt { background: var(--gq-bg-alt); }
.gq-section > .gq-container { position: relative; z-index: 1; }

.gq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--gq-font-display);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gq-primary);
    margin: 0 0 1rem;
}
.gq-eyebrow--light { color: rgba(255, 255, 255, .9); }
.gq-eyebrow--hero  { font-size: .82rem; letter-spacing: .18em; }

.gq-section-heading { text-align: center; max-width: 780px; margin: 0 auto 3rem; }
.gq-section-heading__title { margin: 0 0 1rem; }
.gq-section-heading__lead  { color: var(--gq-muted); font-size: 1.05rem; margin: 0; }

.gq-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    background: var(--gq-primary-100);
    color: var(--gq-primary-600);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
}
.gq-pill--accent { background: var(--gq-accent-100); color: var(--gq-accent-600); }
.gq-pill--soft   { background: rgba(13, 94, 180, .08); color: var(--gq-primary); }

/* --------------------------------------------------------------------- */
/* Buttons                                                                */
/* --------------------------------------------------------------------- */
.gq-btn {
    --btn-pad-y: .85rem;
    --btn-pad-x: 1.6rem;
    --btn-fs: .95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: var(--btn-pad-y) var(--btn-pad-x);
    font-family: var(--gq-font-body);
    font-weight: 600;
    font-size: var(--btn-fs);
    line-height: 1;
    color: #fff;
    background: var(--gq-primary);
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform var(--gq-transition), box-shadow var(--gq-transition), background-color var(--gq-transition), color var(--gq-transition), border-color var(--gq-transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.gq-btn:hover, .gq-btn:focus-visible {
    background: var(--gq-primary-600);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--gq-shadow-brand);
}
.gq-btn:active { transform: translateY(0); }

.gq-btn--primary { background: var(--gq-primary); color: #fff; box-shadow: 0 10px 25px -14px rgba(13, 94, 180, .55); }
.gq-btn--accent  { background: var(--gq-accent); color: var(--gq-ink); box-shadow: 0 10px 25px -14px rgba(69, 216, 224, .6); }
.gq-btn--accent:hover { background: var(--gq-accent-600); color: #fff; }

.gq-btn--ghost {
    background: transparent;
    color: var(--gq-primary);
    border-color: var(--gq-border-strong);
}
.gq-btn--ghost:hover {
    background: var(--gq-primary-100);
    color: var(--gq-primary-600);
    border-color: var(--gq-primary);
    box-shadow: none;
}

.gq-btn--link {
    background: transparent; color: var(--gq-primary); padding: .5rem .25rem; border-radius: 6px;
    box-shadow: none;
}
.gq-btn--link:hover { background: transparent; color: var(--gq-accent-600); transform: none; box-shadow: none; }
.gq-btn--light { color: #fff; }
.gq-btn--light:hover { color: var(--gq-accent); background: transparent; }

.gq-btn--sm  { --btn-pad-y: .55rem; --btn-pad-x: 1.1rem; --btn-fs: .85rem; }
.gq-btn--lg  { --btn-pad-y: 1rem;   --btn-pad-x: 1.9rem; --btn-fs: 1rem; }
.gq-btn--xl  { --btn-pad-y: 1.15rem; --btn-pad-x: 2.25rem; --btn-fs: 1.05rem; }
.gq-btn--block { display: flex; width: 100%; }

/* --------------------------------------------------------------------- */
/* Announcement bar                                                       */
/* --------------------------------------------------------------------- */
.gq-announcement {
    background: linear-gradient(100deg, var(--gq-primary) 0%, var(--gq-accent) 120%);
    color: #fff;
    font-size: .88rem;
    position: relative;
    z-index: 82;
}
@media (max-width: 640px) {
    /*
     * Compact single-line announcement on phones: smaller type, tight
     * padding, no wrapping, no CTA link. The strip should feel like a thin
     * utility ribbon — not a second header row.
     */
    .gq-announcement { font-size: .72rem; line-height: 1.15; }
    .gq-announcement .gq-container {
        padding: .3rem 12px;
        gap: .4rem;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .gq-announcement p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 0 1 auto;
        min-width: 0;
    }
    .gq-announcement__pulse { width: 6px; height: 6px; flex: 0 0 auto; }
    .gq-announcement__cta { display: none; } /* hide CTA link on phones — prevents wrap */
}
.gq-announcement .gq-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: .55rem;
    padding-bottom: .55rem;
    flex-wrap: wrap;
    text-align: center;
}
.gq-announcement p { margin: 0; }
.gq-announcement__pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .9);
    animation: gq-pulse 1.8s infinite;
}
.gq-announcement__cta {
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    padding-bottom: 1px;
}
.gq-announcement__cta:hover { color: #fff; border-color: #fff; }

@keyframes gq-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .9); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* --------------------------------------------------------------------- */
/* Header — Apple-glass rounded pill (default) → full-width bar (sticky)  */
/* --------------------------------------------------------------------- */
:root { --gq-header-offset: 120px; }

.gq-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    transition: padding .45s cubic-bezier(.2,.7,.2,1);
    pointer-events: none;
}
.gq-header-wrap > * { pointer-events: auto; }
.gq-header-wrap--sticky { position: fixed; top: 0; left: 0; right: 0; }
.gq-header-wrap--sticky.is-stuck { position: fixed; top: 0; left: 0; right: 0; }
/* Play nicely with the WordPress admin bar when logged-in. */
.admin-bar .gq-header-wrap,
.admin-bar .gq-header-wrap--sticky,
.admin-bar .gq-header-wrap--sticky.is-stuck { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .gq-header-wrap,
    .admin-bar .gq-header-wrap--sticky,
    .admin-bar .gq-header-wrap--sticky.is-stuck { top: 46px; }
}
.gq-header {
    position: relative;
    max-width: min(1180px, calc(100vw - clamp(16px, 4vw, 40px)));
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .8) inset,
        0 10px 30px -15px rgba(11, 27, 43, .18),
        0 4px 10px -6px rgba(11, 27, 43, .08);
    transition:
        max-width .5s cubic-bezier(.2,.7,.2,1),
        border-radius .5s cubic-bezier(.2,.7,.2,1),
        background-color .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        margin .35s ease;
}
.gq-header-wrap.is-stuck .gq-header {
    max-width: none;
    margin: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, .94);
    border-left-color: transparent;
    border-right-color: transparent;
    border-top-color: transparent;
    border-bottom-color: var(--gq-border);
    box-shadow: 0 10px 30px -20px rgba(11, 27, 43, .2);
}
.gq-header-wrap.is-stuck .gq-announcement { display: none; }
.gq-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: .65rem;
    padding-bottom: .65rem;
    transition: padding .4s cubic-bezier(.2,.7,.2,1);
}
.gq-header-wrap.is-stuck .gq-header__inner {
    padding-top: .55rem;
    padding-bottom: .55rem;
}
.gq-header__brand img,
.gq-header__logo-fallback img,
.custom-logo { max-height: 44px; width: auto; transition: max-height .35s ease; }
.gq-header-wrap.is-stuck .gq-header__brand img,
.gq-header-wrap.is-stuck .gq-header__logo-fallback img,
.gq-header-wrap.is-stuck .custom-logo { max-height: 40px; }
.gq-header__brand a { display: inline-flex; }

/* Nav ---------------------------------------------------------------- */
.gq-nav { display: flex; align-items: center; gap: 1rem; position: relative; }
.gq-nav__menu { display: flex; gap: .15rem; align-items: center; }
.gq-nav__menu > li { position: relative; }
.gq-nav__menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    color: var(--gq-ink);
    font-weight: 500;
    font-size: .92rem;
    letter-spacing: .005em;
    transition: color var(--gq-transition), background-color var(--gq-transition);
}
.gq-nav__menu > li > a .gq-nav__label {
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}
.gq-nav__menu > li > a .gq-nav__label::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gq-primary) 0%, var(--gq-accent) 100%);
    transition: left .28s ease, right .28s ease, opacity .28s ease;
    opacity: 0;
}
.gq-nav__menu > li > a:hover .gq-nav__label::after,
.gq-nav__menu > li > a:focus-visible .gq-nav__label::after,
.gq-nav__menu > li.current-menu-item > a .gq-nav__label::after,
.gq-nav__menu > li.current-menu-ancestor > a .gq-nav__label::after,
.gq-nav__menu > li.gq-mega-trigger.is-open > a .gq-nav__label::after {
    left: 0; right: 0; opacity: 1;
}
.gq-nav__menu > li > a:hover,
.gq-nav__menu > li.current-menu-item > a,
.gq-nav__menu > li.current-menu-ancestor > a { color: var(--gq-primary-600); }

/* Legacy submenu (kept for non-mega items) */
.gq-nav__menu .sub-menu {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid var(--gq-border);
    border-radius: var(--gq-radius);
    padding: .5rem;
    min-width: 220px;
    box-shadow: var(--gq-shadow);
    z-index: 60;
}
.gq-nav__menu li:hover > .sub-menu,
.gq-nav__menu li:focus-within > .sub-menu { display: block; }
.gq-nav__menu .sub-menu a { padding: .5rem .75rem; border-radius: 10px; display: block; color: var(--gq-ink); font-size: .9rem; }
.gq-nav__menu .sub-menu a:hover { background: var(--gq-primary-100); color: var(--gq-primary); }

.gq-nav__toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--gq-border-strong);
    padding: .5rem .65rem;
    border-radius: 12px;
    cursor: pointer;
}
.gq-nav__bars { display: inline-flex; flex-direction: column; gap: 4px; width: 20px; }
.gq-nav__bars i { display: block; height: 2px; background: var(--gq-ink); border-radius: 2px; transition: transform var(--gq-transition), opacity var(--gq-transition); }

.gq-header__actions { display: flex; align-items: center; gap: .55rem; }
.gq-header__phone {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .75rem .45rem .5rem;
    border-radius: 999px;
    background: rgba(37, 211, 102, .12);
    color: #0f766e;
    font-weight: 600;
    font-size: .88rem;
    border: 1px solid rgba(37, 211, 102, .35);
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.gq-header__phone:hover { transform: translateY(-1px); background: rgba(37, 211, 102, .18); box-shadow: 0 8px 20px -14px rgba(37, 211, 102, .6); }
.gq-header__phone-ico { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.06); }
.gq-header__phone-ico img { width: 16px; height: 16px; display: block; }
.gq-header__phone-num { display: inline; }
.gq-header__cta { transition: transform .25s ease, box-shadow .25s ease; }
.gq-header__cta:hover { transform: translateY(-1px); }

@media (max-width: 1040px) {
    .gq-header { max-width: calc(100% - 32px); }
}
@media (max-width: 960px) {
    .gq-header-wrap { padding: 4px 8px 0; }
    .gq-header__actions .gq-header__phone .gq-header__phone-num { display: none; }
    .gq-header__actions .gq-header__phone { padding: .4rem; }
    .gq-nav__toggle { display: inline-flex; }
    /*
     * Nav: when the menu is collapsed we need `.gq-nav` to keep its own
     * stacking context so the dropdown slides out correctly on top of the
     * header. We also absolutely-anchor the menu to the header wrap instead
     * of the nav itself to avoid sub-pixel clipping against the pill border.
     */
    .gq-nav__menu {
        position: fixed;
        top: calc(var(--gq-header-offset, 120px) + 4px);
        left: 12px; right: 12px;
        flex-direction: column;
        background: #fff;
        border: 1px solid var(--gq-border);
        border-radius: 18px;
        padding: .75rem;
        gap: .15rem;
        display: none;
        box-shadow: var(--gq-shadow-lg);
        z-index: 95;
        max-height: calc(100vh - var(--gq-header-offset, 120px) - 24px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .gq-nav.is-open .gq-nav__menu { display: flex; animation: gq-nav-slide .25s ease both; }
    .gq-nav__menu > li { width: 100%; }
    .gq-nav__menu > li > a { padding: .7rem .9rem; border-radius: 12px; width: 100%; }
    .gq-nav__menu > li > a .gq-nav__label::after { display: none; }
    .gq-nav__menu > li > a:hover,
    .gq-nav__menu > li.current-menu-item > a { background: var(--gq-primary-100); }
    .gq-nav__menu .sub-menu { position: static; box-shadow: none; border: 0; padding-left: 1rem; display: block; }
}
@keyframes gq-nav-slide {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------- */
/* Mobile header: hide heavy CTA, tighten spacing, keep sticky behaviour  */
/* --------------------------------------------------------------------- */
@media (max-width: 640px) {
    /* Hide the full "Get a Quote" CTA on phones — the WhatsApp chip +
       hamburger already serve the primary conversion path, and the extra
       pill button made the header nearly 180px tall. */
    .gq-header__cta { display: none !important; }
    .gq-header__actions { gap: .35rem; }
    .gq-header {
        max-width: calc(100% - 14px);
        margin: 6px auto 0;
        border-radius: 18px;
    }
    .gq-header__inner { padding-top: .45rem; padding-bottom: .45rem; gap: .55rem; }
    .gq-header__brand img,
    .gq-header__logo-fallback img,
    .custom-logo { max-height: 34px; }
    .gq-header-wrap.is-stuck .gq-header {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }
    /* Once stuck, squash the header even tighter so the whole chrome is
       ~52px tall — matches native mobile patterns. */
    .gq-header-wrap.is-stuck .gq-header__inner {
        padding-top: .35rem;
        padding-bottom: .35rem;
    }
    .gq-nav__toggle { padding: .35rem .5rem; }
}

/* Mega menu --------------------------------------------------------- */
.gq-mega {
    position: absolute;
    left: 0; right: 0;
    top: calc(100% + 10px);
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 30px 60px -25px rgba(11, 27, 43, .25);
    border-radius: 24px;
    padding: 1.5rem clamp(1rem, 2vw, 1.75rem);
    z-index: 90;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: none;
    max-width: 1180px;
    margin: 0 auto;
}
.gq-header-wrap.is-stuck .gq-mega {
    max-width: none;
    border-radius: 0 0 22px 22px;
    top: 100%;
}
.gq-mega.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.gq-mega__inner {
    display: grid;
    grid-template-columns: minmax(240px, 300px) 1fr;
    gap: clamp(1.25rem, 2vw, 2.25rem);
    align-items: start;
}
.gq-mega__lead .gq-eyebrow { color: var(--gq-primary-600); }
.gq-mega__title { font-size: clamp(1.15rem, 1.4vw, 1.4rem); line-height: 1.25; margin: .35rem 0 .5rem; }
.gq-mega__desc { color: var(--gq-muted); font-size: .92rem; margin: 0 0 .8rem; }
.gq-mega__all {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--gq-primary-600);
    font-weight: 600;
    font-size: .9rem;
    transition: gap .25s ease;
}
.gq-mega__all:hover { gap: .55rem; }
.gq-mega__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem .75rem;
}
.gq-mega__tile {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .8rem;
    padding: .7rem .9rem;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
    color: var(--gq-ink);
}
.gq-mega__tile:hover,
.gq-mega__tile:focus-visible {
    background: linear-gradient(180deg, var(--gq-primary-100) 0%, rgba(248, 250, 253, .6) 100%);
    border-color: rgba(13, 94, 180, .18);
    transform: translateY(-1px);
}
.gq-mega__tile-ico {
    width: 36px; height: 36px; display: grid; place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gq-primary) 0%, var(--gq-accent) 100%);
    color: #fff;
    box-shadow: 0 8px 18px -10px rgba(13,94,180,.6);
}
.gq-mega__tile-ico svg { color: #fff; }
.gq-mega__tile-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.gq-mega__tile-title { font-weight: 600; font-size: .92rem; color: var(--gq-ink); }
.gq-mega__tile-desc { font-size: .8rem; color: var(--gq-muted); line-height: 1.35; }
.gq-mega__tile-arrow { color: var(--gq-primary); opacity: 0; transform: translateX(-4px); transition: opacity .25s ease, transform .25s ease; font-size: 1.1rem; }
.gq-mega__tile:hover .gq-mega__tile-arrow { opacity: 1; transform: translateX(0); }

@media (max-width: 960px) {
    .gq-mega { position: static; box-shadow: none; background: transparent; border: 0; padding: .5rem 0 0; }
    .gq-mega__inner { grid-template-columns: 1fr; gap: .75rem; }
    .gq-mega__lead { display: none; }
    .gq-mega__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------- */
/* Hero                                                                   */
/* --------------------------------------------------------------------- */
.gq-hero {
    position: relative;
    overflow: hidden;
    /*
     * Top padding = rendered header height (published by JS as
     * `--gq-header-offset`) + a small gap, so the hero content starts just
     * below the pinned announcement/header pill no matter how tall it is.
     */
    padding: calc(var(--gq-header-offset, 120px) + clamp(1rem, 2.5vw, 1.75rem)) 0 clamp(3.5rem, 6vw, 5.25rem);
    isolation: isolate;
    background:
        radial-gradient(80% 60% at 80% 0%, rgba(69, 216, 224, .22) 0%, transparent 60%),
        radial-gradient(70% 60% at 0% 100%, rgba(13, 94, 180, .14) 0%, transparent 60%),
        linear-gradient(180deg, #fff 0%, #F6FAFE 100%);
}
/*
 * Ensure non-hero first sections aren't hidden behind the overlay header.
 * We target the direct children of `.site-main` so the hero-first `front-page`
 * (which handles its own offset via `.gq-hero`) is never double-padded.
 */
.site-main > article:first-child,
.site-main > .gq-section:first-child,
.site-main > header.gq-single__header:first-child,
.site-main > .gq-archive__head:first-child,
.site-main > .gq-page-hero:first-child {
    padding-top: calc(var(--gq-header-offset, 110px) + clamp(1rem, 2vw, 2rem));
}
/* The vertical CPT wraps its first section in `.gq-section`, so the rule
   above already handles it — no extra rule needed here. */
.gq-hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.gq-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .35;
}
.gq-hero__blob--1 {
    width: 420px; height: 420px; background: var(--gq-accent); top: -100px; right: -80px;
    animation: gq-float 16s ease-in-out infinite;
}
.gq-hero__blob--2 {
    width: 380px; height: 380px; background: var(--gq-primary); bottom: -120px; left: -80px;
    animation: gq-float 18s ease-in-out infinite reverse;
}
.gq-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(13, 94, 180, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 94, 180, .05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    opacity: .6;
}
.gq-hero__watermark {
    position: absolute;
    top: 12%;
    right: -80px;
    width: clamp(320px, 40vw, 520px);
    height: auto;
    opacity: .05;
    filter: saturate(1.1);
    pointer-events: none;
    user-select: none;
    animation: gq-float 22s ease-in-out infinite;
}
@media (max-width: 960px) { .gq-hero__watermark { display: none; } }
@keyframes gq-float {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(30px, -20px); }
}

.gq-hero__inner {
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: center;
}
@media (min-width: 1200px) {
    .gq-hero__inner { grid-template-columns: minmax(0, 1fr) minmax(520px, 1.25fr); }
}
.gq-hero__form {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: start;
    /*
     * Push the form card down slightly on desktop so it visually rests
     * between the headline and trust-row on the left, rather than hugging
     * the top of the hero. The mobile override zeroes this (see below).
     */
    padding-top: clamp(1rem, 3vw, 2.25rem);
}
.gq-hero__content { min-width: 0; }

/*
 * Recognition / compliance badges shown directly under the lead form.
 * A smaller, polished row — cap the width tight so the badges read as a
 * secondary trust signal without competing with the form itself.
 */
.gq-hero__badges {
    margin: 0;
    padding: .35rem 0 0;
    display: flex;
    justify-content: center;
}
.gq-hero__badges img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    opacity: .9;
    transition: opacity .3s ease, transform .3s ease;
}
.gq-hero__badges:hover img { opacity: 1; }
.gq-hero__title {
    font-size: clamp(2.4rem, 4.8vw, 3.9rem);
    margin: 0 0 1.1rem;
    background: linear-gradient(100deg, var(--gq-ink) 0%, var(--gq-primary) 60%, var(--gq-accent-600) 110%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gq-hero__lead {
    font-size: 1.1rem;
    color: var(--gq-muted);
    max-width: 56ch;
    margin-bottom: 1.5rem;
}
.gq-pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gq-accent);
    box-shadow: 0 0 0 0 rgba(69, 216, 224, .9);
    animation: gq-pulse 1.8s infinite;
}
.gq-hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.8rem 0 2rem; }
.gq-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gq-border);
}
.gq-hero__metrics strong {
    display: block;
    font-family: var(--gq-font-display);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--gq-primary);
    line-height: 1;
    margin-bottom: .25rem;
}
.gq-hero__metrics span { font-size: .85rem; color: var(--gq-muted); }

.gq-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    align-items: center;
    margin: 1.25rem 0;
    padding: .75rem 1rem;
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--gq-border);
    border-radius: var(--gq-radius-lg);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.gq-trust-row__item {
    display: inline-flex; align-items: center; gap: .45rem;
    font-size: .85rem; font-weight: 600; color: var(--gq-ink-2);
}
.gq-trust-row__item--stars { gap: .5rem; }
.gq-trust-row__item svg { color: var(--gq-accent-600); }

.gq-stars { display: inline-flex; gap: 2px; color: #F5B700; }
.gq-star.is-off { color: var(--gq-border-strong); }

@media (max-width: 1040px) {
    .gq-hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 2.25rem); }
}
/*
 * Tablet + mobile: FORCE a single-column, two-row layout. We use
 * `!important` here because the viewport-size media queries below would
 * otherwise lose to an equally-specific `.gq-hero__inner` rule elsewhere in
 * the cascade, and we want this to be unconditionally true on screens
 * narrower than 960px (the breakpoint at which the form starts to cramp).
 */
@media (max-width: 960px) {
    .gq-hero__inner {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: clamp(1.5rem, 5vw, 2.25rem);
        align-items: stretch;
    }
    .gq-hero__content { order: 1; text-align: left; }
    .gq-hero__form    { order: 2; margin-top: 0; padding-top: 0; }
    .gq-hero__title   { font-size: clamp(2rem, 7vw, 2.75rem); }
    .gq-hero__lead    { font-size: 1rem; }
    .gq-hero__metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }
    .gq-hero__metrics strong { font-size: 1.35rem; }
    .gq-hero__badges img { max-width: 320px; }
}
@media (max-width: 640px) {
    .gq-hero {
        /* Tighter vertical rhythm and consistent left/right gutter alignment
           with the `.gq-container` utility (16px on narrow viewports). */
        padding: calc(var(--gq-header-offset, 120px) + .75rem) 0 2.75rem;
    }
    .gq-hero__inner { gap: 1.5rem; }
    .gq-hero__title { font-size: clamp(1.85rem, 8.5vw, 2.35rem); line-height: 1.15; margin-bottom: .75rem; }
    .gq-hero__lead  { font-size: .98rem; margin-bottom: 1rem; }
    .gq-hero__metrics { grid-template-columns: 1fr; }
    .gq-hero__metrics strong { font-size: 1.5rem; }
    .gq-hero__metrics > div { padding: .6rem 0; border-bottom: 1px solid var(--gq-border); }
    .gq-hero__metrics > div:last-child { border-bottom: 0; }
    .gq-trust-row { padding: .55rem .7rem; gap: .4rem .8rem; }
    .gq-trust-row__item { font-size: .8rem; }
    .gq-leadform--compact { padding: .85rem .85rem .95rem; border-radius: 18px; }
    .gq-leadform--compact .gq-leadform__brandmark { top: -18px; width: 42px; height: 42px; border-radius: 12px; }
    .gq-leadform--compact .gq-leadform__brandmark img { width: 26px; height: 26px; }
    .gq-hero__badges { padding-top: .1rem; }
    .gq-hero__badges img { max-width: 240px; opacity: .95; }
}

/* --------------------------------------------------------------------- */
/* Lead form                                                              */
/* --------------------------------------------------------------------- */
.gq-leadform {
    background: #fff;
    border: 1px solid var(--gq-border);
    border-radius: var(--gq-radius-xl);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    box-shadow: var(--gq-shadow-lg);
    position: relative;
}
.gq-leadform::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--gq-accent) 0%, var(--gq-primary) 100%);
    z-index: -1;
    opacity: .18;
    filter: blur(20px);
}

.gq-leadform__brandmark {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px -12px rgba(13, 94, 180, .45);
    border: 1px solid var(--gq-border);
    z-index: 1;
}
.gq-leadform__brandmark img { width: 42px; height: 42px; object-fit: contain; }
.gq-leadform--contact .gq-leadform__brandmark { top: -24px; width: 56px; height: 56px; border-radius: 18px; }
.gq-leadform--contact .gq-leadform__brandmark img { width: 36px; height: 36px; }

.gq-leadform__header { margin-bottom: 1.25rem; padding-top: 1rem; text-align: center; }
.gq-leadform__title  { font-size: clamp(1.3rem, 2vw, 1.6rem); margin: .6rem 0 .4rem; }
.gq-leadform__subtitle { color: var(--gq-muted); font-size: .92rem; margin: 0; }

/* Fluid form — container-query driven, one source of truth for field sizing */
.gq-leadform {
    container-type: inline-size;
    container-name: leadform;
}
.gq-leadform__form {
    --gq-field-height: 48px;
    --gq-field-pad-y: .65rem;
    --gq-field-pad-x: .95rem;
    --gq-field-font-size: .95rem;
    --gq-field-gap: 1rem;

    display: grid;
    gap: var(--gq-field-gap);
    grid-template-columns: 1fr;
}
@container leadform (min-width: 520px) {
    .gq-leadform__form { grid-template-columns: 1fr 1fr; }
}
/* Density variants */
.gq-leadform--density-compact .gq-leadform__form {
    --gq-field-height: 42px;
    --gq-field-pad-y: .5rem;
    --gq-field-gap: .75rem;
}
.gq-leadform--density-cozy .gq-leadform__form {
    --gq-field-height: 54px;
    --gq-field-pad-y: .85rem;
    --gq-field-gap: 1.25rem;
}

.gq-field { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.gq-field--full  { grid-column: 1 / -1; }
.gq-field label  {
    font-size: .85rem;
    font-weight: 600;
    color: var(--gq-ink-2);
    letter-spacing: .01em;
    display: inline-flex;
    gap: .25rem;
    align-items: center;
}
.gq-req { color: var(--gq-accent-600); font-weight: 700; }

.gq-field input,
.gq-field select,
.gq-field textarea {
    width: 100%;
    min-height: var(--gq-field-height);
    padding: var(--gq-field-pad-y) var(--gq-field-pad-x);
    font: inherit;
    font-size: var(--gq-field-font-size);
    color: var(--gq-ink);
    background: #fff;
    border: 1.5px solid var(--gq-border);
    border-radius: var(--gq-field-radius, 12px);
    line-height: 1.4;
    transition: border-color var(--gq-transition), box-shadow var(--gq-transition), background-color var(--gq-transition);
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}
.gq-field textarea { min-height: calc(var(--gq-field-height) * 2.25); resize: vertical; padding-top: .75rem; }
.gq-field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%235B6B7B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.gq-field input::placeholder,
.gq-field textarea::placeholder { color: #9BA9B8; opacity: 1; }

.gq-field input:focus,
.gq-field select:focus,
.gq-field textarea:focus {
    border-color: var(--gq-primary);
    box-shadow: 0 0 0 4px rgba(13, 94, 180, .14);
    outline: none;
}
.gq-field.is-invalid input,
.gq-field.is-invalid select,
.gq-field.is-invalid textarea {
    border-color: var(--gq-danger);
    box-shadow: 0 0 0 4px rgba(214, 69, 69, .12);
}

/* Filled variant */
.gq-leadform--variant-filled .gq-field input,
.gq-leadform--variant-filled .gq-field select,
.gq-leadform--variant-filled .gq-field textarea {
    background: var(--gq-bg-alt);
    border-color: transparent;
}
.gq-leadform--variant-filled .gq-field input:focus,
.gq-leadform--variant-filled .gq-field select:focus,
.gq-leadform--variant-filled .gq-field textarea:focus {
    background: #fff;
    border-color: var(--gq-primary);
}

/* Phone field */
.gq-phone {
    display: flex;
    gap: .5rem;
    align-items: stretch;
}
.gq-phone select {
    flex: 0 0 auto;
    width: clamp(96px, 24%, 120px);
    min-width: 0;
    padding-left: .75rem;
    padding-right: 1.75rem;
    background-position: right .55rem center;
}
.gq-phone input { flex: 1 1 0; min-width: 0; }

.gq-field--consent { margin-top: .25rem; }
.gq-check {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    font-size: .88rem;
    color: var(--gq-muted);
    line-height: 1.45;
    cursor: pointer;
}
.gq-check input {
    margin-top: .25rem;
    accent-color: var(--gq-primary);
    width: 16px; height: 16px;
    flex-shrink: 0;
}
.gq-check a { color: var(--gq-primary); font-weight: 600; }

.gq-leadform__hp {
    position: absolute !important;
    left: -10000px !important;
    width: 1px; height: 1px; overflow: hidden;
}

.gq-leadform__submit { margin-top: .25rem; }
.gq-leadform__note {
    display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--gq-muted);
    margin: .75rem 0 0;
}
.gq-leadform__note svg { color: var(--gq-success); }

.gq-leadform__status {
    grid-column: 1 / -1;
    display: none;
    padding: .75rem 1rem;
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 500;
}
.gq-leadform__status.is-error   { display: block; background: rgba(214, 69, 69, .08);  color: var(--gq-danger);  }
.gq-leadform__status.is-success { display: block; background: rgba(31, 143, 92, .1);   color: var(--gq-success); }
.gq-leadform__status.is-loading { display: block; background: var(--gq-primary-100);   color: var(--gq-primary-600); }

.gq-leadform--contact { box-shadow: var(--gq-shadow); }
.gq-leadform--contact::before { display: none; }

/* ------- Compact variant (hero form) --------------------------------- */
/*
 * The compact variant powers the hero lead form. Width is capped and the
 * card is horizontally centred inside its grid cell so, on desktop, it
 * reads as a tight, premium CTA instead of stretching edge-to-edge. All
 * internal text is centre-aligned to match the design intent.
 */
.gq-leadform--compact {
    padding: .95rem clamp(.95rem, 1.4vw, 1.2rem) 1.05rem;
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.gq-leadform--compact .gq-leadform__header { text-align: center; }
.gq-leadform--compact .gq-leadform__note,
.gq-leadform--compact .gq-wizard__note { justify-content: center; }
.gq-leadform--compact .gq-field { text-align: left; }
/* Wider mobile: card can go full width inside the column */
@media (max-width: 960px) {
    .gq-leadform--compact { max-width: 520px; }
}
@media (max-width: 640px) {
    .gq-leadform--compact { max-width: 100%; }
}

/*
 * CRITICAL FIX (1.2.3): when the lead form is in wizard mode, its direct
 * children are `.gq-wizard__panels` and `.gq-wizard__nav` (plus the status
 * region and hidden inputs). On wide viewports the parent grid was flipping
 * to two columns and the panel ended up in column 1 while the nav's
 * "Continue" button landed in column 2, creating a broken side-by-side
 * layout (Full name input on the left, isolated Continue button on the
 * right). Forcing a flex-column layout on wizard-mode forms keeps each
 * step + the navigation stacked vertically regardless of container width.
 */
.gq-leadform__form.gq-wizard {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.gq-leadform--compact::before { opacity: .12; filter: blur(14px); }
.gq-leadform--compact .gq-leadform__brandmark {
    top: -22px; width: 48px; height: 48px; border-radius: 14px;
}
.gq-leadform--compact .gq-leadform__brandmark img { width: 30px; height: 30px; }
.gq-leadform--compact .gq-leadform__header { margin-bottom: .75rem; padding-top: .65rem; text-align: left; }
.gq-leadform--compact .gq-leadform__title { font-size: clamp(1.05rem, 1.35vw, 1.25rem); margin: .35rem 0 .2rem; }
.gq-leadform--compact .gq-leadform__subtitle { font-size: .82rem; }
.gq-leadform--compact .gq-leadform__form {
    --gq-field-height: 40px;
    --gq-field-pad-y: .45rem;
    --gq-field-pad-x: .75rem;
    --gq-field-font-size: .88rem;
    --gq-field-gap: .6rem;
}
.gq-leadform--compact .gq-field label { font-size: .78rem; font-weight: 600; margin-bottom: 0; }
.gq-leadform--compact .gq-field textarea { min-height: calc(var(--gq-field-height) * 1.8); }
.gq-leadform--compact .gq-phone { gap: .4rem; }
.gq-leadform--compact .gq-phone select { width: clamp(82px, 28%, 100px); padding-right: 1.4rem; }
.gq-leadform--compact .gq-leadform__submit { margin-top: .3rem; }
.gq-leadform--compact .gq-btn--xl { padding: .85rem 1rem; font-size: .95rem; min-height: 46px; }
.gq-leadform--compact .gq-leadform__note { font-size: .72rem; margin-top: .55rem; }
.gq-leadform--compact .gq-pill { font-size: .7rem; padding: .25rem .55rem; }

/* Compact — force single-line, truncated consent */
.gq-leadform--compact .gq-check--compact {
    align-items: center;
    font-size: .78rem;
    gap: .5rem;
    white-space: nowrap;
    overflow: hidden;
}
.gq-leadform--compact .gq-check--compact input { margin-top: 0; width: 15px; height: 15px; }
.gq-leadform--compact .gq-check--compact .gq-check__text {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.4;
}
.gq-leadform--compact .gq-check--compact a { text-decoration: underline; text-underline-offset: 2px; }

/* Compact — 2-col only once we really have room */
@container leadform (min-width: 560px) {
    .gq-leadform--compact .gq-leadform__form { grid-template-columns: 1fr 1fr; }
}
@container leadform (max-width: 559px) {
    .gq-leadform--compact .gq-leadform__form { grid-template-columns: 1fr; }
}
@supports not (container-type: inline-size) {
    .gq-leadform--compact .gq-leadform__form { grid-template-columns: 1fr 1fr; }
    @media (max-width: 720px) {
        .gq-leadform--compact .gq-leadform__form { grid-template-columns: 1fr; }
    }
}

/* Fallback for browsers without container queries: use viewport width. */
@supports not (container-type: inline-size) {
    .gq-leadform__form { grid-template-columns: 1fr 1fr; }
    @media (max-width: 640px) {
        .gq-leadform__form { grid-template-columns: 1fr; }
    }
}

/* --------------------------------------------------------------------- */
/* Cards                                                                  */
/* --------------------------------------------------------------------- */
.gq-card {
    background: #fff;
    border: 1px solid var(--gq-border);
    border-radius: var(--gq-radius-lg);
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: transform var(--gq-transition), box-shadow var(--gq-transition), border-color var(--gq-transition);
    position: relative;
    overflow: hidden;
}
.gq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gq-shadow);
    border-color: var(--gq-primary-100);
}
.gq-card__icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gq-primary) 0%, var(--gq-accent) 120%);
    color: #fff;
    box-shadow: 0 10px 20px -10px rgba(13, 94, 180, .5);
    margin-bottom: .5rem;
}
.gq-card__title { margin: 0; font-size: 1.15rem; }
.gq-card__text  { color: var(--gq-muted); font-size: .93rem; margin: 0; flex: 1; }
.gq-card__badges { display: flex; flex-wrap: wrap; gap: .35rem; }
.gq-card__bullets { display: flex; flex-direction: column; gap: .3rem; font-size: .88rem; color: var(--gq-ink-2); }
.gq-card__bullets li { display: inline-flex; align-items: center; gap: .45rem; }
.gq-card__bullets svg { color: var(--gq-accent-600); }
.gq-card__footer { display: flex; gap: .5rem; align-items: center; margin-top: .75rem; }
.gq-card__link {
    display: inline-flex; align-items: center; gap: .3rem;
    font-weight: 600; font-size: .9rem;
    color: var(--gq-primary);
}
.gq-card__link:hover { color: var(--gq-accent-600); }

.gq-card--lg { padding: 2rem; }

.gq-card--post { padding: 0; overflow: hidden; }
.gq-card--post .gq-card__media {
    display: block;
    aspect-ratio: 16/9;
    background: var(--gq-bg-alt);
    overflow: hidden;
}
.gq-card--post .gq-card__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 400ms var(--gq-ease-out);
}
.gq-card--post:hover .gq-card__media img { transform: scale(1.04); }
.gq-card__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gq-primary-100), var(--gq-accent-100));
    color: var(--gq-primary);
}
.gq-card--post .gq-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; }
.gq-card__meta { font-size: .78rem; color: var(--gq-muted); margin: 0; text-transform: uppercase; letter-spacing: .08em; }
.gq-card--post .gq-card__title a { color: inherit; }
.gq-card--post .gq-card__title a:hover { color: var(--gq-primary); }

/* --------------------------------------------------------------------- */
/* Grids                                                                  */
/* --------------------------------------------------------------------- */
.gq-grid { display: grid; gap: 1.25rem; }
.gq-grid--verticals { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.gq-grid--team      { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.gq-card-grid       { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.gq-grid-with-sidebar {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1fr) 300px;
    padding: clamp(3rem, 5vw, 4.5rem) 0;
}
@media (max-width: 960px) { .gq-grid-with-sidebar { grid-template-columns: 1fr; } }

.gq-posts { min-width: 0; }
.gq-sidebar { min-width: 0; }
.gq-sidebar .widget {
    background: var(--gq-bg-alt);
    border-radius: var(--gq-radius);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}
.gq-sidebar .widget-title { margin-top: 0; }

/* --------------------------------------------------------------------- */
/* Carousel                                                               */
/* --------------------------------------------------------------------- */
.gq-carousel {
    position: relative;
    padding: 0 clamp(2rem, 5vw, 3.5rem);
}
.gq-carousel__viewport { overflow: hidden; }
.gq-carousel__track {
    display: flex;
    gap: 1.25rem;
    transition: transform 500ms var(--gq-ease-out);
    will-change: transform;
}
.gq-carousel__slide { flex: 0 0 auto; min-width: 0; }
.gq-carousel__slide > * { height: 100%; }

.gq-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #fff;
    color: var(--gq-primary);
    border: 1px solid var(--gq-border);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: var(--gq-shadow-sm);
    transition: transform var(--gq-transition), color var(--gq-transition), background-color var(--gq-transition), border-color var(--gq-transition);
    z-index: 2;
}
.gq-carousel__arrow:hover { background: var(--gq-primary); color: #fff; border-color: var(--gq-primary); }
.gq-carousel__arrow--prev { left: 0; }
.gq-carousel__arrow--prev svg { transform: rotate(180deg); }
.gq-carousel__arrow--next { right: 0; }
.gq-carousel__arrow[disabled] { opacity: .4; cursor: not-allowed; }

.gq-carousel__dots {
    display: flex; gap: .4rem; justify-content: center;
    margin-top: 1.25rem;
}
.gq-carousel__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gq-border-strong);
    border: 0; padding: 0; cursor: pointer;
    transition: background-color var(--gq-transition), transform var(--gq-transition);
}
.gq-carousel__dot.is-active { background: var(--gq-primary); transform: scale(1.35); }

/* --------------------------------------------------------------------- */
/* Testimonials                                                           */
/* --------------------------------------------------------------------- */
.gq-testimonial {
    background: #fff;
    border: 1px solid var(--gq-border);
    border-radius: var(--gq-radius-lg);
    padding: 2rem;
    display: flex; flex-direction: column; gap: 1rem;
    position: relative;
    height: 100%;
    box-shadow: var(--gq-shadow-sm);
}
.gq-testimonial__quote-mark {
    position: absolute;
    top: .75rem; right: 1.5rem;
    font-family: var(--gq-font-display);
    font-size: 5rem;
    line-height: .7;
    color: var(--gq-primary-100);
}
.gq-testimonial__quote { margin: 0; font-size: 1.05rem; color: var(--gq-ink-2); line-height: 1.55; }
.gq-testimonial__who { display: flex; align-items: center; gap: .9rem; margin-top: .5rem; }
.gq-testimonial__who strong { display: block; color: var(--gq-ink); font-size: .95rem; }
.gq-testimonial__who small  { display: block; color: var(--gq-muted); font-size: .82rem; }
.gq-testimonial__avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gq-primary) 0%, var(--gq-accent) 100%);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-family: var(--gq-font-display);
    letter-spacing: .04em;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 10px -4px rgba(11, 27, 43, .25);
}
.gq-testimonial__avatar--img { background: #f1f5f9; padding: 0; }
.gq-testimonial__avatar--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------- */
/* Stats                                                                  */
/* --------------------------------------------------------------------- */
.gq-stats__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.gq-stat {
    background: linear-gradient(160deg, #fff 0%, var(--gq-bg-alt) 100%);
    border: 1px solid var(--gq-border);
    border-radius: var(--gq-radius-lg);
    padding: 2rem 1.5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform var(--gq-transition), box-shadow var(--gq-transition);
}
.gq-stat::after {
    content: "";
    position: absolute;
    inset: auto -20% -60% auto;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(69, 216, 224, .2) 0%, transparent 70%);
    border-radius: 50%;
}
.gq-stat:hover { transform: translateY(-3px); box-shadow: var(--gq-shadow); }
.gq-stat__value {
    display: block;
    font-family: var(--gq-font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--gq-primary);
    line-height: 1;
    margin-bottom: .5rem;
}
.gq-stat__label { display: block; color: var(--gq-muted); font-size: .95rem; line-height: 1.5; }
.gq-stats__source { font-size: .75rem; color: var(--gq-muted-2); margin: 2rem 0 0; text-align: center; }

/* --------------------------------------------------------------------- */
/* Features                                                               */
/* --------------------------------------------------------------------- */
.gq-features__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.gq-feature {
    background: #fff;
    border: 1px solid var(--gq-border);
    border-radius: var(--gq-radius);
    padding: 2rem 1.5rem 1.75rem;
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: .75rem;
    transition: transform var(--gq-transition), box-shadow var(--gq-transition), border-color var(--gq-transition);
}
.gq-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px -25px rgba(11, 27, 43, .22);
    border-color: rgba(13, 94, 180, .18);
}
/* Default SVG icon (non-image) stays small with subtle badge */
.gq-feature__icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--gq-primary-100);
    color: var(--gq-primary);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: .25rem;
}
/* Large, centered, no-background image icon (adopts white card surface) */
.gq-feature__icon--image {
    width: clamp(96px, 12vw, 132px);
    height: clamp(96px, 12vw, 132px);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: .25rem;
    display: inline-grid;
    place-items: center;
    transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.gq-feature__icon--image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 24px rgba(13, 94, 180, .18));
    transition: filter .4s ease, transform .45s cubic-bezier(.2,.7,.2,1);
}
.gq-feature:hover .gq-feature__icon--image { transform: translateY(-3px) scale(1.03); }
.gq-feature:hover .gq-feature__icon--image img { filter: drop-shadow(0 18px 30px rgba(13, 94, 180, .26)); }
@media (max-width: 560px) {
    .gq-feature__icon--image { width: 88px; height: 88px; }
}
.gq-feature__title { margin: 0; font-size: 1.1rem; }
.gq-feature__text  { color: var(--gq-muted); margin: 0; font-size: .92rem; line-height: 1.55; }

/* --------------------------------------------------------------------- */
/* CTA banner                                                             */
/* --------------------------------------------------------------------- */
.gq-cta-banner .gq-cta-banner__inner {
    background:
        radial-gradient(60% 80% at 80% 10%, rgba(69, 216, 224, .25) 0%, transparent 60%),
        linear-gradient(120deg, var(--gq-primary) 0%, #072F5E 100%);
    color: #fff;
    padding: clamp(2.5rem, 5vw, 4rem);
    border-radius: var(--gq-radius-xl);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}
.gq-cta-banner__inner::before {
    content: "";
    position: absolute;
    inset: auto -10% -50% auto;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(69, 216, 224, .3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.gq-cta-banner__watermark {
    position: absolute;
    top: -40px;
    right: 6%;
    width: clamp(240px, 28vw, 380px);
    height: auto;
    opacity: .08;
    pointer-events: none;
    user-select: none;
    transform: rotate(-8deg);
}
@media (max-width: 840px) {
    .gq-cta-banner__watermark { top: auto; bottom: -60px; right: -40px; opacity: .06; }
}
.gq-cta-banner__title {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    color: #fff;
    margin: 0 0 .75rem;
}
.gq-cta-banner__text { color: rgba(255, 255, 255, .85); margin: 0; font-size: 1.05rem; }
.gq-cta-banner__actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; justify-content: flex-end; }
@media (max-width: 840px) {
    .gq-cta-banner .gq-cta-banner__inner { grid-template-columns: 1fr; }
    .gq-cta-banner__actions { justify-content: flex-start; }
}

/* --------------------------------------------------------------------- */
/* Trusted-by marquee                                                     */
/* --------------------------------------------------------------------- */
.gq-trusted { padding-top: clamp(3rem, 5vw, 4rem); padding-bottom: clamp(3rem, 5vw, 4rem); }
.gq-trusted__eyebrow {
    text-align: center;
    font-family: var(--gq-font-display);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .8rem;
    color: var(--gq-muted);
    margin: 0 0 2rem;
}
.gq-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%); }
.gq-marquee__track {
    display: inline-flex;
    gap: 3rem;
    padding: .5rem 0;
    animation: gq-marquee 32s linear infinite;
}
.gq-marquee:hover .gq-marquee__track { animation-play-state: paused; }
.gq-marquee__item {
    font-family: var(--gq-font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gq-muted-2);
    letter-spacing: -.01em;
    white-space: nowrap;
}
@keyframes gq-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------- */
/* Blog / Page hero                                                       */
/* --------------------------------------------------------------------- */
.gq-page-hero {
    position: relative;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
    background:
        radial-gradient(70% 60% at 100% 0%, rgba(69, 216, 224, .25) 0%, transparent 60%),
        linear-gradient(160deg, var(--gq-primary) 0%, #092E5A 100%);
    color: #fff;
    overflow: hidden;
}
.gq-page-hero__watermark {
    position: absolute;
    top: -60px;
    right: -80px;
    width: clamp(260px, 32vw, 440px);
    height: auto;
    opacity: .08;
    pointer-events: none;
    user-select: none;
    filter: brightness(0) invert(1);
    animation: gq-float 24s ease-in-out infinite;
}
@media (max-width: 720px) {
    .gq-page-hero__watermark { top: auto; bottom: -80px; right: -100px; opacity: .06; }
}
.gq-page-hero__title { color: #fff; margin: .25rem 0 1rem; max-width: 20ch; }
.gq-page-hero__lead  { color: rgba(255, 255, 255, .88); max-width: 68ch; margin: 0 0 1.25rem; font-size: 1.05rem; }
.gq-page-hero__ctas  { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.gq-page-hero__grid  {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 880px) { .gq-page-hero__grid { grid-template-columns: 1fr; } }

.gq-about-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--gq-radius-lg);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    backdrop-filter: blur(10px);
}
.gq-about-card__stat strong {
    display: block;
    font-family: var(--gq-font-display);
    font-weight: 800;
    font-size: 1.9rem;
    color: var(--gq-accent);
    line-height: 1;
    margin-bottom: .25rem;
}
.gq-about-card__stat span { font-size: .8rem; color: rgba(255, 255, 255, .78); }

/* --------------------------------------------------------------------- */
/* About page                                                             */
/* --------------------------------------------------------------------- */
.gq-about-story__grid {
    display: grid; gap: 2.5rem; grid-template-columns: 1.3fr 1fr;
    align-items: flex-start;
}
.gq-about-story__mission {
    background: var(--gq-bg-alt);
    border-radius: var(--gq-radius-lg);
    padding: 2rem;
    border: 1px solid var(--gq-border);
}
.gq-about-story__values { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.gq-about-story__values li { display: inline-flex; align-items: center; gap: .5rem; }
.gq-about-story__values svg { color: var(--gq-accent-600); }
@media (max-width: 880px) { .gq-about-story__grid { grid-template-columns: 1fr; } }

.gq-team__card {
    background: #fff;
    border: 1px solid var(--gq-border);
    border-radius: var(--gq-radius);
    padding: 1.5rem;
    text-align: center;
    transition: transform var(--gq-transition), box-shadow var(--gq-transition);
}
.gq-team__card:hover { transform: translateY(-3px); box-shadow: var(--gq-shadow); }
.gq-team__avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gq-primary) 0%, var(--gq-accent) 100%);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--gq-font-display);
    font-weight: 800;
    font-size: 1.6rem;
}
.gq-team__name { margin: 0 0 .25rem; font-size: 1.05rem; }
.gq-team__role { margin: 0; color: var(--gq-muted); font-size: .88rem; }

/* --------------------------------------------------------------------- */
/* Contact page                                                           */
/* --------------------------------------------------------------------- */
.gq-contact__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1.15fr; align-items: flex-start; }
@media (max-width: 860px) { .gq-contact__grid { grid-template-columns: 1fr; } }

.gq-contact__info { background: var(--gq-bg-alt); border: 1px solid var(--gq-border); border-radius: var(--gq-radius-lg); padding: 2rem; }
.gq-contact__title { margin-top: 0; }
.gq-contact__list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.gq-contact__list li { display: flex; gap: .9rem; align-items: flex-start; }
.gq-contact__icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1px solid var(--gq-border);
    color: var(--gq-primary);
    flex-shrink: 0;
}
.gq-contact__list strong { display: block; margin-bottom: .15rem; font-size: .95rem; }
.gq-contact__list p { margin: 0; color: var(--gq-muted); font-size: .92rem; }
.gq-contact__channels { display: flex; gap: .5rem; flex-wrap: wrap; }

.gq-contact-map__frame {
    aspect-ratio: 16/7;
    border-radius: var(--gq-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gq-border);
    background: var(--gq-bg-alt);
}
.gq-contact-map__frame iframe { width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------------- */
/* Single / page content                                                  */
/* --------------------------------------------------------------------- */
.gq-page__content, .gq-single__content {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    max-width: 820px;
}
.gq-page__content p, .gq-single__content p { color: var(--gq-ink-2); }
.gq-single__media { margin: 0; }
.gq-single__media img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }
.gq-single__header { padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem); background: linear-gradient(160deg, var(--gq-primary) 0%, #092E5A 100%); color: #fff; }
.gq-single__title  { color: #fff; }
.gq-post-meta { font-size: .88rem; color: rgba(255, 255, 255, .78); }
.gq-single__footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gq-border); color: var(--gq-muted); font-size: .9rem; }

/* --------------------------------------------------------------------- */
/* Footer                                                                 */
/* --------------------------------------------------------------------- */
.gq-footer {
    background: var(--gq-bg-dark);
    color: rgba(255, 255, 255, .8);
    padding-top: clamp(3rem, 5vw, 4.5rem);
}
.gq-footer__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    padding-bottom: 3rem;
}
@media (max-width: 980px) {
    .gq-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .gq-footer__grid { grid-template-columns: 1fr; }
}

.gq-footer__heading {
    color: #fff;
    font-family: var(--gq-font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin: 0 0 1.1rem;
}
.gq-footer__tagline { color: rgba(255, 255, 255, .75); margin: 1rem 0; }
.gq-footer__address { font-style: normal; color: rgba(255, 255, 255, .75); margin-bottom: 1.25rem; }
.gq-footer__address strong { color: #fff; font-family: var(--gq-font-display); }

.gq-footer__menu { display: flex; flex-direction: column; gap: .5rem; }
.gq-footer__menu a,
.gq-footer__contact a {
    color: rgba(255, 255, 255, .78);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .2rem 0;
}
.gq-footer__menu a:hover,
.gq-footer__contact a:hover { color: var(--gq-accent); }
.gq-footer__contact { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }

.gq-footer__social {
    display: flex; gap: .5rem; margin-top: 1rem;
}
.gq-footer__social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: background-color var(--gq-transition), transform var(--gq-transition);
}
.gq-footer__social a:hover { background: var(--gq-accent); color: var(--gq-ink); transform: translateY(-2px); }
.gq-footer__social a svg { width: 18px; height: 18px; }

.gq-footer__logo img, .gq-footer img.custom-logo { max-width: 200px; }

.gq-subfooter {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.25rem 0;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
}
.gq-subfooter__inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.gq-subfooter p { margin: 0; display: inline-flex; align-items: center; gap: .55rem; }
.gq-subfooter a { color: var(--gq-accent); font-weight: 600; }
.gq-subfooter a:hover { color: #fff; }
.gq-subfooter__mark { width: 22px; height: 22px; opacity: .85; }
.gq-subfooter__copy { flex: 1 1 auto; }
.gq-subfooter__credit {
    font-size: .88rem;
    color: rgba(255, 255, 255, .78);
    white-space: nowrap;
    margin-left: auto;
}
.gq-subfooter__credit a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .35);
    text-underline-offset: 3px;
    transition: text-decoration-color .2s ease, color .2s ease;
}
.gq-subfooter__credit a:hover { color: var(--gq-accent); text-decoration-color: var(--gq-accent); }
@media (max-width: 720px) {
    .gq-subfooter__credit { white-space: normal; margin-left: 0; }
}

/* --------------------------------------------------------------------- */
/* 404 / Search                                                           */
/* --------------------------------------------------------------------- */
.gq-404 { padding: clamp(4rem, 8vw, 7rem) 0; text-align: center; }
.gq-404__inner { max-width: 640px; margin: 0 auto; }
.gq-404__title { margin: .5rem 0 1rem; }
.gq-404__text  { color: var(--gq-muted); font-size: 1.05rem; }
.gq-404__actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin: 1.5rem 0 2.5rem; }
.gq-404__search { max-width: 480px; margin: 0 auto; }

.gq-searchform {
    display: flex; gap: .5rem;
    background: #fff;
    border: 1px solid var(--gq-border);
    padding: .4rem;
    border-radius: 999px;
    box-shadow: var(--gq-shadow-sm);
}
.gq-searchform__input {
    flex: 1;
    border: 0;
    padding: .5rem 1rem;
    font: inherit;
    background: transparent;
}
.gq-searchform__input:focus { outline: none; }

/* --------------------------------------------------------------------- */
/* Utilities                                                              */
/* --------------------------------------------------------------------- */
.gq-empty {
    background: var(--gq-bg-alt);
    border: 1px dashed var(--gq-border-strong);
    border-radius: var(--gq-radius);
    padding: 2rem;
    text-align: center;
}
.gq-no-results { padding: 3rem 0; text-align: center; }

.gq-services__footer { text-align: center; margin-top: 2.5rem; }

.gq-icon { display: inline-block; vertical-align: middle; }

html.gq-ready [data-gq-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 680ms cubic-bezier(.2,.7,.2,1) var(--gq-reveal-delay, 0ms),
        transform 680ms cubic-bezier(.2,.7,.2,1) var(--gq-reveal-delay, 0ms);
    will-change: opacity, transform;
}
html.gq-ready [data-gq-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------- */
/* Micro-animations — hover lifts, button shine, card elevation         */
/* --------------------------------------------------------------------- */
.gq-btn {
    position: relative;
    overflow: hidden;
    transition:
        transform .25s cubic-bezier(.2,.7,.2,1),
        box-shadow .25s cubic-bezier(.2,.7,.2,1),
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease;
}
.gq-btn:hover  { transform: translateY(-1px); }
.gq-btn:active { transform: translateY(0); }
.gq-btn--primary::after,
.gq-btn--accent::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
    transform: translateX(-110%);
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
    pointer-events: none;
}
.gq-btn--primary:hover::after,
.gq-btn--accent:hover::after { transform: translateX(110%); }

.gq-card, .gq-service-card, .gq-post-card {
    transition:
        transform .35s cubic-bezier(.2,.7,.2,1),
        box-shadow .35s cubic-bezier(.2,.7,.2,1),
        border-color .35s ease;
}
.gq-card:hover, .gq-service-card:hover, .gq-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px -22px rgba(11, 27, 43, .2);
}

@keyframes gqFadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes gqPulseSoft {
    0%, 100% { box-shadow: 0 0 0 0 rgba(13, 94, 180, .35); }
    50%      { box-shadow: 0 0 0 12px rgba(13, 94, 180, 0); }
}

/* --------------------------------------------------------------------- */
/* Floating Chat widget                                                  */
/* --------------------------------------------------------------------- */
.gq-chat {
    position: fixed;
    right: clamp(14px, 2vw, 24px);
    bottom: clamp(14px, 2vw, 24px);
    z-index: 100;
    font-family: inherit;
}
.gq-chat__fab {
    position: relative;
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gq-primary) 0%, var(--gq-accent) 100%);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow:
        0 18px 35px -12px rgba(13, 94, 180, .55),
        0 6px 14px -6px rgba(11, 27, 43, .25);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
    animation: gqPulseSoft 2.6s ease-out infinite;
}
.gq-chat__fab:hover { transform: translateY(-2px) scale(1.04); }
.gq-chat__fab-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(13, 94, 180, .3);
    animation: gqPulseSoft 2.2s ease-out infinite;
    pointer-events: none;
}
.gq-chat__fab-icon,
.gq-chat__fab-close {
    position: absolute;
    inset: 0;
    display: grid; place-items: center;
    transition: opacity .25s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.gq-chat__fab-close { opacity: 0; transform: rotate(-40deg) scale(.7); }
.gq-chat.is-open .gq-chat__fab { animation: none; }
.gq-chat.is-open .gq-chat__fab-icon  { opacity: 0; transform: rotate(40deg) scale(.7); }
.gq-chat.is-open .gq-chat__fab-close { opacity: 1; transform: rotate(0) scale(1); }
.gq-chat__badge {
    position: absolute;
    top: -4px; right: -4px;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    background: var(--gq-accent);
    color: #fff;
    font-size: .7rem; font-weight: 700;
    border-radius: 10px;
    display: inline-grid; place-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
}

.gq-chat__panel {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: min(360px, calc(100vw - 24px));
    max-height: min(620px, calc(100vh - 120px));
    background: #fff;
    border: 1px solid var(--gq-border);
    border-radius: 20px;
    box-shadow: 0 30px 60px -25px rgba(11, 27, 43, .35);
    overflow: hidden;
    display: flex; flex-direction: column;
    opacity: 0;
    transform: translateY(12px) scale(.98);
    transition: opacity .28s ease, transform .35s cubic-bezier(.2,.7,.2,1);
    transform-origin: 100% 100%;
    pointer-events: none;
}
/*
 * CRITICAL: the `display: flex` above would otherwise override the HTML
 * `hidden` attribute, leaving the panel invisibly-but-clickably layered on
 * top of the hero form — which is why clicks on the form area were bleeding
 * through to the Telegram link inside the closed panel. Force it to
 * `display: none` whenever the panel is not open.
 */
.gq-chat__panel[hidden] { display: none !important; }
.gq-chat.is-open .gq-chat__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.gq-chat__head {
    display: flex; align-items: center; justify-content: space-between;
    gap: .75rem;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, var(--gq-primary) 0%, #072F5E 100%);
    color: #fff;
}
.gq-chat__head-left { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.gq-chat__avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: #fff; display: grid; place-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,.15);
    overflow: hidden;
}
.gq-chat__avatar img { width: 32px; height: 32px; object-fit: contain; }
.gq-chat__title { display: block; font-size: .95rem; line-height: 1.2; }
.gq-chat__status {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .72rem; opacity: .88;
}
.gq-chat__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #3ce08f;
    box-shadow: 0 0 0 0 rgba(60, 224, 143, .7);
    animation: gqPulseSoft 1.8s ease-out infinite;
}
.gq-chat__close {
    background: rgba(255,255,255,.15); border: 0; color: #fff;
    width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
    display: grid; place-items: center;
    transition: background-color .25s ease;
}
.gq-chat__close:hover { background: rgba(255,255,255,.28); }

.gq-chat__body {
    padding: 1rem 1.1rem;
    overflow-y: auto;
    flex: 1 1 auto;
    display: flex; flex-direction: column; gap: .85rem;
    background: linear-gradient(180deg, #F6FAFE 0%, #fff 50%);
}
.gq-chat__bubble {
    background: #fff;
    border: 1px solid var(--gq-border);
    border-radius: 14px 14px 14px 4px;
    padding: .7rem .85rem;
    box-shadow: 0 2px 0 rgba(11, 27, 43, .02);
    animation: gqFadeInUp .4s ease-out both;
}
.gq-chat__bubble p { margin: 0; font-size: .88rem; line-height: 1.5; }

.gq-chat__suggestions {
    display: flex; flex-wrap: wrap; gap: .4rem;
    list-style: none; margin: 0; padding: 0;
}
.gq-chat__chip {
    background: #fff;
    border: 1px solid var(--gq-border);
    border-radius: 999px;
    padding: .4rem .7rem;
    font-size: .8rem;
    color: var(--gq-primary-600);
    cursor: pointer;
    transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.gq-chat__chip:hover { background: var(--gq-primary-100); border-color: rgba(13,94,180,.35); transform: translateY(-1px); }

.gq-chat__channels { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.gq-chat__channel {
    display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .55rem .6rem;
    border-radius: 12px;
    font-weight: 600; font-size: .82rem;
    border: 1px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease;
}
.gq-chat__channel--wa { background: rgba(37, 211, 102, .12); color: #0f766e; border-color: rgba(37, 211, 102, .35); }
.gq-chat__channel--tg { background: rgba(41, 160, 218, .12); color: #0a6ea0; border-color: rgba(41, 160, 218, .35); }
.gq-chat__channel:hover { transform: translateY(-1px); box-shadow: 0 10px 18px -14px rgba(0,0,0,.3); }

.gq-chat__form { display: flex; flex-direction: column; gap: .5rem; margin-top: .25rem; }
.gq-chat__form-lead { margin: 0; font-size: .78rem; color: var(--gq-muted); }
.gq-chat__row { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.gq-chat__form input,
.gq-chat__form textarea {
    width: 100%;
    padding: .55rem .7rem;
    font-size: .85rem;
    border: 1.5px solid var(--gq-border);
    border-radius: 10px;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.gq-chat__form input:focus,
.gq-chat__form textarea:focus {
    border-color: var(--gq-primary);
    box-shadow: 0 0 0 3px rgba(13, 94, 180, .14);
    outline: none;
}
.gq-chat__form textarea { resize: vertical; min-height: 72px; }
.gq-chat__status {
    display: none;
    font-size: .8rem;
    padding: .5rem .65rem;
    border-radius: 10px;
    margin-top: .25rem;
}
.gq-chat__status.is-loading { display: block; background: var(--gq-primary-100); color: var(--gq-primary-600); }
.gq-chat__status.is-success { display: block; background: rgba(31, 143, 92, .12); color: var(--gq-success); }
.gq-chat__status.is-error   { display: block; background: rgba(214, 69, 69, .1);  color: var(--gq-danger); }

.gq-chat__foot {
    padding: .65rem 1.1rem;
    background: #fff;
    border-top: 1px solid var(--gq-border);
}
.gq-chat__foot p { margin: 0; font-size: .72rem; color: var(--gq-muted); text-align: center; }

@media (max-width: 480px) {
    .gq-chat__panel { right: -8px; width: calc(100vw - 16px); }
    .gq-chat__row { grid-template-columns: 1fr; }
    .gq-chat__channels { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Pagination (core WP markup) */
.navigation.pagination {
    display: flex; justify-content: center; margin-top: 2.5rem;
}
.page-numbers {
    display: inline-flex;
    align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 .75rem;
    margin: 0 .2rem;
    border-radius: 999px;
    color: var(--gq-ink);
    font-weight: 600;
    background: #fff;
    border: 1px solid var(--gq-border);
}
.page-numbers.current, .page-numbers:hover {
    background: var(--gq-primary); color: #fff; border-color: var(--gq-primary);
}

/* --------------------------------------------------------------------- */
/* Gutenberg / Elementor bridges                                          */
/* --------------------------------------------------------------------- */
.entry-content > * + * { margin-top: 1.25em; }
.entry-content h2, .entry-content h3 { margin-top: 2em; }
.entry-content blockquote {
    border-left: 4px solid var(--gq-accent);
    background: var(--gq-bg-alt);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--gq-radius) var(--gq-radius) 0;
    color: var(--gq-ink-2);
    font-style: italic;
}
.entry-content pre, .entry-content code {
    background: var(--gq-bg-dark); color: #E8EEF5;
    border-radius: 10px; padding: .2em .4em;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .92em;
}
.entry-content pre { padding: 1rem 1.25rem; overflow-x: auto; }

body.elementor-editor-active .gq-hero__blob { display: none; }

/* Respect admin bar */
@media screen and (max-width: 600px) {
    .admin-bar .gq-header-wrap--sticky { top: 46px; }
}
@media screen and (min-width: 601px) {
    .admin-bar .gq-header-wrap--sticky { top: 32px; }
}

/* ===================================================================== */
/* Brand contact icons, vertical-single, responsive polish                */
/* ===================================================================== */

/* Footer contact icons */
.gq-footer__contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.gq-footer__contact-link {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: .92rem;
    transition: color .2s ease;
}
.gq-footer__contact-link:hover { color: #fff; }
.gq-footer__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    flex-shrink: 0;
}
.gq-footer__contact-icon--svg { color: #fff; }
.gq-footer__contact-icon img { width: 20px; height: 20px; object-fit: contain; }

/* Generic button with image icon */
.gq-btn--icon {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.gq-btn--icon img { width: 18px; height: 18px; object-fit: contain; }

/* ---------- Single vertical ---------- */
.gq-page-hero--vertical { position: relative; overflow: hidden; }
.gq-page-hero__inner { max-width: 820px; }
.gq-page-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

.gq-vertical-single__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    backdrop-filter: blur(4px);
    margin-bottom: 1.25rem;
}
.gq-vertical-single__badges {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.gq-vertical-single__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}
.gq-vertical-single__media {
    border-radius: var(--gq-radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}
.gq-vertical-single__media img { width: 100%; height: auto; display: block; }

.gq-vertical-single__card {
    background: #fff;
    border: 1px solid var(--gq-border);
    border-radius: var(--gq-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--gq-shadow);
    position: sticky;
    top: 100px;
}
.gq-vertical-single__card h3 { margin: 0 0 .35rem; }
.gq-vertical-single__card p { color: var(--gq-muted); font-size: .92rem; }
.gq-vertical-single__facts { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .6rem; }
.gq-vertical-single__facts li { display: flex; gap: .5rem; align-items: center; font-size: .88rem; color: var(--gq-ink-2); }
.gq-vertical-single__facts svg { color: var(--gq-primary); flex-shrink: 0; }

@media (max-width: 900px) {
    .gq-vertical-single__grid { grid-template-columns: 1fr; }
    .gq-vertical-single__card { position: static; }
}

/* ---------- Responsive polish ---------- */
/*
 * NOTE (1.2.3): the old `@media (max-width: 1100px)` rule which forced
 * `.gq-hero__inner` to two equal columns has been removed — it was fighting
 * the mobile single-column rule further up in this file and left the form
 * overlapping the left content on phones. The canonical hero-grid rules now
 * live near the `.gq-hero__inner` definition (see ~line 625-720).
 */
@media (max-width: 960px) {
    .gq-hero__metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
    .gq-hero__metrics strong { font-size: 1.4rem; }
    .gq-trust-row { gap: .5rem .9rem; }
}
@media (max-width: 720px) {
    .gq-hero { padding: calc(var(--gq-header-offset, 120px) + .75rem) 0 clamp(3rem, 5vw, 4rem); }
    .gq-hero__metrics { grid-template-columns: 1fr 1fr; }
    .gq-hero__metrics > :last-child { grid-column: 1 / -1; }
    .gq-trust-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
    .gq-container { padding-left: 1.1rem; padding-right: 1.1rem; }
    .gq-hero__ctas { flex-direction: column; align-items: stretch; }
    .gq-hero__ctas .gq-btn { width: 100%; justify-content: center; }
    .gq-btn--xl { padding: .95rem 1.25rem; font-size: .98rem; }
    .gq-leadform__brandmark { top: -20px; width: 46px; height: 46px; }
    .gq-leadform__brandmark img { width: 28px; height: 28px; }
}

/* CTA banner tablet/mobile */
@media (max-width: 900px) {
    .gq-cta-banner__inner { grid-template-columns: 1fr !important; text-align: center; }
    .gq-cta-banner__actions { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 560px) {
    .gq-cta-banner__actions { flex-direction: column; align-items: stretch; }
    .gq-cta-banner__actions .gq-btn { width: 100%; justify-content: center; }
}

/* Services / features / stats grids: auto-fit on tablets */
@media (max-width: 900px) {
    .gq-services__grid,
    .gq-features__grid,
    .gq-stats__grid,
    .gq-trusted-by__grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    }
}
@media (max-width: 560px) {
    .gq-services__grid,
    .gq-features__grid,
    .gq-stats__grid {
        grid-template-columns: 1fr !important;
    }
}

/* Page hero (services/about/contact) responsive */
@media (max-width: 720px) {
    .gq-page-hero { padding-block: clamp(3rem, 8vw, 4rem); }
    .gq-page-hero__title { font-size: clamp(2rem, 7vw, 2.6rem); }
    .gq-page-hero__subtitle { font-size: 1rem; }
}

/* Footer columns */
@media (max-width: 900px) {
    .gq-footer__grid { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; }
}
@media (max-width: 560px) {
    .gq-footer__grid { grid-template-columns: 1fr !important; }
    .gq-subfooter__inner { flex-direction: column; text-align: center; gap: .5rem; }
}

/* Nav on mobile — ensure no scroll overflow */
@media (max-width: 900px) {
    .gq-nav__menu { max-height: calc(100vh - 120px); overflow-y: auto; }
}

/* Carousel arrows hide gracefully on small screens */
@media (max-width: 560px) {
    .gq-carousel__arrow { display: none; }
    .gq-carousel { padding-inline: 0; }
}

/* Single post content fluid images */
.entry-content img { max-width: 100%; height: auto; }

/* Reduce bottom margin weirdness on last child */
.gq-section:last-child { padding-bottom: clamp(3rem, 6vw, 5rem); }

/* ============================================================ */
/* 1.2.0 — ShadCN-inspired tokens + enhanced components         */
/* ============================================================ */
:root {
    /* shadcn-like named tokens (mapped onto existing GQ palette) */
    --background:            var(--gq-bg);
    --foreground:            var(--gq-ink);
    --card:                  #FFFFFF;
    --card-foreground:       var(--gq-ink);
    --popover:               #FFFFFF;
    --popover-foreground:    var(--gq-ink);
    --primary-color:         var(--gq-primary);
    --primary-foreground:    #FFFFFF;
    --secondary:             var(--gq-bg-alt);
    --secondary-foreground:  var(--gq-ink);
    --muted-bg:              #F5F8FC;
    --muted-foreground:      var(--gq-muted);
    --accent-bg:             var(--gq-accent-100);
    --accent-foreground:     var(--gq-primary-600);
    --border-color:          var(--gq-border);
    --input-border:          var(--gq-border-strong);
    --ring:                  rgba(13, 94, 180, .35);
    --radius-sm:             .5rem;
    --radius-md:             .75rem;
    --radius-lg:             1rem;
    --radius-xl:             1.25rem;
    --focus-ring:            0 0 0 3px var(--ring);
}

/* Shadcn-style focus ring, applied generically */
:where(.gq-btn, .gq-leadform input, .gq-leadform select, .gq-leadform textarea,
       .gq-faq__q, .gq-chat__chip, .gq-wizard__next, .gq-wizard__back):focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: var(--radius-md);
}

/* ------- Multi-step wizard ----------------------------------- */
.gq-leadform--wizard { display: flex; flex-direction: column; }

/*
 * Linear progress bar (replaces the per-step numbered circles in 1.2.2+).
 * Compact, takes a single horizontal line, and updates a width-based fill
 * plus the textual "Step N of 5 · 40%" readout as the user advances.
 */
.gq-wizard__progressbar {
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.gq-wizard__progressbar-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .75rem;
    font-size: .78rem;
    color: var(--muted-foreground);
}
.gq-wizard__progressbar-step strong {
    color: var(--gq-ink);
    font-weight: 700;
}
.gq-wizard__progressbar-label {
    flex: 1 1 auto;
    text-align: center;
    color: var(--gq-ink);
    font-weight: 600;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.gq-wizard__progressbar-pct {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: var(--gq-primary);
}
.gq-wizard__progressbar-track {
    position: relative;
    width: 100%;
    height: 6px;
    background: var(--muted-bg, rgba(13, 94, 180, .08));
    border-radius: 999px;
    overflow: hidden;
}
.gq-wizard__progressbar-fill {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 20%;
    background: linear-gradient(90deg, var(--gq-primary) 0%, var(--gq-accent) 100%);
    border-radius: 999px;
    box-shadow: 0 2px 8px -4px rgba(13, 94, 180, .45);
    transition: width .45s cubic-bezier(.25, 1, .5, 1);
}
.gq-wizard__progress--sr { display: none !important; }
@media (max-width: 520px) {
    .gq-wizard__progressbar-label { display: none; }
    .gq-wizard__progressbar-head { font-size: .75rem; }
}

/*
 * Legacy stepper markup (now always hidden — kept only as screen-reader
 * fallback and for any Elementor widget that hooks into the DOM structure).
 */
.gq-wizard__progress {
    display: flex; gap: .4rem; justify-content: space-between;
    counter-reset: step;
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}
.gq-wizard__step {
    position: relative;
    flex: 1 1 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    color: var(--muted-foreground);
    font-size: .72rem;
    text-align: center;
    transition: color .35s var(--gq-ease-out);
}
.gq-wizard__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    font-weight: 700;
    font-size: .8rem;
    border-radius: 999px;
    background: var(--muted-bg);
    color: var(--muted-foreground);
    border: 1.5px solid var(--border-color);
    transition: all .35s var(--gq-ease-out);
}
.gq-wizard__step-label {
    font-weight: 600;
    letter-spacing: .01em;
    line-height: 1.15;
    max-width: 110px;
}
.gq-wizard__step::after {
    content: "";
    position: absolute;
    left: calc(50% + 20px);
    right: calc(-50% + 20px);
    top: 13px;
    height: 2px;
    background: var(--border-color);
    z-index: -1;
    transition: background .4s var(--gq-ease-out);
}
.gq-wizard__step:last-child::after { display: none; }
.gq-wizard__step.is-active .gq-wizard__step-num,
.gq-wizard__step.is-complete .gq-wizard__step-num {
    background: var(--gq-primary);
    color: #fff;
    border-color: var(--gq-primary);
    box-shadow: 0 8px 18px -8px rgba(13, 94, 180, .5);
}
.gq-wizard__step.is-complete::after { background: var(--gq-primary); }
.gq-wizard__step.is-active,
.gq-wizard__step.is-complete { color: var(--gq-ink); }

.gq-wizard__panels { position: relative; min-height: 1px; }
.gq-wizard__panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity .35s var(--gq-ease-out), transform .35s var(--gq-ease-out);
    pointer-events: none;
}
.gq-wizard__panel.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.gq-wizard__panel[hidden] { display: none; }
.gq-wizard__panel.is-leaving { opacity: 0; transform: translateX(-12px); }

/* Prefer container queries so the wizard can stay single-column inside a
   narrow sidebar or hero card even when the viewport is wide. */
@container leadform (min-width: 520px) {
    .gq-wizard__panel { grid-template-columns: 1fr 1fr; }
    .gq-wizard__panel .gq-field--full,
    .gq-wizard__panel .gq-field--consent,
    .gq-wizard__panel .gq-field--phone { grid-column: 1 / -1; }
}
@supports not (container-type: inline-size) {
    @media (min-width: 620px) {
        .gq-wizard__panel { grid-template-columns: 1fr 1fr; }
        .gq-wizard__panel .gq-field--full,
        .gq-wizard__panel .gq-field--consent,
        .gq-wizard__panel .gq-field--phone { grid-column: 1 / -1; }
    }
}

.gq-wizard__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--border-color);
}
.gq-wizard__back { background: transparent; color: var(--gq-ink); }
.gq-wizard__back[hidden],
.gq-wizard__next[hidden],
.gq-wizard__submit[hidden] { display: none !important; }
.gq-wizard__next, .gq-wizard__submit { margin-left: auto; }
.gq-wizard__submit { display: inline-flex; }
.gq-wizard__note {
    margin: .6rem 0 0;
    font-size: .78rem;
    color: var(--muted-foreground);
    display: inline-flex;
    gap: .35rem;
    align-items: center;
}

/* Invalid state mark on wizard inputs */
.gq-leadform [data-gq-invalid="true"] {
    border-color: var(--gq-danger);
    box-shadow: 0 0 0 3px rgba(214, 69, 69, .2);
}

@media (max-width: 520px) {
    .gq-wizard__step-label { display: none; }
    .gq-wizard__step::after { top: 13px; }
    .gq-wizard__nav { flex-wrap: wrap; gap: .5rem; }
    .gq-wizard__nav .gq-btn { flex: 1 1 auto; justify-content: center; padding-inline: .75rem; white-space: normal; min-height: 44px; }
    .gq-wizard__back { flex: 0 0 auto; }
    .gq-wizard__progress { gap: .2rem; }
    .gq-wizard__step-num { width: 24px; height: 24px; font-size: .72rem; }
    .gq-wizard__step::after { top: 11px; left: calc(50% + 18px); right: calc(-50% + 18px); }
}

/* ------- FAQ accordion --------------------------------------- */
.gq-faq {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.gq-faq__inner { display: grid; gap: 2rem; }
.gq-faq__head { text-align: center; max-width: 740px; margin: 0 auto; }
.gq-faq__title { margin: 0 0 .75rem; }
.gq-faq__subtitle { color: var(--muted-foreground); margin: 0; font-size: 1.05rem; }
.gq-faq__list {
    display: grid;
    gap: .75rem;
    max-width: 820px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
    list-style: none;
}
.gq-faq__item {
    background: var(--card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: box-shadow .3s var(--gq-ease-out), border-color .3s var(--gq-ease-out);
    overflow: hidden;
}
.gq-faq__item:hover { border-color: rgba(13, 94, 180, .35); }
.gq-faq__item.is-open {
    border-color: var(--gq-primary);
    box-shadow: 0 18px 40px -28px rgba(13, 94, 180, .35);
}
.gq-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: var(--gq-font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gq-ink);
    text-align: left;
    line-height: 1.4;
    transition: color .2s;
}
.gq-faq__q:hover { color: var(--gq-primary); }
.gq-faq__q-ico {
    flex: none;
    display: inline-flex;
    width: 32px; height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent-bg);
    color: var(--gq-primary);
    transition: transform .35s var(--gq-ease-out), background .2s;
}
.gq-faq__item.is-open .gq-faq__q-ico {
    transform: rotate(180deg);
    background: var(--gq-primary);
    color: #fff;
}
.gq-faq__a {
    padding: 0 1.25rem 1.1rem;
    color: var(--muted-foreground);
    font-size: .98rem;
    line-height: 1.65;
    overflow: hidden;
}
.gq-faq__a p { margin: 0; }
.gq-faq__a[hidden] { display: none !important; }

/* ------- Vertical single sticky sidebar ---------------------- */
.gq-vertical-single__grid--sticky {
    display: grid;
    gap: 2.25rem;
    grid-template-columns: 1fr;
    align-items: stretch;
}
@media (min-width: 960px) {
    .gq-vertical-single__grid--sticky {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
        gap: 3rem;
    }
}
.gq-vertical-single__aside { position: relative; align-self: stretch; }
.gq-vertical-single__sticky {
    position: sticky;
    top: calc(var(--gq-header-offset, 110px) + 16px);
}
@media (max-width: 959px) {
    .gq-vertical-single__sticky { position: static; }
}
@media (min-width: 960px) {
    .gq-vertical-single__sticky {
        max-height: calc(100vh - var(--gq-header-offset, 110px) - 32px);
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        padding-right: 6px;
    }
    .gq-vertical-single__sticky::-webkit-scrollbar { width: 6px; }
    .gq-vertical-single__sticky::-webkit-scrollbar-thumb { background: var(--gq-border-strong); border-radius: 999px; }
}

.gq-vertical-single__hero { margin-bottom: 1.75rem; }
.gq-vertical-single__icon {
    width: 64px; height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-bg);
    color: var(--gq-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}
.gq-vertical-single__title { margin: 0 0 .75rem; font-size: clamp(2.4rem, 4vw, 3.6rem); }
.gq-vertical-single__lead { color: var(--muted-foreground); font-size: 1.15rem; margin: 0 0 1rem; }
.gq-vertical-single__badges { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; }
.gq-vertical-single__media { margin: 0 0 2rem; border-radius: var(--radius-xl); overflow: hidden; }
.gq-vertical-single__media img { width: 100%; height: auto; display: block; }
.gq-vertical-single__copy h2,
.gq-vertical-single__copy h3 { margin-top: 2.25rem; }
.gq-vertical-single__copy p { font-size: 1.06rem; line-height: 1.75; }

.gq-vertical-single__facts--inline {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin-top: 2rem; padding: 1rem 1.25rem;
    background: var(--muted-bg);
    border-radius: var(--radius-lg);
    color: var(--gq-ink);
    font-size: .95rem;
    font-weight: 600;
}
.gq-vertical-single__facts--inline li {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.gq-vertical-single__facts--inline svg { color: var(--gq-primary); }

/* ------- Swiper skin (testimonials + trusted-by) ------------ */
.swiper { width: 100%; padding: 0 3rem 2.75rem; }
.gq-testimonials__swiper .swiper-slide { display: flex; height: auto; }
.gq-testimonials__swiper .swiper-slide .gq-testimonial { flex: 1; }
@media (max-width: 640px) { .swiper { padding: 0 .5rem 2.25rem; } }
.swiper-pagination { position: static; margin-top: 1.25rem; }
.swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: var(--gq-muted-2);
    opacity: .55;
    transition: width .3s var(--gq-ease-out), opacity .3s;
}
.swiper-pagination-bullet-active {
    width: 26px; border-radius: 999px; opacity: 1;
    background: var(--gq-primary);
}
.swiper-button-next, .swiper-button-prev {
    color: var(--gq-primary) !important;
    background: #fff;
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px !important;
    border-radius: 999px;
    border: 1px solid var(--gq-border);
    box-shadow: 0 8px 24px -14px rgba(11, 27, 43, .3);
    transition: transform .2s var(--gq-ease-out), box-shadow .2s;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 28px -14px rgba(11, 27, 43, .4);
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px !important;
    font-weight: 800;
    line-height: 1;
}
.swiper-button-disabled { opacity: .35 !important; cursor: not-allowed; }
@media (max-width: 640px) {
    .swiper-button-next, .swiper-button-prev { display: none !important; }
}

/* ------- Motion One / scroll-reveal fallback ---------------- */
html.gq-ready [data-gq-motion] { opacity: 0; transform: translateY(18px); }
html.gq-ready [data-gq-motion].is-in {
    opacity: 1; transform: none;
    transition: opacity .7s var(--gq-ease-out), transform .7s var(--gq-ease-out);
}
@media (prefers-reduced-motion: reduce) {
    html.gq-ready [data-gq-motion] { opacity: 1 !important; transform: none !important; }
}

