/* ============================================================================
   XECTIQ LINKS — MOBILE-FIRST FRONTEND EXPERIENCE v4.1
   File: public/assets/css/site-mobile.css
   ----------------------------------------------------------------------------
   Scope
   -----
   Public frontend only. This file intentionally does not style the admin panel.

   Goals
   -----
   1. Optimize the homepage for phone-first traffic.
   2. Keep the Google language selector visible on mobile.
   3. Use one floating support action: WhatsApp.
   4. Improve card hierarchy, touch targets, color and Font Awesome icon use.
   5. Preserve all existing CodeIgniter routes, data hooks and business logic.

   Loading order
   -------------
   Load AFTER site.css, site-modern.css and site-components.css.
   ============================================================================ */


/* ============================================================================
   01. MOBILE-FIRST DESIGN TOKENS
   ============================================================================ */

:root {
    --m-bg: #ffffff;
    --m-bg-soft: #f6f9fd;
    --m-bg-blue: #f2f7ff;
    --m-ink: #10233f;
    --m-ink-soft: #31465f;
    --m-muted: #687b93;
    --m-subtle: #8a99ab;
    --m-line: #dfe7f1;
    --m-line-strong: #ccd8e6;
    --m-white: #ffffff;
    --m-success: #11815f;
    --m-whatsapp: #25d366;
    --m-radius-sm: 12px;
    --m-radius: 16px;
    --m-radius-lg: 22px;
    --m-radius-xl: 28px;
    --m-shadow-xs: 0 4px 16px rgba(15, 38, 70, 0.05);
    --m-shadow-sm: 0 10px 28px rgba(15, 38, 70, 0.07);
    --m-shadow: 0 18px 48px rgba(15, 38, 70, 0.11);
    --m-ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}


/* ============================================================================
   02. GLOBAL MOBILE FOUNDATION
   ============================================================================ */

html {
    font-size: 16px;
    scroll-padding-top: 132px;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--m-bg);
    color: var(--m-ink);
    font-size: 15px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

.site-shell {
    overflow: clip;
}

.page-container {
    width: min(100% - 28px, 1400px);
    margin-inline: auto;
}

.section-block {
    padding: 54px 0;
}

img {
    max-width: 100%;
    height: auto;
}

body a,
body button,
body input,
body select,
body textarea {
    -webkit-tap-highlight-color: transparent;
}

body :focus-visible {
    outline: 3px solid color-mix(in srgb, var(--blue) 26%, transparent);
    outline-offset: 3px;
}


/* ============================================================================
   03. SHARED MOBILE TYPOGRAPHY
   ============================================================================ */

.section-kicker,
.eyebrow {
    gap: 7px;
    font-size: 10px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: 0.075em;
}

.section-kicker::before {
    width: 17px;
}

.section-heading-row,
.compact-heading {
    gap: 12px;
    margin-bottom: 22px;
}

.section-heading-row h2,
.compact-heading h2 {
    margin: 7px 0 6px;
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading-row p,
.compact-heading p {
    max-width: 620px;
    color: var(--m-muted);
    font-size: 14px;
    line-height: 1.58;
}

.text-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
}

.button {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 13px;
}


/* ============================================================================
   04. MOBILE UTILITY STRIP
   ============================================================================ */

.top-strip {
    background: linear-gradient(90deg, #061526, #0a2948);
}

.top-strip-inner {
    min-height: 34px;
    justify-content: center;
    padding-block: 5px;
    font-size: 9px;
    line-height: 1.35;
    text-align: center;
}

.top-strip-inner > span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-strip-date {
    display: none;
}

.top-strip-inner > a {
    display: none;
}


/* ============================================================================
   05. MOBILE HEADER + ALWAYS-VISIBLE LANGUAGE SELECTOR
   ============================================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(219, 228, 239, 0.94);
    box-shadow: 0 7px 24px rgba(15, 38, 70, 0.06);
    backdrop-filter: blur(18px) saturate(155%);
}

.header-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px 42px;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 8px;
    padding-block: 9px 10px;
}

.brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    gap: 9px;
}

.brand-visual {
    flex: 0 0 auto;
}

.brand-logo,
.brand-mark {
    width: 42px !important;
    height: 42px !important;
    max-width: 42px !important;
    flex-basis: 42px !important;
    border-radius: 12px !important;
}

.brand-logo {
    object-fit: contain;
    background: #fff;
}

.brand-copy {
    min-width: 0;
}

.brand-copy strong {
    display: block;
    max-width: 150px;
    overflow: hidden;
    color: var(--m-ink);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-copy span {
    display: block !important;
    max-width: 150px;
    margin-top: 3px;
    overflow: hidden;
    color: #7b8ba0;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main-nav {
    display: none !important;
}

/* On phones, children participate directly in the header grid. */
.header-actions {
    display: contents;
}

.header-search,
.menu-button {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--m-line);
    border-radius: 12px;
    background: #fff;
    color: #53677f;
    box-shadow: var(--m-shadow-xs);
    font-size: 15px;
}

.header-search {
    grid-column: 2;
    grid-row: 1;
}

.menu-button {
    grid-column: 3;
    grid-row: 1;
}

.header-search:active,
.menu-button:active {
    transform: scale(0.96);
}

/* Language selector gets an always-visible full-width mobile row. */
.header-language {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    border: 1px solid var(--m-line);
    border-radius: 12px;
    background: #f8faff;
    color: var(--blue);
}

.header-language > i {
    flex: 0 0 auto;
    font-size: 16px;
}

.google-language-widget {
    min-width: 0;
    flex: 1;
    display: block !important;
}

.goog-te-gadget {
    width: 100%;
    display: block;
    font-family: inherit !important;
    font-size: 0 !important;
    line-height: 1 !important;
}

.goog-te-gadget .goog-te-combo {
    width: 100% !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 0 30px 0 2px !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: #40546e !important;
    font: 700 12px/1 "Inter", sans-serif !important;
    box-shadow: none !important;
}

.goog-te-gadget span,
.goog-logo-link {
    display: none !important;
}

/* Mobile navigation drawer */
.mobile-nav {
    padding: 8px 14px 14px;
    border-top: 1px solid var(--m-line);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 24px 48px rgba(15, 38, 70, 0.13);
}

.mobile-nav:not([hidden]) {
    display: grid;
    gap: 5px;
    animation: mobile-nav-open 180ms var(--m-ease) both;
}

.mobile-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 13px;
    border-radius: 12px;
    color: #43576f;
    font-size: 13px;
    font-weight: 750;
}

.mobile-nav a i {
    width: 20px;
    color: #7890ab;
    text-align: center;
}

.mobile-nav a.active {
    background: color-mix(in srgb, var(--blue) 8%, #fff);
    color: var(--blue);
}

.mobile-nav a.active i {
    color: var(--blue);
}

.mobile-nav .mobile-whatsapp {
    margin-top: 5px;
    border: 1px solid color-mix(in srgb, var(--m-whatsapp) 30%, #dce7e1);
    background: #effcf5;
    color: #14764d;
}

.mobile-nav .mobile-whatsapp i {
    color: var(--m-whatsapp);
    font-size: 18px;
}

@keyframes mobile-nav-open {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}


/* ============================================================================
   06. HOMEPAGE HERO — PHONE FIRST
   ============================================================================ */

.hero-section {
    padding: 36px 0 42px;
    border-bottom: 1px solid #e9eff6;
    background:
        radial-gradient(circle at 92% 5%, color-mix(in srgb, var(--blue) 11%, transparent), transparent 35%),
        radial-gradient(circle at 3% 95%, color-mix(in srgb, var(--teal) 10%, transparent), transparent 32%),
        linear-gradient(180deg, #fbfdff, #f4f8fc);
}

.hero-orb {
    display: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.hero-copy {
    min-width: 0;
}

.eyebrow {
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid color-mix(in srgb, var(--blue) 17%, #e4eaf2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--m-shadow-xs);
    font-size: 10px;
    letter-spacing: 0.02em;
    text-transform: none;
}

.eyebrow i {
    color: var(--m-success);
}

.hero-copy h1 {
    max-width: 620px;
    margin: 16px 0 13px;
    color: var(--m-ink);
    font-size: clamp(39px, 12.5vw, 50px);
    line-height: 0.99;
    letter-spacing: -0.06em;
}

.hero-copy h1 span {
    display: block;
    color: var(--blue);
}

.hero-lead {
    max-width: 600px;
    margin: 0;
    color: var(--m-muted);
    font-size: 15px;
    line-height: 1.58;
}


/* ============================================================================
   07. HOMEPAGE SEARCH
   ============================================================================ */

.home-search {
    position: relative;
    z-index: 8;
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto !important;
    align-items: center;
    gap: 0;
    margin-top: 22px;
    padding: 6px;
    border: 1px solid #d9e3ef;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 36px rgba(18, 50, 94, 0.11);
}

.home-search:focus-within {
    border-color: color-mix(in srgb, var(--blue) 45%, #d9e3ef);
    box-shadow:
        0 0 0 4px color-mix(in srgb, var(--blue) 8%, transparent),
        0 16px 40px rgba(18, 50, 94, 0.12);
}

.home-search-icon {
    display: grid;
    place-items: center;
    color: #7a8da4;
    font-size: 15px;
}

.home-search input {
    min-width: 0;
    height: 44px;
    padding: 0 4px;
    border: 0;
    background: transparent;
    outline: 0;
    color: var(--m-ink);
    font-size: 13px;
}

.home-search button {
    grid-column: auto !important;
    min-width: 78px;
    min-height: 44px;
    margin: 0 !important;
    padding: 0 13px;
    border: 0;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--blue), color-mix(in srgb, var(--blue) 76%, #365cff));
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--blue) 22%, transparent);
}

.home-search button:active {
    transform: scale(0.97);
}

.search-results {
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    max-height: min(58vh, 390px);
    overflow-y: auto;
    border-radius: 15px;
    box-shadow: 0 22px 56px rgba(10, 31, 63, 0.18);
}

.search-results a,
.search-result {
    min-height: 58px;
    padding: 10px 12px;
}

.search-results strong {
    font-size: 13px;
}

.search-results small {
    font-size: 10px;
}


/* ============================================================================
   08. POPULAR SERVICE CAPSULES — MOBILE SWIPE ROW
   ============================================================================ */

.popular-searches {
    width: calc(100vw - 14px);
    max-width: none;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 7px;
    overflow-x: auto;
    margin-top: 14px;
    margin-right: -14px;
    padding: 2px 14px 7px 0;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.popular-searches::-webkit-scrollbar {
    display: none;
}

.popular-searches > span:first-child {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: auto !important;
    color: #73859a;
    font-size: 9px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.popular-searches > a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0 10px;
    border: 1px solid #d9e3ef;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #53667d;
    box-shadow: 0 3px 10px rgba(15, 38, 70, 0.035);
    font-size: 10px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.popular-searches > a i {
    color: var(--blue);
    font-size: 9px;
}

.popular-searches > a > span {
    display: inline;
}


/* ============================================================================
   09. HERO ASSURANCES
   ============================================================================ */

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 13px;
    color: #52657d;
    font-size: 9px;
    font-weight: 700;
}

.hero-assurances span {
    min-height: 29px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 8px;
    border: 1px solid #e2e9f1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.hero-assurances i {
    color: var(--m-success);
    font-size: 10px;
}


/* ============================================================================
   10. COMPACT MOBILE HERO PANEL
   ============================================================================ */

.hero-panel {
    overflow: hidden;
    border: 1px solid #dbe5f0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 46px rgba(16, 43, 80, 0.10);
}

.hero-panel-top {
    min-height: 48px;
    align-items: center !important;
    flex-direction: row !important;
    gap: 8px;
    padding: 12px 13px;
    font-size: 9px;
}

.hero-panel-top > div {
    gap: 7px;
}

.hero-panel-top > span {
    margin-left: auto;
    text-align: right;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    background: #f5f8fc;
}

.stat-card {
    min-height: 86px;
    padding: 13px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e7edf4;
}

.stat-card strong {
    font-size: 27px;
}

.stat-card span {
    margin-top: 5px;
    font-size: 9px;
}

.stat-card-primary {
    border-color: transparent;
}

.hero-feature {
    grid-template-columns: 38px minmax(0, 1fr) 32px;
    min-height: 60px;
    margin: 10px;
    padding: 10px;
    border-radius: 14px;
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
}

.hero-feature > div:nth-child(2) span {
    font-size: 8px;
}

.hero-feature > div:nth-child(2) strong {
    font-size: 11px;
}

.hero-note {
    margin: 0 12px 12px;
    font-size: 8px;
    line-height: 1.45;
}


/* ============================================================================
   11. CATEGORY SECTION — MOBILE APP-LIKE CARDS
   ============================================================================ */

.category-section {
    background: #fff;
}

.category-section .section-heading-row .text-link {
    margin-top: -4px;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.category-card {
    position: relative;
    min-width: 0;
    min-height: 80px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    border: 1px solid var(--m-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--m-shadow-xs);
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--blue);
    opacity: 0.85;
}

.category-card.category-tone-green {
    background: linear-gradient(135deg, #fff, #f2fbf7);
}

.category-card.category-tone-green::before {
    background: #11815f;
}

.category-card.category-tone-purple {
    background: linear-gradient(135deg, #fff, #f7f4ff);
}

.category-card.category-tone-purple::before {
    background: #7355d6;
}

.category-card.category-tone-orange {
    background: linear-gradient(135deg, #fff, #fff8ef);
}

.category-card.category-tone-orange::before {
    background: #c06b13;
}

.category-card.category-tone-cyan {
    background: linear-gradient(135deg, #fff, #f0fbfd);
}

.category-card.category-tone-cyan::before {
    background: #0b8595;
}

.category-card.category-tone-rose {
    background: linear-gradient(135deg, #fff, #fff4f7);
}

.category-card.category-tone-rose::before {
    background: #c04967;
}

.category-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    border-radius: 13px;
    font-size: 16px;
}

.category-card-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-card-copy strong {
    color: var(--m-ink);
    font-size: 13px;
    font-weight: 780;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.category-card-copy small {
    margin-top: 4px;
    color: #8292a6;
    font-size: 9px;
    font-weight: 650;
    line-height: 1.2;
}

.category-arrow {
    width: 32px !important;
    height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end !important;
    align-self: center !important;
    margin: 0 !important;
    border: 1px solid #e0e8f1;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.88) !important;
    color: #71859d !important;
    font-size: 11px !important;
    line-height: 1 !important;
}

.category-arrow i {
    margin: 0 !important;
    line-height: 1 !important;
}

.category-card:active {
    transform: scale(0.99);
}


/* ============================================================================
   12. PROCESS SECTION — SWIPEABLE ON PHONES
   ============================================================================ */

.process-section {
    background: #f6f9fd;
}

.process-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-right: -14px;
    padding: 2px 14px 12px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.process-grid::-webkit-scrollbar {
    display: none;
}

.process-grid article {
    min-width: min(82vw, 310px);
    min-height: 205px;
    flex: 0 0 min(82vw, 310px);
    scroll-snap-align: start;
    padding: 20px;
    border-radius: 19px;
    box-shadow: var(--m-shadow-xs);
}

.process-grid article > span:first-child {
    font-size: 40px;
}

.process-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
    border-radius: 13px;
    font-size: 15px;
}

.process-grid h3 {
    margin-bottom: 6px;
    font-size: 16px;
}

.process-grid p {
    font-size: 12px;
    line-height: 1.55;
}

.forms-callout {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    margin-top: 15px;
    padding: 15px;
    border-radius: 18px;
}

.forms-callout-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
}

.forms-callout h3 {
    margin: 3px 0 4px;
    font-size: 14px;
    line-height: 1.35;
}

.forms-callout p {
    font-size: 11px;
}

.forms-callout .button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 3px;
}


/* ============================================================================
   13. SERVICE CARDS — MOBILE CONTENT HIERARCHY + COLOR
   ============================================================================ */

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.service-card {
    border-radius: 20px;
    box-shadow: var(--m-shadow-sm);
}

.service-card-visual {
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
}

.service-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-icon {
    left: 13px;
    bottom: -20px;
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--blue);
    font-size: 15px;
}

.service-card.tone-green .service-card-icon {
    color: #11815f;
    background: #effaf5;
}

.service-card.tone-purple .service-card-icon {
    color: #7052d1;
    background: #f5f1ff;
}

.service-card.tone-orange .service-card-icon {
    color: #b9630f;
    background: #fff6eb;
}

.service-card.tone-cyan .service-card-icon {
    color: #0a8393;
    background: #effbfc;
}

.service-card.tone-rose .service-card-icon {
    color: #bc4562;
    background: #fff2f5;
}

.status-badge {
    top: 10px;
    right: 10px;
    min-height: 27px;
    padding: 0 9px;
    font-size: 9px;
}

.service-card-body {
    padding: 25px 16px 15px;
}

.service-category {
    font-size: 9px;
}

.service-card h3 {
    margin: 6px 0 7px;
    font-size: 19px;
    line-height: 1.22;
}

.service-summary {
    font-size: 12px;
    line-height: 1.58;
}

.service-meta {
    gap: 6px;
    margin-top: 12px;
}

.service-meta span {
    min-height: 29px;
    padding: 0 8px;
    font-size: 9px;
}

.service-card-link {
    min-height: 45px;
    margin: 14px -16px -15px;
    padding: 0 16px;
    font-size: 12px;
}

.service-card-link span:last-child {
    width: 29px;
    height: 29px;
}

.mobile-action {
    width: 100%;
}


/* ============================================================================
   14. QUICK LINKS — MOBILE
   ============================================================================ */

.quick-section {
    padding-block: 58px;
}

.quick-layout {
    gap: 24px;
}

.quick-copy h2 {
    font-size: 36px;
}

.quick-copy p {
    font-size: 13px;
}

.quick-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.quick-item {
    min-height: 66px;
    grid-template-columns: 40px minmax(0, 1fr) 26px;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
}

.quick-mark {
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
    font-size: 13px;
}

.quick-item strong {
    font-size: 12px;
}

.quick-item div:nth-child(2) span {
    font-size: 9px;
}


/* ============================================================================
   15. MISSION CARD — MOBILE
   ============================================================================ */

.mission-section {
    background: #fff;
}

.mission-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 17px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff, #f3f7ff);
    box-shadow: var(--m-shadow-sm);
}

.mission-badge {
    width: 56px !important;
    height: 56px !important;
    flex-basis: 56px !important;
    border-radius: 16px !important;
}

.mission-copy .section-kicker {
    font-size: 8px;
    letter-spacing: 0.045em;
}

.mission-copy h2 {
    margin: 5px 0;
    font-size: 19px;
    line-height: 1.2;
}

.mission-copy p {
    font-size: 11px;
    line-height: 1.55;
}

.mission-card .button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 3px;
}


/* ============================================================================
   16. OTHER PUBLIC PAGES — MOBILE TOUCH OPTIMIZATION
   ============================================================================ */

.page-hero,
.legal-hero {
    padding: 48px 0 44px;
}

.page-hero h1,
.legal-hero h1 {
    font-size: clamp(37px, 10.5vw, 46px);
}

.page-hero p,
.legal-hero p {
    font-size: 14px;
}

.directory-search,
.download-search-box {
    min-height: 52px;
    border-radius: 15px;
}

.directory-search input,
.download-search-box input {
    font-size: 14px;
}

.filter-row,
.download-category-chips {
    gap: 7px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.filter-row::-webkit-scrollbar,
.download-category-chips::-webkit-scrollbar {
    display: none;
}

.filter-row button,
.download-category-chips button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
}

.download-card,
.quick-link-card,
.scam-card,
.content-card,
.action-card {
    border-radius: 18px;
}

.download-card > a,
.directory-search button,
.download-search-box button {
    min-width: 40px;
    min-height: 40px;
}


/* ============================================================================
   17. MOBILE FOOTER
   ============================================================================ */

.site-footer {
    background: linear-gradient(180deg, #07172b, #06111f);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 18px;
    padding-top: 40px;
    padding-bottom: 32px;
}

.footer-brand {
    grid-column: 1 / -1;
}

.footer-brand .brand-logo {
    width: auto !important;
    max-width: 132px !important;
    height: 42px !important;
}

.footer-brand p {
    max-width: 520px;
    margin: 14px 0 11px;
    font-size: 11px;
}

.independent-note {
    font-size: 9px;
}

.footer-column {
    gap: 8px;
}

.footer-column:last-child {
    grid-column: 1 / -1;
}

.footer-column h3 {
    font-size: 10px;
}

.footer-column a,
.footer-column span {
    font-size: 10px;
}

.footer-bottom {
    display: grid;
    gap: 10px;
    padding-top: 16px;
    padding-bottom: 24px;
    font-size: 9px;
}

.footer-managed-by {
    justify-content: flex-start !important;
}


/* ============================================================================
   18. WHATSAPP-ONLY FLOATING SUPPORT
   ============================================================================ */

.support-dock.support-dock-whatsapp-only {
    position: fixed;
    z-index: 48;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    display: block;
}

.support-dock.support-dock-whatsapp-only .support-action {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 50% !important;
    background: var(--m-whatsapp);
    color: #fff !important;
    box-shadow: 0 14px 32px rgba(18, 72, 45, 0.28);
    font-size: 26px;
    line-height: 1;
    text-decoration: none;
    animation: whatsapp-soft-pulse 3.2s ease-in-out infinite;
}

.support-dock.support-dock-whatsapp-only .support-action > i {
    color: inherit;
    line-height: 1;
}

.support-dock.support-dock-whatsapp-only .support-action::before {
    display: none;
}

.support-dock.support-dock-whatsapp-only .support-action:active {
    transform: scale(0.94);
}

@keyframes whatsapp-soft-pulse {
    0%,
    72%,
    100% {
        box-shadow: 0 14px 32px rgba(18, 72, 45, 0.28);
    }
    84% {
        box-shadow:
            0 14px 32px rgba(18, 72, 45, 0.28),
            0 0 0 8px rgba(37, 211, 102, 0.10);
    }
}


/* ============================================================================
   19. MOBILE MODALS
   ============================================================================ */

.request-modal-backdrop,
.promotion-backdrop {
    place-items: end center;
    padding: 8px;
}

.request-modal,
.promotion-card {
    width: 100%;
    max-height: calc(100dvh - 16px);
    border-radius: 22px 22px 14px 14px;
}

.request-modal {
    padding: 19px 16px;
}

.request-modal-close,
.promotion-close {
    width: 40px;
    height: 40px;
}

.request-form-heading h2,
.promotion-copy h2 {
    font-size: 24px;
}

.request-modal input {
    height: 48px;
}


/* ============================================================================
   20. SMALL PHONE REFINEMENT — <= 380px
   ============================================================================ */

@media (max-width: 380px) {
    .page-container {
        width: calc(100% - 22px);
    }

    .header-inner {
        grid-template-columns: minmax(0, 1fr) 40px 40px;
        gap: 6px;
    }

    .header-search,
    .menu-button {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .brand-logo,
    .brand-mark {
        width: 39px !important;
        height: 39px !important;
        max-width: 39px !important;
    }

    .brand-copy strong,
    .brand-copy span {
        max-width: 126px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }

    .home-search {
        grid-template-columns: 34px minmax(0, 1fr) auto !important;
    }

    .home-search button {
        min-width: 68px;
        padding-inline: 10px;
        font-size: 11px;
    }

    .category-card-copy strong {
        font-size: 12px;
    }
}


/* ============================================================================
   21. LARGE MOBILE / TABLET — >= 420px
   ============================================================================ */

@media (min-width: 420px) and (max-width: 599px) {
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .category-card {
        min-height: 126px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        padding: 13px;
    }

    .category-card-copy {
        padding-right: 25px;
    }

    .category-card-copy strong {
        font-size: 12px;
        line-height: 1.25;
    }

    .category-arrow {
        position: absolute;
        top: 13px;
        right: 11px;
    }
}


/* ============================================================================
   22. TABLET — >= 600px
   ============================================================================ */

@media (min-width: 600px) {
    html {
        scroll-padding-top: 116px;
    }

    .page-container {
        width: min(100% - 44px, 1400px);
    }

    .section-block {
        padding: 68px 0;
    }

    .top-strip-date {
        display: inline;
    }

    .header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto;
        gap: 14px;
        padding-block: 9px;
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
    }

    .brand-logo,
    .brand-mark {
        width: 44px !important;
        height: 44px !important;
        max-width: 44px !important;
    }

    .brand-copy strong {
        max-width: 230px;
        font-size: 14px;
    }

    .brand-copy span {
        max-width: 230px;
        font-size: 9px;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header-language {
        width: 155px;
        min-height: 42px;
        padding-inline: 9px;
    }

    .goog-te-gadget .goog-te-combo {
        font-size: 11px !important;
    }

    .hero-section {
        padding: 54px 0 58px;
    }

    .hero-copy h1 {
        font-size: clamp(50px, 8vw, 64px);
    }

    .hero-lead {
        font-size: 17px;
    }

    .popular-searches {
        width: 100%;
        margin-right: 0;
        padding-right: 0;
        flex-wrap: wrap;
        overflow: visible;
    }

    .hero-assurances {
        gap: 9px;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .category-card {
        min-height: 88px;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
        margin-right: 0;
        padding-right: 0;
    }

    .process-grid article {
        min-width: 0;
        min-height: 220px;
        flex: none;
    }

    .forms-callout {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        padding: 19px;
    }

    .forms-callout .button {
        grid-column: auto;
        width: auto;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mission-card {
        grid-template-columns: 62px minmax(0, 1fr) auto;
        padding: 22px;
    }

    .mission-badge {
        width: 62px !important;
        height: 62px !important;
        flex-basis: 62px !important;
    }

    .mission-card .button {
        grid-column: auto;
        width: auto;
    }

    .footer-main {
        grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
    }

    .footer-brand,
    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}


/* ============================================================================
   23. DESKTOP — >= 900px
   ============================================================================ */

@media (min-width: 900px) {
    html {
        scroll-padding-top: 84px;
    }

    body {
        font-size: 16px;
    }

    .section-block {
        padding: 84px 0;
    }

    .top-strip-inner {
        justify-content: space-between;
        min-height: 38px;
        font-size: 11px;
    }

    .top-strip-inner > a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .header-inner {
        min-height: 76px;
        display: flex;
        padding-block: 0;
    }

    .brand-logo,
    .brand-mark {
        width: 46px !important;
        height: 46px !important;
        max-width: 46px !important;
    }

    .brand-copy strong {
        max-width: none;
        font-size: 15px;
    }

    .brand-copy span {
        max-width: none;
        font-size: 10px;
    }

    .main-nav {
        display: flex !important;
        align-items: center;
        gap: 4px;
        margin-left: auto;
    }

    .main-nav a {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        padding: 0 11px;
        border-radius: 11px;
        font-size: 13px;
    }

    .header-actions {
        display: flex;
        gap: 8px;
        margin-left: 8px;
    }

    .header-language {
        width: 145px;
        background: #fff;
    }

    .menu-button {
        display: none;
    }

    .mobile-nav:not([hidden]) {
        display: none;
    }

    .hero-section {
        padding: 80px 0 82px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.78fr);
        gap: 56px;
        align-items: center;
    }

    .hero-copy h1 {
        font-size: clamp(60px, 5.2vw, 76px);
    }

    .home-search {
        max-width: 760px;
    }

    .category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .category-card {
        min-height: 92px;
    }

    .category-card:hover {
        transform: translateY(-4px);
        border-color: color-mix(in srgb, var(--blue) 26%, var(--m-line));
        box-shadow: var(--m-shadow-sm);
    }

    .category-card:hover .category-arrow {
        background: var(--blue) !important;
        border-color: var(--blue) !important;
        color: #fff !important;
    }

    .category-card:hover .category-arrow i {
        transform: translateX(2px);
    }

    .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 54px rgba(15, 38, 70, 0.13);
    }

    .service-card:hover .service-card-visual img {
        transform: scale(1.035);
    }

    .quick-layout {
        grid-template-columns: minmax(0, 0.72fr) minmax(430px, 1fr);
        gap: 70px;
        align-items: center;
    }

    .quick-copy h2 {
        font-size: 48px;
    }

    .support-dock.support-dock-whatsapp-only {
        right: 22px;
        bottom: 22px;
    }

    .support-dock.support-dock-whatsapp-only .support-action {
        width: 56px;
        height: 56px;
        min-width: 56px;
        min-height: 56px;
    }

    .support-dock.support-dock-whatsapp-only .support-action::before {
        content: attr(data-support-label);
        position: absolute;
        top: 50%;
        right: calc(100% + 10px);
        display: block;
        padding: 7px 10px;
        border-radius: 8px;
        background: #10233d;
        color: #fff;
        font-size: 10px;
        font-weight: 750;
        line-height: 1;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transform: translate(5px, -50%);
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .support-dock.support-dock-whatsapp-only .support-action:hover {
        transform: translateY(-3px) scale(1.03);
    }

    .support-dock.support-dock-whatsapp-only .support-action:hover::before,
    .support-dock.support-dock-whatsapp-only .support-action:focus-visible::before {
        opacity: 1;
        transform: translate(0, -50%);
    }

    .request-modal-backdrop,
    .promotion-backdrop {
        place-items: center;
        padding: 24px;
    }

    .request-modal,
    .promotion-card {
        width: min(100%, 580px);
        border-radius: 24px;
    }
}


/* ============================================================================
   24. LARGE DESKTOP — >= 1180px
   ============================================================================ */

@media (min-width: 1180px) {
    .page-container {
        width: min(100% - 56px, 1400px);
    }

    .category-grid {
        gap: 14px;
    }

    .service-grid {
        gap: 22px;
    }
}


/* ============================================================================
   25. MOTION + ACCESSIBILITY
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .ui-reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .support-dock.support-dock-whatsapp-only .support-action {
        animation: none !important;
    }
}

/* ============================================================================
   25. FRONTEND REFINEMENT v4.1
   ----------------------------------------------------------------------------
   Final frontend-only correction layer based on real mobile screenshots.

   Fixes
   -----
   1. Homepage hero density, hierarchy and mobile alignment.
   2. Hero stat-card primary color regression.
   3. Popular-service chips no longer bleed outside the viewport.
   4. Google Translate selector can use the full mobile header width.
   5. Service category filters wrap instead of overflowing horizontally.
   6. Quick-link cards use consistent Font Awesome icon containers.
   7. Scam emergency CTA always renders white text on a red button.
   8. Service-detail in-page navigation is mobile-friendly and sticky.
   9. WhatsApp is forced back to a true bottom-right floating button.
   ============================================================================ */


/* ============================================================================
   25.1 LANGUAGE SELECTOR — REMOVE LEGACY WIDTH CAPS
   ============================================================================ */

.site-header .header-language {
    min-width: 0;
    width: 100%;
    max-width: none;
    overflow: visible;
}

.site-header .google-language-widget {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    background: transparent !important;
}

.site-header .google-language-widget .goog-te-gadget {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    display: flex !important;
    align-items: center;
}

.site-header .google-language-widget select.goog-te-combo,
.site-header .goog-te-gadget .goog-te-combo {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 38px !important;

    margin: 0 !important;
    padding: 0 34px 0 4px !important;

    border: 0 !important;
    outline: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    color: #344a64 !important;

    font:
        700 12px/1 "Inter",
        sans-serif !important;

    text-overflow: ellipsis;
    white-space: nowrap;

    box-shadow: none !important;
}


/* ============================================================================
   25.2 HOMEPAGE HERO — MOBILE-FIRST REBALANCE
   ============================================================================ */

@media (max-width: 599px) {

    .hero-section {
        padding: 28px 0 34px;

        background:
            radial-gradient(
                circle at 100% 0%,
                color-mix(in srgb, var(--blue) 10%, transparent),
                transparent 40%
            ),
            radial-gradient(
                circle at 0% 100%,
                color-mix(in srgb, var(--teal) 8%, transparent),
                transparent 34%
            ),
            linear-gradient(
                180deg,
                #fbfdff 0%,
                #f5f9fd 100%
            );
    }

    .hero-grid {
        gap: 20px;
    }

    .hero-copy {
        text-align: left;
    }

    .hero-copy .eyebrow {
        min-height: 30px;
        justify-content: flex-start;

        margin: 0;

        padding-inline: 9px;

        font-size: 9.5px;
    }

    .hero-copy h1 {
        max-width: 430px;

        margin: 14px 0 10px;

        font-size: clamp(35px, 10.7vw, 43px);
        line-height: 1.01;

        letter-spacing: -0.055em;
    }

    .hero-copy h1 span {
        display: inline;
    }

    .hero-copy h1 span::before {
        content: " ";
    }

    .hero-lead {
        max-width: 450px;

        color: #61758d;

        font-size: 14px;
        line-height: 1.55;
    }

    .home-search {
        margin-top: 18px;

        padding: 5px;

        border-radius: 15px;

        box-shadow:
            0 12px 28px
            rgba(18, 50, 94, 0.09);
    }

    .home-search input {
        height: 42px;

        font-size: 12.5px;
    }

    .home-search button {
        min-width: 74px;
        min-height: 42px;

        padding-inline: 11px;

        border-radius: 10px;

        font-size: 11.5px;
    }

    /*
     * Keep popular shortcuts inside the page container.
     * The previous negative/right bleed caused the first/last pills to appear
     * clipped in real phone screenshots.
     */
    .popular-searches {
        width: 100%;
        max-width: 100%;

        flex-wrap: wrap;

        overflow: visible;

        gap: 7px;

        margin: 12px 0 0;
        padding: 0;

        scroll-snap-type: none;
    }

    .popular-searches > span:first-child {
        width: 100% !important;
        min-height: auto;

        margin-bottom: 1px;

        font-size: 9px;
    }

    .popular-searches > a {
        min-height: 30px;

        padding-inline: 9px;

        font-size: 9.5px;

        scroll-snap-align: none;
    }

    /*
     * Trust markers are compact but readable. The final item spans the row
     * so labels do not shrink into tiny unreadable capsules.
     */
    .hero-assurances {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 7px;

        margin-top: 12px;
    }

    .hero-assurances span {
        min-width: 0;
        min-height: 36px;

        justify-content: flex-start;

        padding: 6px 8px;

        border-radius: 11px;

        font-size: 9px;
        line-height: 1.25;
    }

    .hero-assurances span:nth-child(3) {
        grid-column: 1 / -1;
    }

    /*
     * Compact overview card keeps useful statistics visible above the fold
     * without visually competing with the primary search task.
     */
    .hero-panel {
        border-radius: 18px;

        box-shadow:
            0 14px 34px
            rgba(16, 43, 80, 0.08);
    }

    .hero-panel-top {
        min-height: 44px;

        padding: 10px 11px;

        font-size: 8.5px;
    }

    .stat-grid {
        gap: 7px;

        padding: 8px;
    }

    .stat-card {
        min-height: 72px;

        padding: 10px 11px;

        border-radius: 12px;
    }

    .stat-card strong {
        font-size: 24px;
    }

    .stat-card span {
        margin-top: 4px;

        font-size: 8.5px;
        line-height: 1.3;
    }

    .hero-feature {
        min-height: 54px;

        grid-template-columns:
            34px
            minmax(0, 1fr)
            30px;

        margin: 8px;
        padding: 8px;

        border-radius: 12px;
    }

    .feature-icon {
        width: 34px;
        height: 34px;

        border-radius: 10px;

        font-size: 13px;
    }

    .hero-note {
        margin: 0 10px 10px;

        font-size: 7.5px;
    }
}


/*
 * The earlier mobile layer changed the generic .stat-card background to
 * white after site-modern.css. Explicitly restore the primary card gradient
 * so its white statistic text never becomes invisible.
 */
.hero-panel .stat-card.stat-card-primary {
    border-color: transparent !important;

    background:
        linear-gradient(
            145deg,
            var(--blue),
            color-mix(
                in srgb,
                var(--blue) 74%,
                #4338ca
            )
        ) !important;

    color: #ffffff;
}

.hero-panel .stat-card.stat-card-primary strong,
.hero-panel .stat-card.stat-card-primary span {
    color: #ffffff !important;
}


/* ============================================================================
   25.3 SERVICE DIRECTORY FILTERS — WRAP, DON'T OVERFLOW
   ============================================================================ */

.directory-section .filter-row[data-service-filters] {
    width: 100%;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    overflow: visible;

    margin-bottom: 24px;
    padding: 0;

    scrollbar-width: auto;
}

.directory-section .filter-row[data-service-filters] button {
    flex: 0 0 auto;

    min-height: 38px;

    padding: 0 12px;

    border-radius: 999px;

    white-space: nowrap;
}

@media (max-width: 599px) {

    .directory-section .directory-toolbar {
        gap: 9px;

        margin-bottom: 13px;
    }

    .directory-section .directory-toolbar > strong {
        justify-self: start;

        margin: 0;

        font-size: 10px;
    }

    .directory-section .filter-row[data-service-filters] {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 7px;

        margin-bottom: 20px;
    }

    .directory-section .filter-row[data-service-filters] button {
        width: 100%;
        min-width: 0;
        min-height: 40px;

        justify-content: center;

        padding: 0 8px;

        overflow: hidden;

        font-size: 10px;

        text-overflow: ellipsis;
    }

    .directory-section .filter-row[data-service-filters] button:first-child {
        grid-column: 1 / -1;
    }
}


/* ============================================================================
   25.4 QUICK LINKS — ICON-LED CARD SYSTEM
   ============================================================================ */

.quick-link-card,
.quick-item {
    position: relative;
}

.quick-link-card > .quick-mark,
.quick-item > .quick-mark {
    flex: 0 0 auto;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    color: var(--blue);

    font-size: 15px;
}

.quick-mark-blue {
    background: #edf4ff !important;
    color: #1769e8 !important;
}

.quick-mark-green {
    background: #eaf8f2 !important;
    color: #11805f !important;
}

.quick-mark-purple {
    background: #f3efff !important;
    color: #7355d6 !important;
}

.quick-mark-orange {
    background: #fff3e8 !important;
    color: #b96613 !important;
}

.quick-mark-cyan {
    background: #eaf9fc !important;
    color: #0a8394 !important;
}

.quick-mark-rose {
    background: #fff0f3 !important;
    color: #c24360 !important;
}

.quick-link-card-copy,
.quick-item-copy {
    min-width: 0;

    display: block;
}

.quick-link-card-action,
.quick-item-action {
    width: 34px;
    height: 34px;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    justify-self: end;

    border: 1px solid #e2e9f2;
    border-radius: 10px;

    background: #f8fafd;
    color: #8192a7;

    font-size: 12px;
}

.quick-link-card:hover .quick-link-card-action {
    border-color:
        color-mix(
            in srgb,
            var(--blue) 24%,
            #e2e9f2
        );

    background:
        color-mix(
            in srgb,
            var(--blue) 7%,
            #ffffff
        );

    color: var(--blue);
}

@media (max-width: 599px) {

    .quick-link-search {
        margin-bottom: 28px;
    }

    .quick-group {
        margin-top: 32px;
    }

    .quick-group:first-of-type {
        margin-top: 0;
    }

    .quick-group .section-heading-row {
        align-items: flex-start;

        margin-bottom: 12px;
    }

    .quick-group .section-heading-row h2 {
        font-size: 23px;
    }

    .quick-link-grid {
        gap: 10px;
    }

    .quick-link-card {
        min-height: 86px;

        grid-template-columns:
            46px
            minmax(0, 1fr)
            34px;

        gap: 11px;

        padding: 12px;

        border-radius: 16px;
    }

    .quick-link-card > .quick-mark {
        width: 46px !important;
        height: 46px !important;

        border-radius: 13px !important;

        font-size: 15px;
    }

    .quick-link-card-copy h3 {
        margin: 2px 0 3px;

        font-size: 13px;
        line-height: 1.3;
    }

    .quick-link-card-copy p {
        display: -webkit-box;

        margin: 0;

        overflow: hidden;

        color: var(--m-muted);

        font-size: 10px;
        line-height: 1.4;

        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .quick-link-card-copy small {
        margin-bottom: 2px;

        font-size: 8px;
    }
}


/* ============================================================================
   25.5 SCAM CTA — GUARANTEED CONTRAST
   ============================================================================ */

.scam-directory .scam-safety-banner > a.scam-report-link,
.scam-directory .scam-safety-banner > a.scam-report-link:link,
.scam-directory .scam-safety-banner > a.scam-report-link:visited {
    border-color: #a82c1d !important;

    background:
        linear-gradient(
            135deg,
            #bd3c27,
            #a92f20
        ) !important;

    color: #ffffff !important;

    text-shadow: none !important;
}

.scam-directory
    .scam-safety-banner
    > a.scam-report-link
    .scam-report-link-label,
.scam-directory
    .scam-safety-banner
    > a.scam-report-link
    i {
    color: #ffffff !important;
}

.scam-directory .scam-safety-banner > a.scam-report-link:hover {
    border-color: #8d2418 !important;

    background:
        linear-gradient(
            135deg,
            #a93221,
            #8f2418
        ) !important;

    color: #ffffff !important;
}

@media (max-width: 700px) {

    .scam-directory .scam-safety-banner {
        gap: 11px;

        padding: 14px;

        border-radius: 16px;
    }

    .scam-directory .scam-safety-banner > a.scam-report-link {
        min-height: 46px;

        justify-content: center;

        margin-top: 3px;

        border-radius: 12px;

        font-size: 11px;
    }
}


/* ============================================================================
   25.6 SERVICE DETAILS — MOBILE NAVIGATION PILLS
   ============================================================================ */

.detail-jumpbar {
    overflow: hidden;

    border-bottom: 1px solid #e1e8f1;

    background: rgba(255, 255, 255, 0.97);

    box-shadow:
        0 7px 20px
        rgba(15, 38, 70, 0.06);

    backdrop-filter: blur(14px);
}

.detail-jumpbar .detail-jumpbar-inner {
    display: flex;
    align-items: center;

    gap: 9px;

    min-height: 56px;

    padding-block: 7px;
}

.detail-jumpbar-label {
    flex: 0 0 auto;

    min-height: 36px;

    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 0 10px;

    border-radius: 11px;

    background: #eef4ff;
    color: var(--blue);

    font-size: 10px;
    font-weight: 800;

    white-space: nowrap;
}

.detail-jumpbar-links {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 7px;

    overflow-x: auto;

    padding: 2px 1px;

    scrollbar-width: none;

    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.detail-jumpbar-links::-webkit-scrollbar {
    display: none;
}

.detail-jumpbar-links > a {
    flex: 0 0 auto;

    min-height: 36px;

    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 0 10px;

    border: 1px solid #e1e8f1;
    border-radius: 11px;

    background: #f8fafd;
    color: #53677f;

    font-size: 10px;
    font-weight: 750;

    white-space: nowrap;

    scroll-snap-align: start;
}

.detail-jumpbar-links > a i {
    color: #748ba6;

    font-size: 10px;
}

.detail-jumpbar-links > a:hover,
.detail-jumpbar-links > a:focus-visible {
    border-color:
        color-mix(
            in srgb,
            var(--blue) 30%,
            #e1e8f1
        );

    background:
        color-mix(
            in srgb,
            var(--blue) 7%,
            #ffffff
        );

    color: var(--blue);
}

.detail-jumpbar-links > a:hover i,
.detail-jumpbar-links > a:focus-visible i {
    color: var(--blue);
}

.back-link {
    min-height: 38px;

    width: fit-content;

    padding: 0 11px;

    border: 1px solid #dce6f1;
    border-radius: 11px;

    background: #ffffff;

    box-shadow: var(--m-shadow-xs);
}

@media (max-width: 599px) {

    /*
     * The mobile header contains both the brand row and language row.
     * Keep the guide navigation immediately below it while scrolling.
     */
    .detail-jumpbar {
        position: sticky;

        z-index: 34;
        top: 106px;
    }

    .detail-jumpbar .detail-jumpbar-inner {
        display: block;

        min-height: 0;

        padding-block: 7px;
    }

    .detail-jumpbar-label {
        min-height: 28px;

        margin-bottom: 5px;

        padding: 0 8px;

        background: transparent;

        font-size: 9px;
    }

    .detail-jumpbar-links {
        margin-right: -14px;

        padding-right: 14px;
    }

    .detail-jumpbar-links > a {
        min-height: 35px;

        padding-inline: 9px;

        border-radius: 999px;

        font-size: 9.5px;
    }

    .content-card,
    .detail-sidebar {
        scroll-margin-top: 188px;
    }

    .action-card {
        scroll-margin-top: 188px;
    }
}


/* ============================================================================
   25.7 WHATSAPP — TRUE FLOATING BUTTON ON ALL VIEWPORTS
   ============================================================================ */

/*
 * Legacy site.css turns .support-dock into a full-width bottom bar on mobile
 * and sets left: 0. Reset every one of those properties explicitly here.
 */
body .support-dock.support-dock-whatsapp-only {
    position: fixed !important;

    z-index: 120 !important;

    top: auto !important;
    right: max(14px, env(safe-area-inset-right)) !important;
    bottom:
        max(
            14px,
            env(safe-area-inset-bottom)
        ) !important;
    left: auto !important;

    width: auto !important;
    min-width: 0 !important;
    height: auto !important;

    display: block !important;
    grid-template-columns: none !important;

    gap: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    background: transparent !important;

    box-shadow: none !important;

    backdrop-filter: none !important;
}

body
    .support-dock.support-dock-whatsapp-only
    > .support-action.support-whatsapp {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    margin: 0 !important;
    padding: 0 !important;

    border: 2px solid #ffffff !important;
    border-radius: 50% !important;

    background: #25d366 !important;

    color: #ffffff !important;

    box-shadow:
        0 14px 32px
        rgba(18, 72, 45, 0.30) !important;

    font-size: 26px !important;
    line-height: 1 !important;
}

body
    .support-dock.support-dock-whatsapp-only
    > .support-action.support-whatsapp
    > i {
    color: #ffffff !important;

    font-size: inherit !important;
    line-height: 1 !important;
}

@media (min-width: 900px) {

    body .support-dock.support-dock-whatsapp-only {
        right: 22px !important;
        bottom: 22px !important;
    }

    body
        .support-dock.support-dock-whatsapp-only
        > .support-action.support-whatsapp {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        min-height: 56px !important;
    }
}


/* ============================================================================
   25.8 MOTION ACCESSIBILITY FOR v4.1 COMPONENTS
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {

    .quick-link-card-action,
    .detail-jumpbar-links > a,
    .back-link {
        transition: none !important;
    }
}


/* ============================================================================
   26. FRONTEND v4.2 — MOBILE PROCESS SECTION + FOOTER ATTRIBUTION
   ----------------------------------------------------------------------------
   This final layer intentionally loads last.

   Goals:
   1. Make the homepage application-guidance section genuinely mobile-first.
   2. Remove horizontal card scrolling on phones.
   3. Keep each step readable as a full-width vertical card.
   4. Preserve a compact desktop grid at larger breakpoints.
   5. Keep the footer management credit text-only (no repeated logo/XQ badge).
   ============================================================================ */


/* ============================================================================
   26.1 PROCESS SECTION — SHARED FOUNDATION
   ============================================================================ */

.process-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 100% 0%,
            color-mix(in srgb, var(--blue) 7%, transparent),
            transparent 30rem
        ),
        #f6f9fd;
}

.process-section > .page-container {
    position: relative;
}

.process-heading {
    margin-bottom: 24px;
}

.process-heading > div {
    width: 100%;
    max-width: 790px;
}

.process-heading h2 {
    text-wrap: balance;
}

.process-heading p {
    max-width: 680px;
}


/* ============================================================================
   26.2 PROCESS GRID — MOBILE-FIRST STACK
   ============================================================================ */

.process-section .process-grid {
    width: 100%;

    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;

    gap: 12px !important;

    overflow: visible !important;

    margin: 0 !important;
    padding: 0 !important;

    scroll-snap-type: none !important;
}

.process-section .process-card {
    position: relative;

    width: 100%;
    min-width: 0 !important;
    min-height: 0 !important;

    display: grid;
    grid-template-columns: 1fr;

    gap: 17px;

    flex: none !important;

    overflow: hidden;

    margin: 0;
    padding: 18px;

    scroll-snap-align: none !important;

    border: 1px solid #dce6f2;
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 6px 22px
        rgba(15, 38, 70, 0.045);

    transition:
        border-color 180ms var(--xq-ease),
        box-shadow 180ms var(--xq-ease),
        transform 180ms var(--xq-ease);
}

/* Soft visual tone per step without reducing text contrast. */
.process-section .process-card-search {
    background:
        linear-gradient(
            135deg,
            color-mix(in srgb, var(--blue) 4%, #ffffff),
            #ffffff 52%
        );
}

.process-section .process-card-documents {
    background:
        linear-gradient(
            135deg,
            rgba(111, 79, 214, 0.045),
            #ffffff 52%
        );
}

.process-section .process-card-official {
    background:
        linear-gradient(
            135deg,
            rgba(17, 128, 95, 0.045),
            #ffffff 52%
        );
}

.process-section .process-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;
}

.process-section .process-icon {
    width: 46px !important;
    height: 46px !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    flex: 0 0 46px;

    margin: 0 !important;

    border: 0;
    border-radius: 14px !important;

    background: #eaf2ff;
    color: var(--blue);

    font-size: 16px !important;

    box-shadow: none;
}

.process-section .process-card-documents .process-icon {
    background: #f2efff;
    color: #6f4fd6;
}

.process-section .process-card-official .process-icon {
    background: #eaf8f2;
    color: #11805f;
}

.process-section .process-step-number {
    position: static !important;

    width: auto !important;
    height: auto !important;

    display: block !important;

    margin: 0 !important;

    background: transparent !important;

    color: #e8eef6 !important;

    font-size: 34px !important;
    font-weight: 900 !important;
    line-height: 1 !important;

    letter-spacing: -0.06em !important;
}

.process-section .process-card-copy {
    min-width: 0;
}

.process-section .process-card-copy h3 {
    margin: 0 0 7px !important;

    color: var(--xq-ink);

    font-size: 16px !important;
    font-weight: 800;
    line-height: 1.3;

    letter-spacing: -0.025em;
}

.process-section .process-card-copy p {
    margin: 0 !important;

    color: var(--xq-muted);

    font-size: 12px !important;
    line-height: 1.6 !important;
}


/* ============================================================================
   26.3 RESOURCE CENTRE CALLOUT — MOBILE
   ============================================================================ */

.process-section .forms-callout {
    width: 100%;

    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) !important;

    align-items: start;

    gap: 12px !important;

    margin: 16px 0 0 !important;
    padding: 16px !important;

    border: 1px solid #d7e3f2;
    border-radius: 18px !important;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f2f7ff
        ) !important;

    box-shadow:
        0 7px 24px
        rgba(15, 38, 70, 0.045);
}

.process-section .forms-callout-icon {
    width: 48px !important;
    height: 48px !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px !important;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            color-mix(in srgb, var(--blue) 74%, #355cff)
        );

    color: #ffffff;

    font-size: 17px;

    box-shadow:
        0 10px 22px
        color-mix(in srgb, var(--blue) 18%, transparent);
}

.process-section .forms-callout-copy {
    min-width: 0;
}

.process-section .forms-callout-copy > span {
    display: inline-flex;
    align-items: center;

    color: var(--blue);

    font-size: 9px !important;
    font-weight: 850;
    line-height: 1.2;

    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.process-section .forms-callout-copy h3 {
    margin: 5px 0 5px !important;

    color: var(--xq-ink);

    font-size: 14px !important;
    font-weight: 800;
    line-height: 1.38 !important;

    letter-spacing: -0.02em;
}

.process-section .forms-callout-copy p {
    margin: 0 !important;

    color: var(--xq-muted);

    font-size: 11px !important;
    line-height: 1.55 !important;
}

.process-section .forms-callout-action {
    grid-column: 1 / -1 !important;

    width: 100% !important;
    min-height: 46px;

    margin: 2px 0 0 !important;

    justify-content: space-between;

    padding-inline: 15px;
}

.process-section .forms-callout-action > i {
    transition: transform 180ms var(--xq-ease);
}

.process-section .forms-callout-action:hover > i {
    transform: translateX(3px);
}


/* ============================================================================
   26.4 VERY SMALL PHONES
   ============================================================================ */

@media (max-width: 380px) {

    .process-heading h2 {
        font-size: 29px !important;
        line-height: 1.08 !important;
    }

    .process-heading p {
        font-size: 13px !important;
    }

    .process-section .process-card {
        gap: 15px;
        padding: 16px;
    }

    .process-section .process-icon {
        width: 43px !important;
        height: 43px !important;

        flex-basis: 43px;

        border-radius: 13px !important;
    }

    .process-section .process-step-number {
        font-size: 31px !important;
    }

    .process-section .process-card-copy h3 {
        font-size: 15px !important;
    }

    .process-section .forms-callout {
        grid-template-columns: 44px minmax(0, 1fr) !important;
        padding: 14px !important;
    }

    .process-section .forms-callout-icon {
        width: 44px !important;
        height: 44px !important;
    }

    .process-section .forms-callout-copy h3 {
        font-size: 13px !important;
    }
}


/* ============================================================================
   26.5 TABLET — TWO COLUMNS
   ============================================================================ */

@media (min-width: 600px) and (max-width: 899px) {

    .process-section .process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }

    .process-section .process-card:last-child {
        grid-column: 1 / -1;
    }

    .process-section .forms-callout {
        grid-template-columns:
            50px minmax(0, 1fr) auto !important;

        align-items: center;

        padding: 18px !important;
    }

    .process-section .forms-callout-action {
        grid-column: auto !important;
        width: auto !important;

        margin: 0 !important;
    }
}


/* ============================================================================
   26.6 DESKTOP — THREE-COLUMN PROCESS GRID
   ============================================================================ */

@media (min-width: 900px) {

    .process-heading {
        margin-bottom: 28px;
    }

    .process-section .process-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr)) !important;

        gap: 14px !important;
    }

    .process-section .process-card,
    .process-section .process-card:last-child {
        grid-column: auto;

        min-height: 208px !important;

        padding: 20px;
    }

    .process-section .process-card:hover {
        border-color:
            color-mix(
                in srgb,
                var(--blue) 20%,
                #dce6f2
            );

        transform: translateY(-3px);

        box-shadow:
            0 15px 34px
            rgba(15, 38, 70, 0.075);
    }

    .process-section .forms-callout {
        grid-template-columns:
            50px minmax(0, 1fr) auto !important;

        align-items: center;

        margin-top: 20px !important;
        padding: 18px 20px !important;
    }

    .process-section .forms-callout-action {
        grid-column: auto !important;

        width: auto !important;

        margin: 0 !important;
    }
}


/* ============================================================================
   26.7 FOOTER — TEXT-ONLY MANAGEMENT ATTRIBUTION
   ============================================================================ */

/*
 * The footer already displays the website logo in its primary brand area.
 * Do not repeat a logo or XQ initials inside the management attribution.
 */
.footer-managed-brand,
.footer-managed-logo,
.footer-managed-mark {
    display: none !important;
}

.footer-managed-by {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 5px !important;

    min-width: 0;
}

.footer-managed-prefix {
    flex: 0 0 auto;
}

.footer-managed-link {
    display: inline-flex;
    align-items: center;

    gap: 5px !important;

    min-width: 0;

    color: inherit;

    font-weight: 650;

    text-decoration: none;
}

.footer-managed-name {
    min-width: 0;
}

.footer-managed-link > i {
    flex: 0 0 auto;

    font-size: 9px;
}


/* ============================================================================
   26.8 REDUCED MOTION
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {

    .process-section .process-card,
    .process-section .forms-callout-action > i {
        transition: none !important;
    }

    .process-section .process-card:hover,
    .process-section .forms-callout-action:hover > i {
        transform: none !important;
    }
}


/* ============================================================================
   27. ADD TO HOME SCREEN / MOBILE INSTALL EXPERIENCE
   ============================================================================

   The install card is intentionally mobile-only and non-modal:
   - It never blocks navigation or page content.
   - Chromium can upgrade the primary action to a native install prompt.
   - iOS displays Share -> Add to Home Screen instructions.
   - The card sits above the existing floating WhatsApp action.
   ============================================================================ */

.install-app-card[hidden],
.mobile-install-action[hidden] {
    display: none !important;
}

/* Mobile-menu installation shortcut. */
.mobile-nav .mobile-install-action {
    width: 100%;
    min-height: 50px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0 15px;

    border: 1px solid
        color-mix(
            in srgb,
            var(--blue) 18%,
            var(--xq-line)
        );
    border-radius: 13px;

    background:
        color-mix(
            in srgb,
            var(--blue) 6%,
            #ffffff
        );

    color: var(--blue);

    font: inherit;
    font-size: 14px;
    font-weight: 800;

    text-align: left;

    cursor: pointer;
}

.mobile-nav .mobile-install-action > i {
    width: 20px;

    color: var(--blue);

    font-size: 15px;
    text-align: center;
}

.mobile-nav .mobile-install-action:active {
    transform: scale(0.99);
}

/* --------------------------------------------------------------------------
   Floating install suggestion
   -------------------------------------------------------------------------- */

.install-app-card {
    position: fixed;
    z-index: 58;

    right: 12px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    left: 12px;

    width: auto;
    max-width: 460px;

    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: start;

    gap: 12px;

    margin-inline: auto;
    padding: 14px 42px 14px 14px;

    border: 1px solid #d7e3f1;
    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(246, 250, 255, 0.99)
        );

    box-shadow:
        0 20px 55px
        rgba(9, 31, 61, 0.20);

    opacity: 0;

    transform: translateY(18px) scale(0.985);

    pointer-events: none;

    transition:
        opacity 200ms var(--xq-ease),
        transform 200ms var(--xq-ease);

    backdrop-filter: blur(18px);
}

.install-app-card.is-visible {
    opacity: 1;

    transform: translateY(0) scale(1);

    pointer-events: auto;
}

/* App icon */
.install-app-icon {
    width: 50px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid #dce7f5;
    border-radius: 15px;

    background: #f5f9ff;
}

.install-app-icon img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* Close button */
.install-app-close {
    position: absolute;
    top: 9px;
    right: 9px;

    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 10px;

    background: transparent;
    color: #7c8ca2;

    font-size: 14px;

    cursor: pointer;
}

.install-app-close:hover {
    background: #edf3fb;
    color: var(--xq-ink);
}

/* Content */
.install-app-content {
    min-width: 0;
}

.install-app-kicker {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-bottom: 3px;

    color: var(--blue);

    font-size: 9px;
    font-weight: 850;
    line-height: 1.2;

    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.install-app-content > strong {
    display: block;

    padding-right: 3px;

    color: var(--xq-ink);

    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;

    letter-spacing: -0.02em;
}

.install-app-content > p {
    margin: 4px 0 0;

    color: var(--xq-muted);

    font-size: 11px;
    line-height: 1.5;
}

/* Manual iOS / browser-menu steps */
.install-app-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 7px;

    margin-top: 10px;
    padding: 9px;

    border: 1px solid #dfe8f4;
    border-radius: 12px;

    background: #f7faff;

    color: #53667e;

    font-size: 9.5px;
    line-height: 1.35;
}

.install-app-steps[hidden] {
    display: none !important;
}

.install-app-steps > span {
    min-width: 0;

    display: inline-flex;
    align-items: center;

    gap: 5px;
}

.install-app-steps > span > i {
    color: var(--blue);
}

.install-app-steps > i {
    color: #9baabd;

    font-size: 8px;
}

.install-app-steps strong {
    color: var(--xq-ink);
    font-weight: 800;
}

/* Actions */
.install-app-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 11px;
}

.install-app-primary,
.install-app-later {
    min-height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 12px;

    border-radius: 11px;

    font: inherit;
    font-size: 10.5px;
    font-weight: 800;

    cursor: pointer;
}

.install-app-primary {
    border: 1px solid var(--blue);

    background: var(--blue);
    color: #ffffff;

    box-shadow:
        0 8px 18px
        color-mix(
            in srgb,
            var(--blue) 20%,
            transparent
        );
}

.install-app-primary:hover {
    background:
        color-mix(
            in srgb,
            var(--blue) 88%,
            #000000
        );

    transform: translateY(-1px);
}

.install-app-later {
    border: 1px solid #dbe5f1;

    background: #ffffff;
    color: #66788f;
}

.install-app-later:hover {
    border-color: #c9d6e5;
    color: var(--xq-ink);
}

/* --------------------------------------------------------------------------
   Very small phones
   -------------------------------------------------------------------------- */

@media (max-width: 380px) {

    .install-app-card {
        right: 9px;
        left: 9px;

        grid-template-columns: 44px minmax(0, 1fr);

        gap: 10px;

        padding: 12px 38px 12px 12px;

        border-radius: 17px;
    }

    .install-app-icon {
        width: 44px;
        height: 44px;

        border-radius: 13px;
    }

    .install-app-content > strong {
        font-size: 13px;
    }

    .install-app-content > p {
        font-size: 10.5px;
    }

    .install-app-steps {
        grid-template-columns: 1fr;

        gap: 5px;
    }

    .install-app-steps > i {
        display: none;
    }

    .install-app-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .install-app-primary,
    .install-app-later {
        width: 100%;
    }
}

/* Desktop users do not need the mobile Home Screen prompt. */
@media (min-width: 900px) {

    .install-app-card,
    .mobile-install-action {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    .install-app-card,
    .install-app-primary,
    .install-app-later,
    .mobile-install-action {
        transition: none !important;
    }

    .install-app-card,
    .install-app-card.is-visible,
    .install-app-primary:hover,
    .mobile-install-action:active {
        transform: none !important;
    }
}
