/* ============================================================
   INTERIOR PAGES — cards, mv, process, contact, clients strip
   Mobile-first: base rules are for phones.
   ============================================================ */

/* ---------- Service cards ---------- */

.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    border-color: var(--electric);
    box-shadow: 0 12px 32px rgba(43, 57, 144, 0.1);
}

.card-photo {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.25s ease, transform 0.25s ease;
}

.card:hover .card-photo img {
    filter: grayscale(0.4);
    transform: scale(1.03);
}

.card-photo .tag {
    position: absolute;
    left: 14px;
    bottom: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: var(--indigo);
    padding: 5px 11px;
    border-radius: 99px;
}

.card-body {
    padding: 20px 20px 22px;
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}

.card-body > p {
    margin-top: 8px;
    color: var(--slate);
    font-size: 14px;
    line-height: 1.55;
}

.card ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.card li {
    position: relative;
    padding: 8px 0 8px 22px;
    font-size: 14px;
    color: var(--ink);
    border-top: 1px dashed var(--line);
    line-height: 1.5;
}

.card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 9px;
    height: 9px;
    border: 2.5px solid var(--electric);
    border-radius: 2px;
}

@media (min-width: 640px) {
    .card-photo { height: 260px; }
    .card-body  { padding: 26px 28px 30px; }
    .card h3    { font-size: 20px; }
    .card-body > p { font-size: 14.5px; margin-top: 10px; }
    .card li    { font-size: 14.5px; padding-left: 22px; }
}

@media (min-width: 900px) {
    .cards { grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; border-radius: 14px; }
    .card  { border-radius: 14px; }
    .card-photo { height: 320px; }
}

/* ---------- Mission / Vision ---------- */

.mv {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
}

.mv-card {
    border-radius: 12px;
    padding: 26px 22px;
    color: #fff;
}

.mv-card.mission { background: var(--navy); }
.mv-card.vision  { background: var(--electric); }

.mv-card h3 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    opacity: 0.85;
}

.mv-card p {
    margin-top: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.45;
}

@media (min-width: 640px) {
    .mv-card { padding: 32px 26px; }
    .mv-card p { font-size: 19px; }
}

@media (min-width: 900px) {
    .mv { grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
    .mv-card { padding: 40px 34px; border-radius: 14px; }
    .mv-card p { font-size: 21px; }
    .mv-card h3 { font-size: 13px; letter-spacing: 0.3em; }
}

/* ---------- Process steps ---------- */

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.step {
    padding: 0;
    position: relative;
}

.step .dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--electric);
    color: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.step h3 {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
}

.step p {
    margin-top: 8px;
    color: var(--slate);
    font-size: 14.5px;
    max-width: 34ch;
    line-height: 1.55;
}

@media (min-width: 900px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin-top: 48px;
    }
    .step { padding: 0 26px; }
    .step .dot { width: 56px; height: 56px; font-size: 18px; }
    .step h3 { font-size: 20px; margin-top: 20px; }
    .step::after {
        content: "";
        position: absolute;
        top: 27px;
        left: calc(26px + 56px);
        right: 0;
        border-top: 2px dashed #b9c4e6;
    }
    .step:last-child::after { display: none; }
}

/* ---------- EHS Quote block ---------- */

.quote {
    margin-top: 40px;
    background: var(--navy);
    color: #fff;
    border-radius: 14px;
    padding: 26px 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.quote .mark {
    font-family: "Poppins", sans-serif;
    font-size: 56px;
    line-height: 0.5;
    color: var(--electric);
}

.quote p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #d9e1f8;
}

.quote small {
    display: block;
    margin-top: 14px;
    font-family: "Inter", sans-serif;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sky);
}

@media (min-width: 640px) {
    .quote p { font-size: 17.5px; }
    .quote { padding: 34px 28px; }
}

@media (min-width: 900px) {
    .quote {
        margin-top: 64px;
        padding: 48px 44px;
        border-radius: 16px;
        grid-template-columns: auto 1fr;
        gap: 26px;
        align-items: start;
    }
    .quote .mark { font-size: 80px; line-height: 0.6; }
    .quote p { font-size: 19px; }
    .quote small { font-size: 12px; letter-spacing: 0.2em; }
}

/* ---------- Contact page ---------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
}

.contact-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.contact-item .ci {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--mist);
    color: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .ci svg {
    width: 18px;
    height: 18px;
}

.contact-item b {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    display: block;
    margin-bottom: 2px;
}

.contact-item span {
    color: var(--slate);
    font-size: 14px;
    /* Wrap long addresses/emails on mobile */
    overflow-wrap: anywhere;
}

.contact-item a {
    color: var(--slate);
    text-decoration: none;
}

.contact-item a:hover { color: var(--indigo); }

.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 20px;
}

.form label {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 14px 0 6px;
}

.form input,
.form textarea {
    width: 100%;
    border: 1px solid #d6dcec;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: "Inter", sans-serif;
    font-size: 15px;    /* ≥ 16px prevents iOS auto-zoom on focus */
    color: var(--ink);
    background: #fafbfe;
    /* Prevent iOS Safari zoom */
    -webkit-appearance: none;
    appearance: none;
}

/* iOS Safari zooms if font-size < 16px; keep at 15 on desktop, bump on mobile */
@media (max-width: 640px) {
    .form input,
    .form textarea {
        font-size: 16px;
    }
}

.form input:focus,
.form textarea:focus {
    outline: 2px solid var(--electric);
    border-color: transparent;
}

.form textarea {
    resize: vertical;
    min-height: 90px;
    font-family: inherit;
}

.form .btn {
    width: 100%;
    margin-top: 20px;
}

.form .ok {
    margin-top: 14px;
    color: #157a46;
    font-size: 14px;
}

.form .err {
    margin-top: 6px;
    color: #b3261e;
    font-size: 13px;
}

@media (min-width: 640px) {
    .form { padding: 26px 24px; }
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 44px;
    }
    .form { padding: 30px; border-radius: 14px; }
    .contact-item { padding: 18px 0; gap: 16px; }
    .contact-item .ci { width: 40px; height: 40px; border-radius: 10px; }
    .contact-item .ci svg { width: 20px; height: 20px; }
    .contact-item b { font-size: 13px; letter-spacing: 0.1em; }
    .contact-item span { font-size: 15px; }
}

/* ============================================================
   CLIENTS SCROLL STRIP (About page)
   ============================================================ */

.client-scroll {
    position: relative;
    margin-top: 28px;
}

.cs-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px var(--pad-x) 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* Scrollbar */
.cs-track::-webkit-scrollbar          { height: 6px; }
.cs-track::-webkit-scrollbar-track    { background: transparent; }
.cs-track::-webkit-scrollbar-thumb    { background: var(--line); border-radius: 99px; }
.cs-track::-webkit-scrollbar-thumb:hover { background: var(--electric); }
.cs-track { scrollbar-width: thin; scrollbar-color: var(--line) transparent; }

.cs-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 130px;
    height: 90px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
    color: var(--slate);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 13px;
    filter: grayscale(1);
    transition: filter 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cs-item img {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
}

.cs-item:hover {
    filter: grayscale(0);
    border-color: var(--electric);
    color: var(--indigo);
    transform: translateY(-2px);
}

/* Arrows: hidden on touch, shown from tablet up */
.cs-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--indigo);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 8px 22px rgba(43, 57, 144, 0.1);
    align-items: center;
    justify-content: center;
    padding: 0 0 3px;
    transition: background 0.15s ease, color 0.15s ease;
}

.cs-arrow:hover {
    background: var(--electric);
    color: #fff;
    border-color: var(--electric);
}

.cs-prev { left: -12px; }
.cs-next { right: -12px; }

@media (min-width: 640px) {
    .cs-item { width: 150px; height: 100px; font-size: 14px; }
    .cs-track { gap: 16px; }
}

@media (min-width: 900px) {
    .client-scroll { margin-top: 36px; padding: 0 6px; }
    .cs-track { padding: 6px 24px 20px; gap: 20px; }
    .cs-item { width: 180px; height: 120px; border-radius: 12px; }
    .cs-item img { max-height: 100px; }
    .cs-arrow { display: flex; width: 44px; height: 44px; font-size: 24px; }
}

/* ============================================================
   PROJECTS GRID — modern 2-column image-card layout
   Mobile-first: 1 column on phones, 2 columns from tablet up.
   ============================================================ */

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 32px;
}

.project-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s ease,
                border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: var(--electric);
    box-shadow: 0 24px 48px rgba(43, 57, 144, 0.14);
}

/* --- Image with gradient overlay + category tag --- */

.project-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #e8ecf5, #d6dcec);
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: block;
}

.project-card:hover .project-media img {
    transform: scale(1.06);
}

/* Diagonal shine sweep on hover */
.project-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 30%,
        rgba(255, 255, 255, 0.22) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
    pointer-events: none;
}

.project-card:hover .project-shine {
    transform: translateX(100%);
}

/* Bottom-of-image dark gradient so tag sits readable */
.project-media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(30, 42, 110, 0.55) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Category tag pinned to the media area */
.project-cat {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(43, 57, 144, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 6px 12px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* --- Body: title, description, arrow --- */

.project-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.project-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -0.005em;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.project-card:hover .project-body h3 {
    color: var(--indigo);
}

.project-body p {
    color: var(--slate);
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
}

/* --- Breakpoints --- */

@media (min-width: 640px) {
    .projects-grid { gap: 24px; margin-top: 40px; }
    .project-body { padding: 24px 24px 26px; }
    .project-body h3 { font-size: 20px; }
}

@media (min-width: 900px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;   /* 2 columns from tablet up */
        gap: 30px;
        margin-top: 44px;
    }
    .project-body { padding: 28px 28px 30px; }
    .project-body h3 { font-size: 22px; }
    .project-body p  { font-size: 14.5px; }
    .project-cat     { left: 18px; top: 18px; font-size: 11px; padding: 7px 14px; }
}

/* ============================================================
   SERVICE CARD — enquiry CTA button
   ============================================================ */

.card-cta {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
}

.card-cta .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .card-cta { margin-top: 20px; padding-top: 18px; }
}

/* ============================================================
   ENQUIRY POPUP MODAL
   ============================================================ */

.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.enquiry-modal.open {
    display: flex;
}

.enquiry-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 26, 60, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    animation: enqFade 0.2s ease;
}

.enquiry-panel {
    position: relative;
    z-index: 2;
    background: #fff;
    width: 100%;
    max-width: 460px;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 18px 18px 0 0;
    padding: 26px 22px 28px;
    animation: enqSlideUp 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 -20px 60px rgba(20, 26, 60, 0.3);
}

@keyframes enqFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes enqSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

@media (min-width: 640px) {
    .enquiry-modal { align-items: center; padding: 20px; }
    .enquiry-panel {
        border-radius: 18px;
        padding: 34px 32px 32px;
        animation: enqPopIn 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    @keyframes enqPopIn {
        from { transform: scale(0.94) translateY(12px); opacity: 0; }
        to   { transform: scale(1) translateY(0); opacity: 1; }
    }
}

.enquiry-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: var(--mist);
    color: var(--slate);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.enquiry-close:hover {
    background: var(--electric);
    color: #fff;
}

.enquiry-head {
    padding-right: 30px;
    margin-bottom: 18px;
}

.enquiry-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--navy);
    margin-top: 6px;
    line-height: 1.25;
}

.enquiry-service-line {
    margin-top: 8px;
    font-size: 13.5px;
    color: var(--slate);
}

.enquiry-service-line span {
    font-weight: 600;
    color: var(--indigo);
}

.enquiry-form .field {
    margin-bottom: 14px;
}

.enquiry-form label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    border: 1px solid #d6dcec;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;   /* prevents iOS zoom */
    color: var(--ink);
    background: #fafbfe;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    outline: 2px solid var(--electric);
    border-color: transparent;
}

.enquiry-form textarea {
    resize: vertical;
    min-height: 84px;
    font-family: inherit;
}

.enquiry-form .btn {
    width: 100%;
    margin-top: 6px;
}

.enquiry-form .err {
    color: #b3261e;
    font-size: 12.5px;
    margin-top: 5px;
    min-height: 0;
}

.enquiry-form .err:empty {
    display: none;
}

#enquiryOk {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #e6f6ec;
    color: #157a46;
    font-size: 14px;
}

#enquiryErr {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fdecea;
    color: #b3261e;
    font-size: 14px;
}

/* Prevent background scroll while modal is open */
body.enquiry-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .enquiry-backdrop,
    .enquiry-panel {
        animation: none;
    }
}

/* ============================================================
   ADDITIONAL SUPPORT SERVICES — Environmental Clearance, Peer Review
   Mobile-first: 1 column on phones, 2 columns from tablet up.
   ============================================================ */

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

.support-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px 22px 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: var(--electric);
    box-shadow: 0 16px 36px rgba(43, 57, 144, 0.12);
}

.support-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(160deg, var(--indigo), var(--navy));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 16px;
}

.support-icon svg {
    width: 26px;
    height: 26px;
}

.support-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.32;
    margin-bottom: 8px;
}

.support-intro {
    color: var(--slate);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0 0 4px;
    flex-grow: 1;
}

.support-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
    border-top: 1px dashed var(--line);
}

.support-list li:first-child {
    border-top: 0;
}

.support-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--electric);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center / 60% no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center / 60% no-repeat;
}

.support-card .card-cta {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
}

.support-card .card-cta .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .support-grid { gap: 24px; margin-top: 40px; }
    .support-card { padding: 30px 26px 28px; }
    .support-icon { width: 56px; height: 56px; margin-bottom: 18px; }
    .support-icon svg { width: 28px; height: 28px; }
    .support-card h3 { font-size: 19px; }
}

@media (min-width: 900px) {
    .support-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        margin-top: 44px;
    }
    .support-card { padding: 32px 30px 30px; border-radius: 16px; }
    .support-card h3 { font-size: 20px; }
    .support-list li { font-size: 14.5px; }
}
