/* =========================================================================
   Smart Start IT — Brand Utility Classes + Responsive Typography
   Loaded globally via ssit-brand-css.php mu-plugin.
   ========================================================================= */

/* ===== Brand gradient text =====
   Civic blue -> Vivid magenta -> Aurora green */
.ssit-grad {
    background: linear-gradient(90deg, #2859da 0%, #cc38ff 50%, #62d5a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

/* ===== Fluid responsive typography ===== 
   Targets only headings inside Divi sections so Divi admin / blog editor isn't affected.
   Uses clamp() so sizes scale smoothly between mobile and desktop. */
/* Fluid heading sizes REMOVED — every heading now sets clamp() inline so broad rules with !important were fighting the per-section sizes and breaking TB header/footer headings. Targeted overrides only via inline styles or section_replace going forward. */

/* Hero / first-section padding scale-down on mobile */
@media (max-width: 768px) {
    .et_pb_section_0,
    .et_pb_section.et_pb_section_first {
        padding-top: 60px !important;
        padding-bottom: 50px !important;
    }
    /* Body lead paragraph - shrink on mobile */
    .et_pb_section p {
        font-size: clamp(15px, 4vw, 17px);
    }
    /* Stacked buttons in hero - prevent overflow */
    .et_pb_section a[style*="display:inline-block"][style*="padding:18px"] {
        display: block !important;
        margin: 0 0 12px 0 !important;
        text-align: center !important;
        padding: 16px 24px !important;
    }
}

/* ===== Card hover lift =====
   Applies to .ssit-card and to every Divi 5 blurb. */
.ssit-card,
.et_pb_blurb {
    transition:
        transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
        border-color 0.28s ease;
    will-change: transform;
}
.ssit-card:hover,
.ssit-card:focus-within,
.et_pb_blurb:hover,
.et_pb_blurb:focus-within {
    transform: translateY(-4px);
    box-shadow:
        0 14px 32px -10px rgba(11, 17, 32, 0.20),
        0 4px 12px -6px rgba(11, 17, 32, 0.10);
}
.ssit-card.ssit-card--accent:hover {
    border-color: #62d5a0 !important;
}

/* ===== Buttons ===== */
.ssit-btn,
.et_pb_button {
    transition: transform 0.12s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    will-change: transform;
}
.ssit-btn:active,
.et_pb_button:active {
    transform: scale(0.97);
}

/* ===== Accessible focus ring ===== */
.ssit-card a:focus-visible,
.ssit-btn:focus-visible,
.et_pb_blurb a:focus-visible,
.et_pb_button:focus-visible,
.et_pb_section a:focus-visible {
    outline: 2px solid #62d5a0;
    outline-offset: 3px;
    border-radius: 8px;
}

/* ===== Tabular figures on stat numbers ===== */
.ssit-stat-num {
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

/* ===== Mobile content polish =====
   Tighter section padding, better column spacing on phone. */
@media (max-width: 768px) {
    .et_pb_section {
        padding-top: 50px !important;
        padding-bottom: 40px !important;
    }
    .et_pb_row {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    /* Prevent images breaking out */
    .et_pb_section img {
        max-width: 100%;
        height: auto;
    }
    /* Increase tap-target size for nav + footer links */
    .et_pb_section a {
        min-height: 36px;
    }
}

/* ===== Reduced-motion safety ===== */
@media (prefers-reduced-motion: reduce) {
    .ssit-card,
    .et_pb_blurb,
    .ssit-btn,
    .et_pb_button {
        transition: none !important;
    }
    .ssit-card:hover,
    .ssit-card:focus-within,
    .et_pb_blurb:hover,
    .et_pb_blurb:focus-within {
        transform: none !important;
    }
}

/* ===== Partner cards: structural targeting via parent section class ===== */
.ssit-partners-section .et_pb_row_2 .et_pb_column {
    background: #ffffff !important;
    border: 1px solid #e6e9f0 !important;
    border-radius: 12px !important;
    padding: 24px !important;
    text-align: center;
}
.ssit-partners-section .et_pb_row_2 .et_pb_column:hover {
    border-color: #62d5a0 !important;
}
.ssit-partners-section .et_pb_row_2 img {
    margin: 0 auto;
    display: block;
}

/* ===== Centering fix =====
   Divi 5 outputs `.et_pb_row { margin: initial }` which kills auto-centering.
   Force horizontal centering on every row. Sections already have symmetric padding. */
.et_pb_row {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ===== Hero CTAs — primary + secondary buttons with rich hover ===== */
.ssit-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.ssit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none !important;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 0.18s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease;
    will-change: transform;
    border: 2px solid transparent;
    min-height: 56px;
    box-sizing: border-box;
}
.ssit-btn-arrow {
    display: inline-block;
    transition: transform 0.18s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Primary — Aurora gradient with soft shadow */
.ssit-btn-primary {
    background: linear-gradient(135deg, #62d5a0 0%, #4cbe88 100%);
    color: #050a28 !important;
    box-shadow:
        0 6px 16px -6px rgba(76, 190, 136, 0.6),
        0 2px 6px -2px rgba(76, 190, 136, 0.3);
}
.ssit-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 24px -6px rgba(76, 190, 136, 0.7),
        0 4px 10px -2px rgba(76, 190, 136, 0.4);
}
.ssit-btn-primary:hover .ssit-btn-arrow {
    transform: translateX(4px);
}
.ssit-btn-primary:active {
    transform: translateY(0);
}

/* Secondary — outlined, fills on hover */
.ssit-btn-secondary {
    background: transparent;
    color: #050a28 !important;
    border-color: #050a28;
}
.ssit-btn-secondary:hover {
    background: #050a28;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(5, 10, 40, 0.3);
}
.ssit-btn-secondary:hover .ssit-btn-arrow {
    transform: translateX(4px);
}
.ssit-btn-secondary:active {
    transform: translateY(0);
}

/* Mobile — full-width stacked buttons */
@media (max-width: 640px) {
    .ssit-hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .ssit-btn {
        justify-content: center;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ssit-btn,
    .ssit-btn-arrow {
        transition: none !important;
    }
    .ssit-btn:hover {
        transform: none !important;
    }
    .ssit-btn:hover .ssit-btn-arrow {
        transform: none !important;
    }
}

/* ===== Vendor logo wall (auto-scroll marquee) ===== */
.ssit-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.ssit-marquee__track {
    display: flex;
    gap: 64px;
    align-items: center;
    width: max-content;
    animation: ssit-marquee-scroll 18s linear infinite;
}
.ssit-marquee__track img {
    height: 44px;
    width: auto;
    flex-shrink: 0;
    opacity: 1;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.ssit-marquee__track img:hover {
    filter: saturate(1.2) brightness(1.05);
    transform: scale(1.12);
}
.ssit-marquee:hover .ssit-marquee__track {
    animation-play-state: paused;
}
.ssit-marquee__track img:hover {
    filter: saturate(1.15);
    opacity: 1;
    transform: scale(1.08);
}
@keyframes ssit-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .ssit-marquee__track { animation-duration: 60s !important; }
}
@media (max-width: 768px) {
    .ssit-marquee__track { gap: 40px; }
    .ssit-marquee__track img { height: 26px; }
}

/* ===== Header right-side CTAs ===== */
.ssit-header-ctas {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: nowrap;
}
.ssit-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease, border-color 0.18s ease;
    line-height: 1;
    white-space: nowrap;
}
.ssit-header-cta--tel {
    color: #050a28 !important;
    background: transparent;
    border: 1px solid #e6e9f0;
}
.ssit-header-cta--tel:hover {
    background: #f7f9fc;
    border-color: #cbd5e1;
}
.ssit-header-cta--wa {
    background: #25d366;
    color: #ffffff !important;
    border: 1px solid #25d366;
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
}
.ssit-header-cta--wa:hover {
    background: #1ebd5a;
    transform: translateY(-1px);
}
.ssit-header-cta--primary {
    background: #62d5a0;
    color: #050a28 !important;
    border: 1px solid #62d5a0;
}
.ssit-header-cta--primary:hover {
    background: #4cbe88;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px -4px rgba(76, 190, 136, 0.5);
}
.ssit-header-cta--tel svg,
.ssit-header-cta--wa svg {
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .ssit-header-cta--tel,
    .ssit-header-cta--primary { display: none; }
    .ssit-header-ctas { justify-content: flex-end; }
}

/* ===== Floating WhatsApp button (sticky, bottom-right) ===== */
.ssit-floating-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9990;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px -8px rgba(37, 211, 102, 0.55), 0 4px 12px -4px rgba(0, 0, 0, 0.18);
    text-decoration: none !important;
    transition: transform 0.18s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.22s ease, background 0.22s ease;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    animation: ssit-wa-pulse 2.4s ease-in-out infinite 4s;
}
.ssit-floating-wa.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.ssit-floating-wa:hover {
    background: #1ebd5a;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.7), 0 6px 16px -4px rgba(0, 0, 0, 0.22);
}
.ssit-floating-wa svg {
    width: 30px;
    height: 30px;
}
@keyframes ssit-wa-pulse {
    0%, 100% { box-shadow: 0 10px 28px -8px rgba(37, 211, 102, 0.55), 0 4px 12px -4px rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50%      { box-shadow: 0 10px 28px -8px rgba(37, 211, 102, 0.55), 0 4px 12px -4px rgba(0, 0, 0, 0.18), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (max-width: 768px) {
    .ssit-floating-wa {
        right: 16px;
        bottom: 80px; /* sit above the sticky mobile CTA bar (which is 64px tall) */
        width: 52px;
        height: 52px;
    }
    .ssit-floating-wa svg { width: 26px; height: 26px; }
}
@media (prefers-reduced-motion: reduce) {
    .ssit-floating-wa {
        transition: none !important;
        animation: none !important;
    }
}

/* ===== Why Us — 3 value blurbs with icons + colour accents ===== */
.ssit-why-us .et_pb_blurb {
    position: relative;
    padding-top: 56px !important;
    overflow: hidden;
}
/* Top accent bar — different colour per card via nth-child */
.ssit-why-us .et_pb_blurb::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #62d5a0; /* Aurora green default */
    transition: height 0.28s ease;
}
.ssit-why-us .et_pb_column:nth-child(1) .et_pb_blurb::before { background: #62d5a0; }
.ssit-why-us .et_pb_column:nth-child(2) .et_pb_blurb::before { background: #2859da; }
.ssit-why-us .et_pb_column:nth-child(3) .et_pb_blurb::before { background: #cc38ff; }
.ssit-why-us .et_pb_blurb:hover::before {
    height: 6px;
}

/* Icon — show via background-image since the blurb's title module already has a heading */
.ssit-why-us .et_pb_blurb::after {
    content: "";
    position: absolute;
    top: 24px; left: 50%;
    transform: translateX(-50%);
    width: 48px; height: 48px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 28px 28px;
    border-radius: 50%;
    transition: background-color 0.28s ease, transform 0.28s ease;
}
/* Card 1 — shield icon (Aurora green) */
.ssit-why-us .et_pb_column:nth-child(1) .et_pb_blurb::after {
    background-color: rgba(98,213,160,0.15);
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2362d5a0'%3E%3Cpath d='M12 2L3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5l-9-3zm-2 15l-4-4 1.4-1.4L10 14.2l6.6-6.6L18 9l-8 8z'/%3E%3C/svg%3E");
}
.ssit-why-us .et_pb_column:nth-child(1) .et_pb_blurb:hover::after {
    background-color: rgba(98,213,160,0.28);
    transform: translateX(-50%) scale(1.08);
}
/* Card 2 — speech bubble (Civic blue) */
.ssit-why-us .et_pb_column:nth-child(2) .et_pb_blurb::after {
    background-color: rgba(40,89,218,0.15);
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232859da'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 11H7v-2h6v2zm4-4H7V7h10v2z'/%3E%3C/svg%3E");
}
.ssit-why-us .et_pb_column:nth-child(2) .et_pb_blurb:hover::after {
    background-color: rgba(40,89,218,0.28);
    transform: translateX(-50%) scale(1.08);
}
/* Card 3 — chart up (Vivid magenta) */
.ssit-why-us .et_pb_column:nth-child(3) .et_pb_blurb::after {
    background-color: rgba(204,56,255,0.15);
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23cc38ff'%3E%3Cpath d='M3 13l4-4 4 4 7-7v4l-7 7-4-4-4 4z'/%3E%3Cpath d='M3 17h18v2H3z'/%3E%3C/svg%3E");
}
.ssit-why-us .et_pb_column:nth-child(3) .et_pb_blurb:hover::after {
    background-color: rgba(204,56,255,0.28);
    transform: translateX(-50%) scale(1.08);
}

/* ===== Process — branded numbered step badges ===== */
.ssit-process .et_pb_row:nth-of-type(2) {
    margin-top: 32px;
}
.ssit-process .et_pb_row:nth-of-type(2) .et_pb_column {
    position: relative;
    padding-top: 80px;
    text-align: center;
    transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ssit-process .et_pb_row:nth-of-type(2) .et_pb_column:hover {
    transform: translateY(-4px);
}
/* Hide the inline "STEP 01" labels — we replace with the badge */
.ssit-process .et_pb_row:nth-of-type(2) .et_pb_column .et_pb_text:first-of-type {
    display: none;
}
/* Numbered badge — gradient circle 64px */
.ssit-process .et_pb_row:nth-of-type(2) .et_pb_column::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    background: linear-gradient(135deg, #2859da 0%, #cc38ff 50%, #62d5a0 100%);
    box-shadow: 0 8px 22px -8px rgba(40, 89, 218, 0.4),
                0 4px 10px -4px rgba(204, 56, 255, 0.25);
    transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
                box-shadow 0.28s ease;
    z-index: 2;
}
.ssit-process .et_pb_row:nth-of-type(2) {
    counter-reset: step-counter;
}
.ssit-process .et_pb_row:nth-of-type(2) .et_pb_column:hover::before {
    transform: translateX(-50%) scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 28px -8px rgba(40, 89, 218, 0.5),
                0 6px 14px -4px rgba(204, 56, 255, 0.35);
}
/* Connecting line between steps on desktop */
.ssit-process .et_pb_row:nth-of-type(2) .et_pb_column:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 32px; right: -28px;
    width: 56px; height: 2px;
    background: linear-gradient(90deg, rgba(40,89,218,0.3), rgba(204,56,255,0.3));
    z-index: 1;
}
@media (max-width: 980px) {
    .ssit-process .et_pb_row:nth-of-type(2) .et_pb_column:not(:last-child)::after {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    .ssit-process .et_pb_row:nth-of-type(2) .et_pb_column,
    .ssit-process .et_pb_row:nth-of-type(2) .et_pb_column::before {
        transition: none !important;
    }
    .ssit-process .et_pb_row:nth-of-type(2) .et_pb_column:hover {
        transform: none !important;
    }
    .ssit-process .et_pb_row:nth-of-type(2) .et_pb_column:hover::before {
        transform: translateX(-50%) !important;
    }
}

/* ===== Audience marquee (Who we serve) ===== */
.ssit-audience-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.ssit-audience-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    width: max-content;
    animation: ssit-aud-scroll 40s linear infinite;
    padding: 16px 0;
}
.ssit-audience-marquee:hover .ssit-audience-track { animation-play-state: paused; }
.ssit-audience-card {
    width: 240px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e6e9f0;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    text-decoration: none !important;
    color: #050a28;
    transition: transform 0.28s cubic-bezier(0.2,0.7,0.2,1),
                box-shadow 0.28s ease, border-color 0.28s ease;
}
.ssit-audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px -10px rgba(11, 17, 32, 0.20),
                0 4px 12px -4px rgba(11, 17, 32, 0.10);
    border-color: var(--ic, #62d5a0);
}
.ssit-audience-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--ic, #62d5a0) 15%, transparent);
    color: var(--ic, #62d5a0);
    font-size: 26px;
    margin-bottom: 14px;
    transition: transform 0.28s ease, background 0.28s ease;
}
.ssit-audience-card:hover .ssit-audience-icon {
    transform: scale(1.08);
    background: color-mix(in srgb, var(--ic, #62d5a0) 25%, transparent);
}
.ssit-audience-title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #050a28;
}
.ssit-audience-tag {
    font-size: 13px;
    color: #5b6478;
    font-weight: 500;
    line-height: 1.4;
}
@keyframes ssit-aud-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 10px)); }
}
@media (max-width: 768px) {
    .ssit-audience-card { width: 200px; padding: 20px 16px; }
}
@media (prefers-reduced-motion: reduce) {
    .ssit-audience-track { animation: none !important; }
}

/* ===== POSITION-BASED FALLBACKS — Divi 5 cssClasses field on sections doesn't render ===== */
/* Why Us is section_2 on home (hero, vendors, why-us...) */
body.home .et_pb_section_2 .et_pb_blurb,
body.page-id-635 .et_pb_section_2 .et_pb_blurb {
    position: relative;
    padding-top: 56px !important;
    overflow: hidden;
}
body.home .et_pb_section_2 .et_pb_blurb::before,
body.page-id-635 .et_pb_section_2 .et_pb_blurb::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    transition: height 0.28s ease;
}
body.home .et_pb_section_2 .et_pb_column:nth-child(1) .et_pb_blurb::before,
body.page-id-635 .et_pb_section_2 .et_pb_column:nth-child(1) .et_pb_blurb::before { background: #62d5a0; }
body.home .et_pb_section_2 .et_pb_column:nth-child(2) .et_pb_blurb::before,
body.page-id-635 .et_pb_section_2 .et_pb_column:nth-child(2) .et_pb_blurb::before { background: #2859da; }
body.home .et_pb_section_2 .et_pb_column:nth-child(3) .et_pb_blurb::before,
body.page-id-635 .et_pb_section_2 .et_pb_column:nth-child(3) .et_pb_blurb::before { background: #cc38ff; }
body.home .et_pb_section_2 .et_pb_blurb:hover::before,
body.page-id-635 .et_pb_section_2 .et_pb_blurb:hover::before { height: 6px; }

body.home .et_pb_section_2 .et_pb_blurb::after,
body.page-id-635 .et_pb_section_2 .et_pb_blurb::after {
    content: "";
    position: absolute;
    top: 24px; left: 50%;
    transform: translateX(-50%);
    width: 48px; height: 48px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 28px 28px;
    border-radius: 50%;
    transition: background-color 0.28s ease, transform 0.28s ease;
}
/* Card 1 — shield (Aurora green) */
body.home .et_pb_section_2 .et_pb_column:nth-child(1) .et_pb_blurb::after,
body.page-id-635 .et_pb_section_2 .et_pb_column:nth-child(1) .et_pb_blurb::after {
    background-color: rgba(98,213,160,0.15);
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2362d5a0'%3E%3Cpath d='M12 2L3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5l-9-3zm-2 15l-4-4 1.4-1.4L10 14.2l6.6-6.6L18 9l-8 8z'/%3E%3C/svg%3E");
}
/* Card 2 — chat bubble (Civic blue) */
body.home .et_pb_section_2 .et_pb_column:nth-child(2) .et_pb_blurb::after,
body.page-id-635 .et_pb_section_2 .et_pb_column:nth-child(2) .et_pb_blurb::after {
    background-color: rgba(40,89,218,0.15);
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232859da'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 11H7v-2h6v2zm4-4H7V7h10v2z'/%3E%3C/svg%3E");
}
/* Card 3 — chart up (Vivid magenta) */
body.home .et_pb_section_2 .et_pb_column:nth-child(3) .et_pb_blurb::after,
body.page-id-635 .et_pb_section_2 .et_pb_column:nth-child(3) .et_pb_blurb::after {
    background-color: rgba(204,56,255,0.15);
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23cc38ff'%3E%3Cpath d='M3 13l4-4 4 4 7-7v4l-7 7-4-4-4 4z'/%3E%3Cpath d='M3 17h18v2H3z'/%3E%3C/svg%3E");
}

/* ===== POSITION-BASED FIX: Process step (section_6) numbered badges ===== */
/* Process section is the row containing "Step 01" labels — find by structural pattern */
body.home .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column,
body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column {
    counter-increment: ssit-step;
    position: relative;
    padding-top: 80px !important;
    transition: transform 0.28s cubic-bezier(0.2,0.7,0.2,1);
}
body.home .et_pb_section_6 .et_pb_row:nth-of-type(2),
body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) {
    counter-reset: ssit-step;
}
body.home .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column::before,
body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column::before {
    content: counter(ssit-step);
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    background: #62d5a0;  /* default; overridden per nth-child below */
    transition: transform 0.28s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.28s ease, background 0.28s ease;
    z-index: 2;
}
/* Per-step brand colour */
body.home .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:nth-child(1)::before,
body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:nth-child(1)::before {
    background: #62d5a0;  /* Aurora green */
    box-shadow: 0 8px 22px -8px rgba(98, 213, 160, 0.5),
                0 4px 10px -4px rgba(98, 213, 160, 0.3);
}
body.home .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:nth-child(2)::before,
body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:nth-child(2)::before {
    background: #2859da;  /* Civic blue */
    box-shadow: 0 8px 22px -8px rgba(40, 89, 218, 0.5),
                0 4px 10px -4px rgba(40, 89, 218, 0.3);
}
body.home .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:nth-child(3)::before,
body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:nth-child(3)::before {
    background: #f97316;  /* Warm coral/orange — engagement step */
    box-shadow: 0 8px 22px -8px rgba(249, 115, 22, 0.5),
                0 4px 10px -4px rgba(249, 115, 22, 0.3);
}
body.home .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:nth-child(4)::before,
body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:nth-child(4)::before {
    background: #050a28;  /* Midnight navy — final anchor step */
    box-shadow: 0 8px 22px -8px rgba(5, 10, 40, 0.55),
                0 4px 10px -4px rgba(5, 10, 40, 0.35);
}
/* Hide existing "STEP 01" / "STEP 02" labels — they're redundant once we have numbered badges */
body.home .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column > .et_pb_text:first-of-type,
body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column > .et_pb_text:first-of-type {
    display: none !important;
}
/* Hover lift */
body.home .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:hover,
body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:hover {
    transform: translateY(-4px);
}
body.home .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:hover::before,
body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:hover::before {
    transform: translateX(-50%) scale(1.08) rotate(-3deg);
}
/* Connector dotted line (between badges) */
body.home .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:not(:last-child)::after,
body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 32px; right: -28px;
    width: 56px; height: 2px;
    background: linear-gradient(90deg, rgba(40,89,218,0.3), rgba(204,56,255,0.3));
    z-index: 1;
}
@media (max-width: 980px) {
    body.home .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:not(:last-child)::after,
    body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column:not(:last-child)::after { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    body.home .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column,
    body.home .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column::before,
    body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column,
    body.page-id-635 .et_pb_section_6 .et_pb_row:nth-of-type(2) > .et_pb_column::before {
        transition: none !important;
    }
}

/* ===== Page background — subtle off-white so white sections appear as cards ===== */
body.home,
body.page-id-635 {
    background-color: #fafbfd !important;
}
/* Section subtle border-radius for "card" feel — applies only on home  */
body.home .et_pb_section,
body.page-id-635 .et_pb_section {
    /* keep section bg as configured */
}

/* ===== Vendor logos section — light grey bg to break up the white-stack ===== */
body.home .et_pb_section_1,
body.page-id-635 .et_pb_section_1 {
    background-color: #f1f4f9 !important;
}

/* ===== Full-width rows — kill the white gaps on left/right ===== */
body.home .et_pb_row,
body.page-id-635 .et_pb_row,
body.page-id-403 .et_pb_row,  /* about */
body.page-id-405 .et_pb_row,  /* contact */
body.page-id-479 .et_pb_row,  /* managed-it */
body.page-id-565 .et_pb_row,  /* founders */
body.page-id-784 .et_pb_row { /* connectivity */
    max-width: 1600px !important;
    width: 96% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
@media (min-width: 1700px) {
    body.home .et_pb_row,
    body.page-id-635 .et_pb_row,
    body.page-id-403 .et_pb_row,
    body.page-id-405 .et_pb_row,
    body.page-id-479 .et_pb_row,
    body.page-id-565 .et_pb_row,
    body.page-id-784 .et_pb_row {
        max-width: 1720px !important;
    }
}
@media (max-width: 980px) {
    body.home .et_pb_row,
    body.page-id-635 .et_pb_row,
    body.page-id-403 .et_pb_row,
    body.page-id-405 .et_pb_row,
    body.page-id-479 .et_pb_row,
    body.page-id-565 .et_pb_row,
    body.page-id-784 .et_pb_row {
        width: 92% !important;
    }
}
/* Marquee rows — let them go full-width since marquee already has its own mask */
body.home .ssit-marquee,
body.home .ssit-audience-marquee {
    max-width: 100% !important;
}

/* ===== Hero text centred on full-screen ===== */
body.home .et_pb_section_0 .et_pb_text p,
body.home .et_pb_section_0 .et_pb_heading h1,
body.home .et_pb_section_0 .et_pb_heading h2,
body.page-id-635 .et_pb_section_0 .et_pb_text p,
body.page-id-635 .et_pb_section_0 .et_pb_heading h1 {
    text-align: center !important;
}
body.home .et_pb_section_0 .et_pb_text:not(.ssit-hero-ctas-wrap),
body.page-id-635 .et_pb_section_0 .et_pb_text:not(.ssit-hero-ctas-wrap) {
    text-align: center !important;
}
body.home .et_pb_section_0 .ssit-hero-ctas,
body.page-id-635 .et_pb_section_0 .ssit-hero-ctas {
    justify-content: center !important;
}

/* ===== Bump marquee speed even faster so motion is unmistakable ===== */
.ssit-marquee__track {
    animation-duration: 12s !important;
}
.ssit-audience-track {
    animation-duration: 32s !important;
}

/* ===== Hero polish: center the lead paragraph block + fix secondary button ===== */
body.home .et_pb_section_0 .et_pb_text p,
body.page-id-635 .et_pb_section_0 .et_pb_text p {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Secondary hero button — force outlined-dark regardless of Divi default winning */
body.home .ssit-btn.ssit-btn-secondary,
body.page-id-635 .ssit-btn.ssit-btn-secondary {
    background: transparent !important;
    background-color: transparent !important;
    color: #050a28 !important;
    border: 2px solid #050a28 !important;
    box-shadow: none !important;
}
body.home .ssit-btn.ssit-btn-secondary:hover,
body.page-id-635 .ssit-btn.ssit-btn-secondary:hover {
    background: #050a28 !important;
    background-color: #050a28 !important;
    color: #ffffff !important;
}


/* ===== Header — single line nav, centred to logo ===== */
.et-l--header .et_pb_menu__logo-wrap {
    max-width: 280px !important;
    width: auto !important;
}
.et-l--header .et_pb_menu__logo {
    overflow: visible !important;
    max-width: 280px !important;
    width: auto !important;
}
.et-l--header .et_pb_menu__logo img {
    height: 56px !important;
    width: auto !important;
    max-height: 56px !important;
    max-width: 280px !important;
    object-fit: contain;
}
.et-l--header .et_pb_menu .et-menu-nav > ul {
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 4px;
}
.et-l--header .et_pb_menu .et-menu-nav > ul > li {
    flex-shrink: 0;
}
.et-l--header .et_pb_menu .et-menu-nav > ul > li > a {
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 10px 12px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}
.et-l--header .et_pb_section {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

/* ===== Footer override — every footer section dark navy, white text ===== */
.et-l--footer .et_pb_section {
    background-color: #050a28 !important;
    background-image: none !important;
}
.et-l--footer h1,
.et-l--footer h2,
.et-l--footer h3,
.et-l--footer h4,
.et-l--footer h5,
.et-l--footer h6 {
    color: #ffffff !important;
}
.et-l--footer p,
.et-l--footer li,
.et-l--footer span:not([class*="ssit-"]) {
    color: #cbd5e1;
}
.et-l--footer a {
    color: #cbd5e1;
}
.et-l--footer a:hover {
    color: #62d5a0;
}

/* ===== Footer column heading override =====
   Divi's compiled CSS from divi/heading isn't honouring the 12px size attr in TB footer context.
   Force the small uppercase label sizing here. */
.et-l--footer h1,
.et-l--footer h2,
.et-l--footer h3,
.et-l--footer h4,
.et-l--footer h5,
.et-l--footer h6 {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  line-height: 1.3 !important;
  margin: 0 0 12px 0 !important;
}

/* ============================================================
   SSIT Header — custom nav with dropdowns
   ============================================================ */
.ssit-nav{background:#fff;border-bottom:1px solid #EDEFF7;font-family:'Suisse BP','Suisse Intl',-apple-system,sans-serif;position:relative;z-index:100}
.ssit-nav__inner{display:flex;align-items:center;justify-content:space-between;max-width:1340px;margin:0 auto;padding:14px 24px;gap:24px}
.ssit-nav__brand img{height:42px;width:auto;display:block}
.ssit-nav__list{display:flex;align-items:center;gap:4px;list-style:none;margin:0;padding:0;flex:1;justify-content:center}
.ssit-nav__item{position:relative}
.ssit-nav__item>a{display:inline-flex;align-items:center;padding:10px 14px;color:#050a28;font-weight:600;font-size:15px;text-decoration:none;border-radius:8px;letter-spacing:-0.005em;transition:background 0.18s ease,color 0.18s ease}
.ssit-nav__item>a:hover,.ssit-nav__item>a:focus,.ssit-nav__has-sub:hover>a,.ssit-nav__has-sub:focus-within>a{background:#EDEFF7;color:#2859da}
.ssit-nav__sub{position:absolute;top:calc(100% + 6px);left:0;min-width:340px;background:#fff;border:1px solid #EDEFF7;border-radius:14px;box-shadow:0 8px 32px rgba(5,10,40,0.08),0 2px 8px rgba(5,10,40,0.04);padding:10px;margin:0;list-style:none;opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity 0.18s ease,transform 0.18s ease,visibility 0.18s ease}
.ssit-nav__has-sub:hover .ssit-nav__sub,.ssit-nav__has-sub:focus-within .ssit-nav__sub{opacity:1;visibility:visible;transform:translateY(0)}
.ssit-nav__sub li{margin:0}
.ssit-nav__sub a{display:flex;flex-direction:column;gap:3px;padding:12px 14px;color:#050a28;text-decoration:none;border-radius:10px;transition:background 0.15s ease}
.ssit-nav__sub a:hover,.ssit-nav__sub a:focus{background:#EDEFF7}
.ssit-nav__sub a:hover strong,.ssit-nav__sub a:focus strong{color:#2859da}
.ssit-nav__sub a:hover span,.ssit-nav__sub a:focus span{color:#050a28}
.ssit-nav__sub strong{font-size:14px;font-weight:700;color:#050a28;line-height:1.3;letter-spacing:-0.005em;transition:color 0.15s ease}
.ssit-nav__sub span{font-size:13px;color:#6E7180;line-height:1.4;font-weight:400;transition:color 0.15s ease}
.ssit-nav__cta{display:inline-block;padding:11px 22px;background:#050a28;color:#fff!important;font-weight:700;font-size:14px;border-radius:10px;text-decoration:none;letter-spacing:-0.005em;white-space:nowrap;transition:opacity 0.15s,transform 0.12s}
.ssit-nav__cta:hover{opacity:0.92;transform:translateY(-1px);color:#fff!important}
.ssit-nav__toggle{display:none}
.ssit-nav__burger{display:none;cursor:pointer;padding:8px;width:40px;height:40px;flex-direction:column;justify-content:space-around}
.ssit-nav__burger span{display:block;width:100%;height:2px;background:#050a28;border-radius:2px;transition:transform 0.2s,opacity 0.2s}
@media (max-width:1024px){.ssit-nav__burger{display:flex}.ssit-nav__list{position:fixed;top:0;right:0;bottom:0;width:min(380px,90vw);background:#fff;border-left:1px solid #EDEFF7;flex-direction:column;justify-content:flex-start;align-items:stretch;padding:90px 24px 32px;gap:4px;transform:translateX(100%);transition:transform 0.25s ease;overflow-y:auto;z-index:99}.ssit-nav__toggle:checked~.ssit-nav__list{transform:translateX(0)}.ssit-nav__toggle:checked~.ssit-nav__burger span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}.ssit-nav__toggle:checked~.ssit-nav__burger span:nth-child(2){opacity:0}.ssit-nav__toggle:checked~.ssit-nav__burger span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}.ssit-nav__item>a{padding:14px;width:100%;font-size:17px}.ssit-nav__sub{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;padding:0 0 0 14px;margin:4px 0 12px;background:transparent;min-width:0}.ssit-nav__sub a{padding:10px 14px;border-left:2px solid #EDEFF7;border-radius:0}.ssit-nav__cta{margin-top:18px;text-align:center;align-self:stretch}}
