:root {
    --bg: #f4f7fb;
    --bg-soft: #eef3f8;
    --surface: #ffffff;
    --surface-2: #f9fbff;
    --text: #102033;
    --muted: #5b6f86;
    --line: #d6e0ea;
    --primary: #1d4ed8;
    --primary-2: #0f766e;
    --accent: #0f766e;
    --shadow: 0 16px 40px rgba(16, 32, 51, 0.12);
    --radius: 18px;
    --font-body: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 6%, rgba(13, 155, 136, 0.12), transparent 32%),
        radial-gradient(circle at 92% 9%, rgba(245, 158, 11, 0.12), transparent 36%),
        linear-gradient(180deg, #f7fafd 0%, #eef3f9 100%);
}

input,
button,
select,
textarea {
    font-family: inherit;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1180px, calc(100% - 2.6rem));
    margin: 0 auto;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: relative;
    z-index: 120;
}

.header-top {
    position: relative;
    z-index: 140;
    padding-top: 0.62rem;
    padding-bottom: 0.5rem;
}

.utility-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.55rem;
}

.utility-card {
    min-width: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.94));
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(12, 24, 37, 0.08);
    padding: 0.35rem 0.46rem;
}

.utility-group {
    display: flex;
    align-items: center;
    gap: 0.42rem;
}

.utility-title {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6f8398;
    font-weight: 800;
    white-space: nowrap;
}

.utility-links {
    min-width: 0;
}

.utility-list,
.social-list,
.language-list {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.utility-links .utility-list {
    display: flex;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scrollbar-width: none;
}

.utility-links .utility-list::-webkit-scrollbar {
    display: none;
}

.quick-link-chip {
    flex: 0 0 auto;
    height: 25px;
    border-radius: 8px;
    border: 1px solid #c8d9e8;
    background: linear-gradient(135deg, #eef6ff, #e4f1ff);
    color: #1b4565;
    padding: 0 0.44rem;
    display: inline-flex;
    align-items: center;
    gap: 0.26rem;
    font-size: 0.67rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 10px rgba(15, 44, 71, 0.08);
    transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.quick-link-chip:hover {
    transform: translateY(-1px);
    filter: saturate(1.02);
    box-shadow: 0 8px 14px rgba(15, 44, 71, 0.12);
}

.quick-link-chip svg,
.quick-link-chip .quick-link-text {
    color: inherit;
}

.quick-link-chip.quick-link-variant-1 {
    background: linear-gradient(135deg, #e8f5ff, #dceeff);
    border-color: #c0d9ec;
    color: #184766;
}

.quick-link-chip.quick-link-variant-2 {
    background: linear-gradient(135deg, #ebf1ff, #dee8ff);
    border-color: #c7d5ef;
    color: #264674;
}

.quick-link-chip.quick-link-variant-3 {
    background: linear-gradient(135deg, #fff2e5, #ffe6cc);
    border-color: #efd2b1;
    color: #7a4d1f;
}

.quick-link-chip.quick-link-variant-4 {
    background: linear-gradient(135deg, #f2edff, #e7ddff);
    border-color: #d5c8ef;
    color: #4f3f86;
}

.quick-link-chip.quick-link-variant-5 {
    background: linear-gradient(135deg, #e9f8ef, #d9f0e5);
    border-color: #c2e2d2;
    color: #1f5f45;
}

.quick-link-chip.quick-link-variant-6 {
    background: linear-gradient(135deg, #edf4ff, #dfeaff);
    border-color: #c6d7f0;
    color: #23486f;
}

.quick-link-chip.is-phone {
    background: linear-gradient(135deg, #e7f8ee, #d5efdf);
    border-color: #b9dec9;
    color: #196444;
}

.quick-link-chip.is-whatsapp {
    background: linear-gradient(135deg, #e6f9ed, #cef0dc);
    border-color: #b3dfc4;
    color: #147448;
}

.quick-link-chip svg {
    width: 11px;
    height: 11px;
}

.utility-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.utility-social {
    gap: 0.3rem;
}

.utility-social .utility-title {
    display: none;
}

.social-list {
    flex-wrap: nowrap;
}

.social-chip {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff, #edf6ff);
    border: 1px solid #cddded;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(16, 36, 52, 0.09);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.social-chip:hover {
    transform: translateY(-2px);
    border-color: #9ebcd2;
    box-shadow: 0 10px 18px rgba(16, 36, 52, 0.14);
}

.social-chip svg {
    width: 20px;
    height: 20px;
}

.social-chip.platform-instagram,
.footer-social-chip.platform-instagram { color: #e4405f; }

.social-chip.platform-x,
.social-chip.platform-twitter { color: #111111; }

.social-chip.platform-facebook,
.footer-social-chip.platform-facebook { color: #1877f2; }

.social-chip.platform-linkedin,
.footer-social-chip.platform-linkedin { color: #0a66c2; }

.social-chip.platform-youtube,
.footer-social-chip.platform-youtube { color: #ff0000; }

.footer-social-chip.platform-x,
.footer-social-chip.platform-twitter { color: #e6eff5; }

.social-chip.platform-tiktok,
.footer-social-chip.platform-tiktok { color: #111111; }

.social-chip.platform-threads,
.footer-social-chip.platform-threads { color: #111111; }

.social-chip.platform-telegram,
.footer-social-chip.platform-telegram { color: #229ed9; }

.social-chip.platform-whatsapp,
.footer-social-chip.platform-whatsapp { color: #25d366; }

.social-chip.platform-pinterest,
.footer-social-chip.platform-pinterest { color: #e60023; }

.social-chip.platform-snapchat,
.footer-social-chip.platform-snapchat { color: #f6c400; }

.social-chip.platform-github,
.footer-social-chip.platform-github { color: #24292f; }

.social-chip.platform-behance,
.footer-social-chip.platform-behance { color: #1769ff; }

.social-chip.platform-dribbble,
.footer-social-chip.platform-dribbble { color: #ea4c89; }

.social-chip.platform-custom,
.footer-social-chip.platform-custom { color: #0f5960; }

.utility-languages {
    position: relative;
    z-index: 720;
    gap: 0.28rem;
}

.lang-dropdown-toggle {
    height: 30px;
    border: 1px solid #c8d6e5;
    border-radius: 9px;
    background: #ffffff;
    color: #143e58;
    padding: 0 0.34rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 800;
}

.lang-dropdown-toggle img {
    width: 16px;
    height: 11px;
    border-radius: 2px;
}

.lang-dropdown-toggle span {
    display: none;
}

.lang-dropdown-toggle svg {
    width: 14px;
    height: 14px;
    color: #0c5249;
    transition: transform 0.16s ease;
}

.utility-languages.is-open .lang-dropdown-toggle svg {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    display: none;
    gap: 0.3rem;
    padding: 0.36rem;
    border: 1px solid #d4e1ea;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: var(--shadow);
    z-index: 1000;
}

.utility-languages.is-open .lang-dropdown-menu {
    display: inline-flex;
}

.lang-chip {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    border: 1px solid #cedbe7;
    background: #f8fbff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-chip img {
    width: 18px;
    height: 12px;
    border-radius: 2px;
}

.lang-chip span {
    display: none;
}

.lang-chip.is-active,
.lang-chip:hover {
    border-color: #afcde0;
    background: #edf7ff;
}

.header-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    border-top: 1px solid rgba(215, 225, 235, 0.7);
    border-bottom: 1px solid rgba(209, 221, 232, 0.82);
    background: rgba(244, 249, 255, 0.9);
    backdrop-filter: blur(10px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.72rem;
}

.brand.has-logo {
    gap: 0.62rem;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 10px 22px rgba(10, 127, 111, 0.28);
}

.brand-logo {
    display: block;
    width: auto;
    height: 46px;
    max-width: 170px;
    object-fit: contain;
}

.brand.is-logo-only .brand-logo {
    height: 56px;
    max-width: 280px;
}

.brand strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.brand small {
    font-size: 0.8rem;
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.26rem;
    margin-left: auto;
    padding: 0.24rem;
    border: 1px solid #cfdeea;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 248, 255, 0.9));
    box-shadow: 0 10px 22px rgba(16, 32, 51, 0.08);
}

.site-nav a {
    position: relative;
    height: 41px;
    padding: 0 0.98rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1b3851;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0.62rem;
    right: 0.62rem;
    bottom: 0.36rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f7f78, #1a6ac6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.site-nav a.is-active,
.site-nav a:hover {
    background: linear-gradient(180deg, #f0f8ff, #e3f0ff);
    color: #0f4f84;
    transform: translateY(-1px);
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    height: 40px;
    width: 40px;
    padding: 0;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    color: #143e58;
}

.menu-toggle svg {
    width: 20px;
    height: 20px;
}

.hero {
    padding: 5rem 0 2.2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.35rem;
    align-items: center;
}

.eyebrow {
    margin: 0;
    color: #0f6f61;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.hero h1,
.page-hero h1 {
    margin: 0.45rem 0 1rem;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.hero p {
    margin-top: 0;
    color: var(--muted);
    max-width: 62ch;
    font-size: 1rem;
}

.hero-card {
    position: relative;
    border-radius: var(--radius);
    border: 1px solid #d7e3ee;
    padding: 1.4rem;
    background:
        linear-gradient(155deg, rgba(12, 127, 111, 0.1), rgba(13, 155, 136, 0.02) 46%),
        linear-gradient(180deg, #ffffff, #f6fbff);
    box-shadow: var(--shadow);
}

.hero-card h3 {
    margin-top: 0;
    margin-bottom: 0.65rem;
    font-size: 1.05rem;
}

.hero-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #36516a;
}

.hero-card li {
    margin-bottom: 0.45rem;
}

.hero-actions {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.15rem;
}

.section {
    padding: 3.5rem 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.58);
}

.home-hero {
    position: relative;
    padding-bottom: 3.1rem;
}

.home-hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.5rem;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 2.6rem));
    height: 1px;
    background: linear-gradient(90deg, rgba(125, 154, 182, 0), rgba(125, 154, 182, 0.7), rgba(125, 154, 182, 0));
}

.home-section {
    position: relative;
    overflow: hidden;
}

.home-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(120% 80% at 100% 0, rgba(73, 163, 125, 0.08) 0%, rgba(73, 163, 125, 0) 62%),
        radial-gradient(100% 75% at 0 100%, rgba(34, 131, 162, 0.08) 0%, rgba(34, 131, 162, 0) 62%);
}

.home-section .container {
    position: relative;
    z-index: 1;
}

.home-section-about {
    border-top: 1px solid rgba(173, 196, 215, 0.5);
    border-bottom: 1px solid rgba(173, 196, 215, 0.35);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(246, 251, 255, 0.9));
}

.home-section-offerings {
    border-top: 1px solid rgba(173, 196, 215, 0.45);
    border-bottom: 1px solid rgba(173, 196, 215, 0.32);
    background: linear-gradient(180deg, rgba(237, 247, 255, 0.9), rgba(246, 252, 255, 0.96));
}

.home-section-references {
    border-top: 1px solid rgba(169, 198, 196, 0.45);
    border-bottom: 1px solid rgba(169, 198, 196, 0.35);
    background: linear-gradient(180deg, rgba(242, 251, 247, 0.92), rgba(248, 252, 255, 0.96));
}

.home-section-cta {
    margin-top: 1.3rem;
    border-top: 0;
    border-radius: 24px 24px 0 0;
}

.home-section-cta::before {
    display: none;
}

.section-head {
    margin-bottom: 1.2rem;
    max-width: 70ch;
}

.section-head h2 {
    margin: 0.45rem 0 0.75rem;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.22;
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

.section-actions {
    margin-top: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.feature-grid,
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.feature-grid article,
.card {
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    border: 1px solid #d8e3ef;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(16, 32, 51, 0.08);
    padding: 1.15rem;
}

.card {
    display: flex;
    flex-direction: column;
}

.card-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    border: 1px solid #d8e3ef;
    margin-bottom: 0.75rem;
    background: #edf3fa;
}

.feature-grid h3,
.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}

.feature-grid p,
.card p,
.card small {
    color: #50657d;
}

.card p {
    margin-top: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    height: 25px;
    padding: 0 0.62rem;
    border-radius: 999px;
    background: #e9f8f3;
    color: #0f6458;
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.cta-band {
    color: #ebfcf8;
    background: linear-gradient(135deg, #0b7a6b, #0b9e89);
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cta-inner h2 {
    margin: 0;
    font-family: var(--font-heading);
}

.cta-inner p {
    color: rgba(235, 252, 248, 0.9);
    margin-top: 0.55rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    height: 44px;
    padding: 0 1rem;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
}

.btn-primary {
    color: #3d2a04;
    background: linear-gradient(180deg, #f9b92e, #f1a815);
}

.btn-secondary {
    background: #eef5fb;
    border-color: #d3e2ef;
    color: #173b57;
}

.btn-ghost {
    background: #ffffff;
    border-color: #cfe0ec;
    color: #153f5a;
}

.inline-link {
    display: inline-block;
    color: #0d6286;
    font-weight: 800;
    margin-top: auto;
    padding-top: 0.5rem;
}

.page-hero {
    padding-top: 2.1rem;
    padding-bottom: 1.1rem;
}

.page-hero p {
    margin: 0;
    color: var(--muted);
}

/* Shared Page Hero Standard */
.theme-suite-v5 .page-hero-standard {
    padding-top: 2.5rem;
    padding-bottom: 1.1rem;
}

.theme-suite-v5 .page-hero-standard .page-hero-shell {
    border: 1px solid #c4d8ec;
    border-radius: 22px;
    padding: 1.28rem;
    background:
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.18), transparent 42%),
        radial-gradient(circle at 12% 100%, rgba(20, 184, 166, 0.14), transparent 40%),
        linear-gradient(162deg, #f8fbff 0%, #eef4fd 56%, #e9f1fb 100%);
    box-shadow: 0 22px 36px rgba(15, 23, 42, 0.1);
}

.theme-suite-v5 .page-hero-standard .page-hero-shell .eyebrow {
    margin: 0;
    color: #1d4ed8;
}

.theme-suite-v5 .page-hero-standard .page-hero-shell h1 {
    margin: 0.4rem 0 0.56rem;
    font-size: clamp(1.9rem, 3.2vw, 2.76rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #0f2340;
}

.theme-suite-v5 .page-hero-standard .page-hero-shell > p {
    margin: 0;
    max-width: 66ch;
    color: #415a76;
}

.theme-suite-v5 .page-hero-standard .page-hero-shell .btn {
    margin-top: 0.86rem;
}

@media (max-width: 760px) {
    .theme-suite-v5 .page-hero-standard {
        padding-top: 1.6rem;
        padding-bottom: 0.8rem;
    }

    .theme-suite-v5 .page-hero-standard .page-hero-shell {
        padding: 0.92rem;
        border-radius: 16px;
    }
}

.prose {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid #d7e3ee;
    border-radius: var(--radius);
    padding: 1.3rem;
    box-shadow: 0 10px 24px rgba(16, 32, 51, 0.06);
}

.prose p,
.prose li {
    color: #2f455c;
    line-height: 1.72;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
}

.contact-card,
.contact-form {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid #d8e3ef;
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: 0 10px 25px rgba(16, 32, 51, 0.06);
}

.contact-card h3 {
    margin-top: 0;
}

.contact-card ul {
    margin: 0;
    padding-left: 1rem;
}

.contact-card li {
    margin-bottom: 0.52rem;
    color: #3e5770;
}

.contact-form label {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.78rem;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #cedbe7;
    border-radius: 10px;
    background: #ffffff;
    color: #112235;
    padding: 0.62rem 0.72rem;
    font: inherit;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #8ab0cc;
    box-shadow: 0 0 0 3px rgba(33, 115, 168, 0.14);
}

.alert {
    border-radius: 10px;
    padding: 0.7rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.alert.success {
    background: #dcf6e9;
    color: #0f5e43;
}

.alert.error {
    background: #fde8e8;
    color: #8a2626;
}

.site-footer {
    margin-top: 2.8rem;
    background:
        radial-gradient(circle at 12% 18%, rgba(17, 120, 96, 0.22), transparent 38%),
        radial-gradient(circle at 88% 8%, rgba(245, 158, 11, 0.12), transparent 30%),
        linear-gradient(180deg, #081f24, #081b22);
    color: #d3e4ec;
    padding-top: 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.1fr) minmax(320px, 1.5fr);
    gap: 1.05rem;
}

.footer-brand-card,
.footer-contact-card,
.footer-links-block {
    border: 1px solid rgba(186, 213, 226, 0.22);
    border-radius: 14px;
    background: rgba(8, 29, 37, 0.62);
    backdrop-filter: blur(5px);
    padding: 0.9rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
}

.footer-brand strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #f1fbff;
}

.footer-brand small {
    display: block;
    font-size: 0.78rem;
    color: #9bb8c6;
    margin-top: 0.16rem;
}

.footer-brand-logo {
    width: auto;
    height: 42px;
    max-width: 160px;
    object-fit: contain;
}

.footer-brand.is-logo-only .footer-brand-logo {
    height: 54px;
    max-width: 260px;
}

.footer-brand-note {
    margin: 0.62rem 0 0;
    color: #a9c2ce;
    font-size: 0.82rem;
    line-height: 1.5;
}

.footer-social {
    margin-top: 0.84rem;
    display: grid;
    gap: 0.44rem;
}

.footer-social-title {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8eafbe;
    font-weight: 800;
}

.footer-social-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.44rem;
}

.footer-social-chip {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(159, 196, 212, 0.48);
    background: linear-gradient(180deg, rgba(18, 55, 72, 0.92), rgba(10, 37, 50, 0.92));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px rgba(4, 15, 24, 0.2);
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.footer-social-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(182, 216, 230, 0.78);
    background: linear-gradient(180deg, rgba(22, 70, 91, 0.94), rgba(12, 45, 61, 0.94));
    box-shadow: 0 14px 22px rgba(4, 15, 24, 0.24);
}

.footer-social-chip svg {
    width: 22px;
    height: 22px;
}

.footer-contact-card h4,
.footer-links-block h4 {
    margin: 0 0 0.58rem;
    color: #f1fbff;
}

.footer-contact-list,
.footer-links-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-list {
    display: grid;
    gap: 0.54rem;
}

.footer-contact-list li {
    display: grid;
    gap: 0.12rem;
}

.footer-contact-list span {
    font-size: 0.69rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #90adbb;
    font-weight: 800;
}

.footer-contact-list a,
.footer-contact-list p {
    margin: 0;
    color: #e2f1f7;
    font-size: 0.84rem;
    line-height: 1.5;
}

.footer-map-link {
    margin-top: 0.62rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(142, 185, 204, 0.4);
    color: #d9eef8;
    font-size: 0.8rem;
    font-weight: 800;
    background: rgba(15, 57, 74, 0.7);
}

.footer-map-link:hover {
    border-color: rgba(173, 214, 230, 0.56);
    background: rgba(17, 73, 96, 0.72);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.74rem;
}

.footer-links-block li {
    margin-bottom: 0.42rem;
}

.footer-links-block a {
    color: #d7ebf4;
    font-size: 0.84rem;
    line-height: 1.45;
}

.footer-links-block a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(179, 201, 212, 0.2);
    font-size: 0.84rem;
}

.copyright-license-bar {
    border-top: 1px solid rgba(179, 201, 212, 0.2);
    background: linear-gradient(180deg, rgba(8, 31, 42, 0.9), rgba(8, 27, 34, 0.98));
}

.copyright-license-inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.62rem;
    padding: 0.52rem 0;
}

.copyright-license-link {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: #ebf6fb;
    letter-spacing: 0.01em;
}

.copyright-license-mark-wrap {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(210, 225, 235, 0.85);
    box-shadow: 0 6px 12px rgba(4, 15, 24, 0.24);
}

.copyright-license-mark {
    width: 22px;
    height: 22px;
}

.copyright-license-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.04rem;
}

.copyright-license-line {
    display: inline-flex;
    align-items: center;
    gap: 0.16rem;
    line-height: 1;
}

.copyright-net {
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #f1fbff;
    text-transform: uppercase;
    animation: netGlow 3.2s ease-in-out infinite;
}

.copyright-net::before {
    content: '';
    position: absolute;
    top: 2px;
    left: -6px;
    width: 56%;
    height: calc(100% - 4px);
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
    transform: translateX(-128%) skewX(-18deg);
    animation: netSweep 3.6s ease-in-out infinite;
    pointer-events: none;
}

.copyright-net::after {
    content: attr(data-mirror);
    position: absolute;
    left: 0;
    top: calc(100% + 1px);
    transform: scaleY(-1);
    transform-origin: top center;
    color: rgba(209, 231, 242, 0.33);
    line-height: 1;
    -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.56), transparent 70%);
    mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.56), transparent 70%);
    animation: netMirrorPulse 2.8s ease-in-out infinite;
    pointer-events: none;
}

.copyright-php {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    color: #f5a11c;
    text-transform: none;
}

.copyright-license-sub {
    font-size: 0.56rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(180, 201, 212, 0.78);
    text-transform: uppercase;
}

.copyright-license-text {
    margin: 0;
    color: #b4c9d4;
    font-size: 0.74rem;
    text-align: right;
}

.copyright-license-text a {
    color: #f5b12d;
    font-weight: 800;
}

@keyframes netSweep {
    0% { transform: translateX(-128%) skewX(-18deg); opacity: 0; }
    18% { opacity: 0.9; }
    42% { opacity: 0.2; }
    100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}

@keyframes netMirrorPulse {
    0%, 100% { opacity: 0.26; }
    50% { opacity: 0.42; }
}

@keyframes netGlow {
    0%, 100% { text-shadow: 0 0 0 rgba(255, 255, 255, 0); }
    50% { text-shadow: 0 0 10px rgba(180, 224, 245, 0.28); }
}

.empty-state {
    border: 1px dashed #bdd3e5;
    border-radius: 14px;
    background: linear-gradient(180deg, #fbfdff, #f1f7ff);
    padding: 1.1rem;
    box-shadow: 0 8px 18px rgba(16, 32, 51, 0.07);
}

.empty-state h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    color: #123f5d;
}

.empty-state p {
    margin: 0;
    color: #4f6881;
    line-height: 1.6;
}

@media (max-width: 1020px) {
    .hero-grid,
    .feature-grid,
    .card-grid,
    .contact-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 3.8rem;
    }
}

@media (max-width: 960px) {
    .site-header {
        z-index: 1400;
    }

    .header-top {
        z-index: 1410;
    }

    .header-nav {
        z-index: 1420;
    }

    .container {
        width: min(1180px, calc(100% - 1.15rem));
    }

    .header-top {
        padding-top: 0.42rem;
        padding-bottom: 0.34rem;
    }

    .utility-row {
        grid-template-columns: 1fr auto auto;
        gap: 0.26rem;
    }

    .utility-card {
        padding: 0.22rem 0.24rem;
        border-radius: 10px;
    }

    .utility-links .utility-list {
        gap: 0.22rem;
    }

    .quick-link-chip {
        height: 22px;
        padding: 0 0.32rem;
        border-radius: 7px;
        border-width: 1px;
        box-shadow: 0 4px 10px rgba(10, 36, 57, 0.1);
    }

    .quick-link-chip svg {
        width: 10px;
        height: 10px;
    }

    .quick-link-text {
        font-size: 0.62rem;
        font-weight: 800;
    }

    .site-header::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(8, 23, 36, 0.32);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.16s ease;
        z-index: 1415;
    }

    body.nav-open .site-header::after {
        opacity: 1;
        pointer-events: auto;
    }

    .utility-actions {
        gap: 0.08rem;
    }

    .social-chip {
        width: 26px;
        height: 26px;
        border-radius: 9px;
    }

    .social-chip svg {
        width: 16px;
        height: 16px;
    }

    .utility-languages {
        z-index: 1200;
    }

    .utility-languages .utility-title {
        display: none;
    }

    .lang-dropdown-toggle {
        height: 24px;
        padding: 0 0.1rem;
        border: 0;
        border-radius: 0;
        background: transparent;
        gap: 0.14rem;
    }

    .lang-dropdown-toggle img {
        width: 16px;
        height: 11px;
    }

    .lang-dropdown-toggle svg {
        width: 15px;
        height: 15px;
        color: #09443d;
    }

    .lang-dropdown-menu {
        position: fixed;
        top: 38px;
        right: 8px;
        z-index: 9999;
    }

    .menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 1430;
    }

    .site-nav {
        display: none;
        position: fixed;
        left: 0.58rem;
        right: 0.58rem;
        top: 106px;
        min-width: 0;
        max-height: calc(100vh - 122px);
        overflow-y: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding: 0.58rem;
        border-radius: 14px;
        border: 1px solid #c5d8e8;
        background: #ffffff;
        box-shadow: 0 18px 34px rgba(10, 27, 40, 0.22);
        z-index: 1435;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        height: 38px;
        border-radius: 9px;
        padding: 0 0.62rem;
    }

    .site-nav a::after {
        display: none;
    }

    .site-nav a.is-active,
    .site-nav a:hover {
        transform: none;
    }

    .brand strong {
        font-size: 0.9rem;
    }

    .brand small {
        font-size: 0.73rem;
    }

    .brand-logo {
        height: 40px;
        max-width: 150px;
    }

    .brand.is-logo-only .brand-logo {
        height: 48px;
        max-width: 210px;
    }

    .footer-brand-logo {
        height: 38px;
        max-width: 140px;
    }

    .footer-brand.is-logo-only .footer-brand-logo {
        height: 46px;
        max-width: 200px;
    }

    .footer-social-chip {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .footer-social-chip svg {
        width: 19px;
        height: 19px;
    }

    .copyright-license-inner {
        min-height: 48px;
    }

    .copyright-license-mark-wrap {
        width: 24px;
        height: 24px;
    }

    .copyright-license-mark {
        width: 19px;
        height: 19px;
    }

    .copyright-net,
    .copyright-php {
        font-size: 0.84rem;
    }

    .copyright-license-sub {
        font-size: 0.52rem;
    }

    .home-hero {
        padding-bottom: 2.2rem;
    }

    .home-hero::after {
        width: min(1180px, calc(100% - 1.15rem));
        bottom: 0.24rem;
    }

    .home-section-cta {
        margin-top: 0.92rem;
        border-radius: 18px 18px 0 0;
    }

    .nav-wrap {
        min-height: 70px;
    }

    .hero-actions,
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Offerings/Services Index (Premium Listing) */
.theme-suite-v5 .offerings-index-hero {
    padding-top: 2.5rem;
    padding-bottom: 1rem;
}

.theme-suite-v5 .offerings-index-hero-shell {
    border: 1px solid #c6d9ee;
    border-radius: 22px;
    padding: 1.24rem;
    background:
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.18), transparent 42%),
        radial-gradient(circle at 10% 100%, rgba(20, 184, 166, 0.14), transparent 38%),
        linear-gradient(165deg, #f8fbff 0%, #eef4fd 54%, #e8f0fb 100%);
    box-shadow: 0 22px 36px rgba(15, 23, 42, 0.1);
}

.theme-suite-v5 .offerings-index-hero-service .offerings-index-hero-shell {
    border-color: #205f7a;
    background:
        radial-gradient(circle at 100% 0, rgba(45, 212, 191, 0.2), transparent 42%),
        radial-gradient(circle at 8% 100%, rgba(37, 99, 235, 0.18), transparent 40%),
        linear-gradient(150deg, #0b223d 0%, #123251 52%, #174a66 100%);
    box-shadow: 0 24px 42px rgba(2, 10, 24, 0.42);
}

.theme-suite-v5 .offerings-index-hero-shell .eyebrow {
    margin: 0;
    color: #1d4ed8;
}

.theme-suite-v5 .offerings-index-hero-service .offerings-index-hero-shell .eyebrow {
    color: #67e8f9;
}

.theme-suite-v5 .offerings-index-hero-shell h1 {
    margin: 0.4rem 0 0.56rem;
    font-size: clamp(1.9rem, 3.2vw, 2.76rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #0f2340;
}

.theme-suite-v5 .offerings-index-hero-service .offerings-index-hero-shell h1 {
    color: #f0f9ff;
}

.theme-suite-v5 .offerings-index-hero-shell > p {
    margin: 0;
    max-width: 70ch;
    color: #465f7c;
}

.theme-suite-v5 .offerings-index-hero-service .offerings-index-hero-shell > p {
    color: #c8d9ea;
}

.theme-suite-v5 .offerings-index-actions {
    margin-top: 0.86rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.52rem;
}

.theme-suite-v5 .offerings-index-actions .btn {
    height: 42px;
    border-radius: 12px;
    padding-inline: 0.92rem;
}

.theme-suite-v5 .offerings-index-stats {
    margin-top: 0.94rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.56rem;
}

.theme-suite-v5 .offerings-index-stat {
    border: 1px solid #cadef2;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f5f9ff);
    padding: 0.68rem 0.76rem;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.1rem;
}

.theme-suite-v5 .offerings-index-hero-service .offerings-index-stat {
    border-color: rgba(121, 212, 226, 0.38);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    box-shadow: none;
}

.theme-suite-v5 .offerings-index-stat strong {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    line-height: 1;
    color: #153b63;
}

.theme-suite-v5 .offerings-index-hero-service .offerings-index-stat strong {
    color: #f8fdff;
}

.theme-suite-v5 .offerings-index-stat span {
    color: #4a627e;
    font-size: 0.78rem;
    font-weight: 700;
}

.theme-suite-v5 .offerings-index-hero-service .offerings-index-stat span {
    color: #d3e7f2;
}

.theme-suite-v5 .offerings-index-section {
    padding-top: 0.94rem;
    padding-bottom: 3rem;
}

.theme-suite-v5 .offerings-index-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.82rem;
}

.theme-suite-v5 .offering-index-card {
    border: 1px solid #c7d8ec;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(176deg, #ffffff 0%, #f3f8ff 100%);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.theme-suite-v5 .offering-index-card:hover {
    transform: translateY(-4px);
    border-color: #9cbce4;
    box-shadow: 0 22px 34px rgba(15, 23, 42, 0.16);
}

.theme-suite-v5 .offering-index-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 10%, rgba(59, 130, 246, 0.24), transparent 44%),
        linear-gradient(145deg, #d7e8fb, #c6dbf4);
}

.theme-suite-v5 .offering-index-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 19, 38, 0.04) 38%, rgba(8, 19, 38, 0.38) 100%);
    pointer-events: none;
}

.theme-suite-v5 .offering-index-media .card-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.theme-suite-v5 .offering-index-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #21496f;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.theme-suite-v5 .offering-index-type,
.theme-suite-v5 .offering-index-badge {
    position: absolute;
    z-index: 2;
    min-height: 26px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.62rem;
    display: inline-flex;
    align-items: center;
}

.theme-suite-v5 .offering-index-type {
    top: 0.62rem;
    left: 0.62rem;
    border: 1px solid rgba(191, 219, 254, 0.72);
    background: rgba(2, 6, 23, 0.62);
    color: #dbeafe;
}

.theme-suite-v5 .offering-index-badge {
    right: 0.62rem;
    bottom: 0.62rem;
    border: 1px solid rgba(121, 212, 226, 0.72);
    background: rgba(15, 118, 110, 0.68);
    color: #ecfeff;
}

.theme-suite-v5 .offering-index-body {
    padding: 0.78rem 0.84rem 0.88rem;
    display: grid;
    gap: 0.42rem;
}

.theme-suite-v5 .offering-index-top {
    display: flex;
    align-items: center;
    gap: 0.44rem;
}

.theme-suite-v5 .offering-index-order {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid #c7d8ef;
    background: #f1f7ff;
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.theme-suite-v5 .offering-index-featured {
    min-height: 30px;
    border-radius: 999px;
    border: 1px solid #bce3d8;
    background: #ecfdf5;
    color: #0f766e;
    font-size: 0.73rem;
    font-weight: 800;
    padding: 0.22rem 0.66rem;
    display: inline-flex;
    align-items: center;
}

.theme-suite-v5 .offering-index-body h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.22;
    color: #122a48;
}

.theme-suite-v5 .offering-index-body p {
    margin: 0;
    color: #49627d;
    line-height: 1.5;
    min-height: 3em;
}

.theme-suite-v5 .offering-index-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.42rem;
    margin-top: 0.1rem;
}

.theme-suite-v5 .offering-index-footer small {
    color: #58718c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.theme-suite-v5 .offering-index-footer .inline-link {
    min-height: 30px;
    border-radius: 999px;
    border: 1px solid #c8d9ef;
    background: #f7fbff;
    color: #1d4ed8;
    padding: 0 0.66rem;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    white-space: nowrap;
}

.theme-suite-v5 .offerings-index-empty {
    border: 1px solid #c7d9ee;
    border-radius: 16px;
    background: linear-gradient(160deg, #ffffff, #eef4fb);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    padding: 1rem;
}

@media (max-width: 1100px) {
    .theme-suite-v5 .offerings-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .theme-suite-v5 .offerings-index-hero {
        padding-top: 1.6rem;
        padding-bottom: 0.8rem;
    }

    .theme-suite-v5 .offerings-index-hero-shell {
        padding: 0.92rem;
        border-radius: 16px;
    }

    .theme-suite-v5 .offerings-index-actions {
        margin-top: 0.7rem;
        gap: 0.4rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .theme-suite-v5 .offerings-index-actions .btn {
        width: 100%;
        min-width: 0;
        height: 40px;
        padding-inline: 0.5rem;
    }

    .theme-suite-v5 .offerings-index-stats {
        grid-template-columns: 1fr;
        gap: 0.42rem;
    }

    .theme-suite-v5 .offerings-index-section {
        padding-top: 0.66rem;
        padding-bottom: 1.8rem;
    }

    .theme-suite-v5 .offerings-index-grid {
        grid-template-columns: 1fr;
        gap: 0.66rem;
    }
}

.reference-hero {
    padding-top: 2.4rem;
}

/* References Index (Premium Listing) */
.theme-suite-v5 .references-index-hero {
    padding-top: 2.5rem;
    padding-bottom: 1.1rem;
}

.theme-suite-v5 .references-index-hero-shell {
    border: 1px solid #c4d8ec;
    border-radius: 22px;
    padding: 1.28rem;
    background:
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.18), transparent 42%),
        radial-gradient(circle at 12% 100%, rgba(20, 184, 166, 0.14), transparent 40%),
        linear-gradient(162deg, #f8fbff 0%, #eef4fd 56%, #e9f1fb 100%);
    box-shadow: 0 22px 36px rgba(15, 23, 42, 0.1);
}

.theme-suite-v5 .references-index-hero-shell .eyebrow {
    margin: 0;
    color: #1d4ed8;
}

.theme-suite-v5 .references-index-hero-shell h1 {
    margin: 0.4rem 0 0.56rem;
    font-size: clamp(1.9rem, 3.2vw, 2.76rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #0f2340;
}

.theme-suite-v5 .references-index-hero-shell > p {
    margin: 0;
    max-width: 66ch;
    color: #415a76;
}

.theme-suite-v5 .references-index-stats {
    margin-top: 0.98rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.58rem;
}

.theme-suite-v5 .references-index-stat {
    border: 1px solid #cddcf0;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f4f8ff);
    padding: 0.7rem 0.76rem;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.1rem;
}

.theme-suite-v5 .references-index-stat strong {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    line-height: 1;
    color: #163962;
}

.theme-suite-v5 .references-index-stat span {
    color: #4a607c;
    font-size: 0.78rem;
    font-weight: 700;
}

.theme-suite-v5 .references-index-section {
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.theme-suite-v5 .references-index-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.82rem;
}

.theme-suite-v5 .reference-index-card {
    border: 1px solid #c7d7eb;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(176deg, #ffffff 0%, #f3f8ff 100%);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.theme-suite-v5 .reference-index-card:hover {
    transform: translateY(-4px);
    border-color: #9ebee4;
    box-shadow: 0 22px 34px rgba(15, 23, 42, 0.16);
}

.theme-suite-v5 .reference-index-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 8%, rgba(59, 130, 246, 0.24), transparent 44%),
        linear-gradient(145deg, #d8e8fb, #c7dcf4);
}

.theme-suite-v5 .reference-index-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 19, 38, 0.02) 34%, rgba(8, 19, 38, 0.34) 100%);
    pointer-events: none;
}

.theme-suite-v5 .reference-index-media .card-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.theme-suite-v5 .reference-index-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #204972;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.theme-suite-v5 .reference-index-sector {
    position: absolute;
    top: 0.62rem;
    left: 0.62rem;
    z-index: 2;
    min-height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.7);
    background: rgba(2, 6, 23, 0.62);
    color: #dbeafe;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.62rem;
    display: inline-flex;
    align-items: center;
}

.theme-suite-v5 .reference-index-body {
    padding: 0.78rem 0.84rem 0.88rem;
    display: grid;
    gap: 0.42rem;
}

.theme-suite-v5 .reference-index-top {
    display: flex;
    align-items: center;
    gap: 0.42rem;
}

.theme-suite-v5 .reference-index-order {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid #c8d8ef;
    background: #f1f7ff;
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.theme-suite-v5 .reference-index-client {
    min-height: 30px;
    border-radius: 999px;
    border: 1px solid #c6d7ed;
    background: #ffffff;
    color: #224564;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.24rem 0.68rem;
    display: inline-flex;
    align-items: center;
}

.theme-suite-v5 .reference-index-body h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.22;
    color: #122947;
}

.theme-suite-v5 .reference-index-body p {
    margin: 0;
    color: #48617c;
    line-height: 1.5;
    min-height: 3em;
}

.theme-suite-v5 .reference-index-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.42rem;
    margin-top: 0.1rem;
}

.theme-suite-v5 .reference-index-footer small {
    color: #58708a;
    font-size: 0.72rem;
    line-height: 1.36;
}

.theme-suite-v5 .reference-index-footer .inline-link {
    min-height: 30px;
    border-radius: 999px;
    border: 1px solid #c8d9f0;
    background: #f7fbff;
    color: #1d4ed8;
    padding: 0 0.66rem;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    white-space: nowrap;
}

.theme-suite-v5 .references-index-empty {
    border: 1px solid #c7d9ee;
    border-radius: 16px;
    background: linear-gradient(160deg, #ffffff, #eef4fb);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    padding: 1rem;
}

@media (max-width: 1100px) {
    .theme-suite-v5 .references-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .theme-suite-v5 .references-index-hero {
        padding-top: 1.6rem;
        padding-bottom: 0.8rem;
    }

    .theme-suite-v5 .references-index-hero-shell {
        padding: 0.92rem;
        border-radius: 16px;
    }

    .theme-suite-v5 .references-index-stats {
        grid-template-columns: 1fr;
        gap: 0.42rem;
    }

    .theme-suite-v5 .references-index-section {
        padding-top: 0.66rem;
        padding-bottom: 1.8rem;
    }

    .theme-suite-v5 .references-index-grid {
        grid-template-columns: 1fr;
        gap: 0.66rem;
    }
}

.reference-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.35rem;
    align-items: center;
}

.reference-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.1rem;
}

.reference-meta-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #083a34;
    background: rgba(10, 127, 111, 0.12);
    border: 1px solid rgba(10, 127, 111, 0.2);
}

.reference-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.68rem;
}

.reference-hero-media {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #d9e3ea;
    box-shadow: var(--shadow);
    background: #f6fbf9;
}

.reference-hero-media img {
    display: block;
    width: 100%;
    height: auto;
}

.reference-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
    gap: 1rem;
    align-items: start;
}

.reference-detail-content,
.reference-side-card {
    background: #ffffff;
    border: 1px solid #d9e3ea;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.reference-detail-content {
    padding: 1.2rem;
}

.reference-detail-content h2 {
    margin: 0 0 0.7rem;
}

.reference-rich-text {
    color: #20434a;
    line-height: 1.72;
}

.reference-rich-text p {
    margin: 0 0 0.86rem;
}

.reference-detail-sidebar {
    display: grid;
    gap: 0.9rem;
}

.reference-side-card {
    padding: 1rem;
}

.reference-side-card h3 {
    margin: 0 0 0.58rem;
}

.reference-side-card ul {
    margin: 0;
    padding-left: 1.08rem;
    color: #385760;
    line-height: 1.6;
}

.reference-side-link {
    color: #0d6286;
    font-weight: 800;
}

.reference-side-card p {
    margin: 0 0 0.75rem;
}

@media (max-width: 980px) {
    .reference-hero-grid,
    .reference-detail-layout {
        grid-template-columns: 1fr;
    }
}

.reference-hero.reference-hero-pro {
    position: relative;
    overflow: hidden;
    background: linear-gradient(130deg, #0b4f66 0%, #0b7f73 54%, #49a37d 100%);
}

.reference-hero.reference-hero-pro::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -76px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
}

.reference-hero.reference-hero-pro .reference-hero-content h1,
.reference-hero.reference-hero-pro .reference-hero-content p,
.reference-hero.reference-hero-pro .reference-hero-content .eyebrow {
    color: #f7fffc;
}

.reference-hero.reference-hero-pro .reference-hero-content .eyebrow {
    letter-spacing: 0.1em;
    font-weight: 700;
    opacity: 0.9;
}

.reference-hero.reference-hero-pro .reference-meta-chip {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
}

.reference-hero.reference-hero-pro .reference-hero-actions .btn.btn-ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.reference-hero.reference-hero-pro .reference-hero-actions .btn.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.reference-hero.reference-hero-pro .reference-hero-media {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.reference-detail-section {
    background:
        radial-gradient(110% 70% at 100% 0, rgba(73, 163, 125, 0.16) 0%, rgba(73, 163, 125, 0) 64%),
        linear-gradient(180deg, #f5fbff 0%, #eef7f3 100%);
}

.reference-detail-content {
    border-radius: 18px;
    border-color: #d3e4ea;
    padding: 1.28rem;
}

.reference-detail-content h2 {
    font-size: 1.34rem;
    color: #0f3f50;
}

.reference-rich-text {
    font-size: 1.02rem;
    color: #264b56;
}

.reference-rich-text h3,
.reference-rich-text h4 {
    color: #0f3f50;
    margin: 0.95rem 0 0.55rem;
}

.reference-rich-text ul,
.reference-rich-text ol {
    margin: 0.5rem 0 0.86rem 1.2rem;
}

.reference-side-card {
    border-radius: 18px;
    border-color: #d3e4ea;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
}

.reference-side-card h3 {
    color: #0f3f50;
}

.reference-side-card .btn.btn-primary {
    width: 100%;
    justify-content: center;
}

.reference-gallery-section {
    padding-top: 1.5rem;
}

.reference-gallery-prime {
    background:
        radial-gradient(120% 85% at 100% 0, rgba(34, 131, 162, 0.16) 0%, rgba(34, 131, 162, 0) 65%),
        linear-gradient(180deg, #eef8ff 0%, #f6fbff 100%);
}

.reference-gallery-panel {
    border: 1px solid #cfe2eb;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #f8fcff);
    box-shadow: var(--shadow);
    padding: 0.92rem;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 0.78rem;
    align-items: start;
}

.reference-gallery-stage-col {
    display: grid;
    gap: 0.52rem;
}

.reference-gallery-stage-media {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #d7e8ef;
    background: #eef7fb;
    box-shadow: 0 10px 24px rgba(12, 38, 54, 0.11);
}

.reference-gallery-stage-media img {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.reference-gallery-stage-media figcaption {
    padding: 0.58rem 0.72rem;
    font-size: 0.84rem;
    color: #214654;
    background: #ffffff;
    border-top: 1px solid #d7e8ef;
}

.reference-gallery-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.reference-gallery-nav {
    width: 36px;
    height: 36px;
    border: 1px solid #c7dbe5;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff, #f0f8fd);
    color: #163f50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(16, 32, 51, 0.09);
    font-size: 1.08rem;
    line-height: 1;
}

.reference-gallery-nav:hover {
    border-color: #87afbf;
    background: #f4fbff;
}

.reference-gallery-nav:disabled {
    opacity: 0.4;
    cursor: default;
}

.reference-gallery-counter {
    height: 36px;
    min-width: 92px;
    border-radius: 999px;
    border: 1px solid #cee0e9;
    background: #f4fbff;
    color: #1d5060;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
}

.reference-gallery-info {
    border: 1px solid #d9e7ee;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f6fbff);
    padding: 0.72rem;
    display: grid;
    gap: 0.56rem;
}

.reference-gallery-info-head h2 {
    margin: 0.2rem 0 0;
    font-family: var(--font-heading);
    font-size: 1.06rem;
    color: #123f4f;
}

.reference-gallery-info-head .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.09em;
}

.reference-gallery-thumb-rail {
    display: grid;
    gap: 0.38rem;
    max-height: 430px;
    overflow-y: auto;
    padding-right: 0.14rem;
}

.reference-gallery-thumb {
    width: 100%;
    border: 1px solid #cfe0e8;
    border-radius: 11px;
    background: #ffffff;
    padding: 0.33rem;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 0.46rem;
    align-items: center;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.reference-gallery-thumb img {
    width: 70px;
    height: 52px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.reference-gallery-thumb span {
    font-size: 0.79rem;
    color: #234f5e;
    font-weight: 700;
    line-height: 1.35;
}

.reference-gallery-thumb:hover {
    border-color: #92b5c4;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(16, 36, 52, 0.09);
}

.reference-gallery-thumb.is-active {
    border-color: #0a7f6f;
    background: linear-gradient(180deg, #effcf7, #f7fffb);
    box-shadow: 0 0 0 2px rgba(10, 127, 111, 0.16);
}

.reference-related-section .card {
    border: 1px solid #d6e6ea;
    border-radius: 16px;
    background: #ffffff;
}

.reference-slider-wrap {
    --ref-gap: 0.66rem;
    --ref-per-view: 4;
    margin-top: 0.35rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.42rem;
}

.reference-slider-viewport {
    overflow: hidden;
}

.reference-slider-track {
    display: flex;
    gap: var(--ref-gap);
    transition: transform 0.34s ease;
    will-change: transform;
}

.reference-slide {
    flex: 0 0 calc((100% - (var(--ref-gap) * (var(--ref-per-view) - 1))) / var(--ref-per-view));
    padding: 0.78rem;
    border-radius: 13px;
}

.reference-slide .card-media {
    margin-bottom: 0.58rem;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
}

.reference-slide h3 {
    font-size: 0.98rem;
    margin-bottom: 0.34rem;
}

.reference-slide p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.45;
}

.reference-slide .inline-link {
    margin-top: 0.56rem;
    font-size: 0.83rem;
}

.reference-slider-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #c9dce5;
    border-radius: 10px;
    background: #ffffff;
    color: #184b5d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(16, 32, 51, 0.08);
    transition: all 0.18s ease;
}

.reference-slider-btn span {
    font-size: 1.15rem;
    line-height: 1;
}

.reference-slider-btn:hover {
    border-color: #8eb0be;
    background: #f3fbff;
}

.reference-slider-btn:disabled {
    opacity: 0.42;
    cursor: default;
}

@media (max-width: 1024px) {
    .reference-gallery-panel {
        grid-template-columns: 1fr;
    }

    .reference-gallery-thumb-rail {
        max-height: none;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
    }

    .reference-gallery-thumb {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        padding: 0.28rem;
    }

    .reference-gallery-thumb img {
        width: 100%;
        height: 64px;
    }

    .reference-gallery-thumb span {
        font-size: 0.73rem;
        line-height: 1.3;
    }
}

@media (max-width: 680px) {
    .hero {
        padding-top: 2.8rem;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(1.55rem, 9vw, 2.1rem);
        line-height: 1.22;
    }

    .btn {
        height: 42px;
        font-size: 0.86rem;
    }

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

    .hero-actions {
        flex-direction: row;
        align-items: stretch;
        width: 100%;
        gap: 0.5rem;
    }

    .hero-actions .btn {
        width: auto;
        flex: 1 1 0;
        min-width: 0;
        padding-inline: 0.5rem;
    }

    .reference-hero.reference-hero-pro {
        padding-top: 1.6rem;
    }

    .reference-meta-chip {
        font-size: 0.74rem;
    }

    .reference-slider-wrap {
        --ref-gap: 0.5rem;
        --ref-per-view: 1;
        gap: 0.3rem;
    }

    .reference-slide {
        padding: 0.68rem;
    }

    .reference-slide h3 {
        font-size: 0.92rem;
    }

    .reference-slide p {
        font-size: 0.82rem;
    }

    .reference-slider-btn {
        width: 30px;
        height: 30px;
        border-radius: 9px;
    }

    .reference-gallery-panel {
        padding: 0.56rem;
        border-radius: 15px;
    }

    .reference-gallery-stage-media img {
        max-height: 260px;
    }

    .reference-gallery-controls {
        gap: 0.42rem;
    }

    .reference-gallery-nav {
        width: 32px;
        height: 32px;
    }

    .reference-gallery-counter {
        min-width: 76px;
        height: 32px;
        font-size: 0.76rem;
    }

    .reference-gallery-info {
        padding: 0.56rem;
        border-radius: 13px;
    }

    .reference-gallery-thumb-rail {
        display: flex;
        gap: 0.34rem;
        overflow-x: auto;
        padding-bottom: 0.1rem;
        scrollbar-width: none;
    }

    .reference-gallery-thumb-rail::-webkit-scrollbar {
        display: none;
    }

    .reference-gallery-thumb {
        flex: 0 0 62%;
    }

    .reference-gallery-thumb img {
        height: 86px;
    }

    .reference-gallery-thumb span {
        font-size: 0.72rem;
    }

    .copyright-license-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.44rem;
        padding: 0.58rem 0 0.64rem;
    }

    .copyright-license-link {
        min-width: 0;
        max-width: 72%;
    }

    .copyright-license-text {
        margin-left: auto;
        text-align: right;
        font-size: 0.66rem;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .copyright-license-sub {
        font-size: 0.48rem;
    }
}

/* Suite V2 Layer */
body.theme-suite-v2 {
    --v2-ink: #0e2338;
    --v2-muted: #4f6274;
    --v2-line: rgba(98, 131, 159, 0.22);
    --v2-glow-a: rgba(11, 143, 132, 0.25);
    --v2-glow-b: rgba(247, 168, 51, 0.24);
    --v2-panel: rgba(255, 255, 255, 0.86);
    background:
        radial-gradient(circle at 8% 3%, rgba(11, 143, 132, 0.15), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(247, 168, 51, 0.2), transparent 24%),
        linear-gradient(180deg, #f5faff 0%, #ecf3fb 54%, #f2f8f6 100%);
}

.theme-suite-v2 .v2-site-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(115deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.08) 75%, transparent 75%, transparent);
    background-size: 26px 26px;
    mix-blend-mode: soft-light;
}

.theme-suite-v2 .site-shell {
    position: relative;
    z-index: 1;
}

.theme-suite-v2 [data-reveal] {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.theme-suite-v2 [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.theme-suite-v2 .home-hero-v2 {
    padding-top: 5.2rem;
    padding-bottom: 3.6rem;
}

.theme-suite-v2 .hero-grid-v2 {
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
    gap: 1.2rem;
    align-items: stretch;
}

.theme-suite-v2 .hero-main {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(248, 253, 255, 0.82));
    border: 1px solid var(--v2-line);
    border-radius: 26px;
    padding: 1.55rem;
    box-shadow: 0 24px 55px rgba(16, 39, 60, 0.13);
    position: relative;
    overflow: hidden;
}

.theme-suite-v2 .hero-main::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    right: -130px;
    top: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 143, 132, 0.18), transparent 72%);
}

.theme-suite-v2 .hero-main > * {
    position: relative;
    z-index: 1;
}

.theme-suite-v2 .hero-kicker {
    margin: 0.58rem 0 0;
    display: inline-flex;
    height: 29px;
    align-items: center;
    padding: 0 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(9, 102, 94, 0.2);
    background: rgba(11, 143, 132, 0.09);
    color: #0c5b52;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.theme-suite-v2 .hero-lead {
    margin: 0;
    max-width: 65ch;
    color: var(--v2-muted);
    font-size: 1.02rem;
}

.theme-suite-v2 .hero-metric-list {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.62rem;
}

.theme-suite-v2 .hero-metric {
    border: 1px solid var(--v2-line);
    border-radius: 13px;
    padding: 0.72rem;
    background: rgba(255, 255, 255, 0.8);
    display: grid;
    gap: 0.26rem;
}

.theme-suite-v2 .counter-value {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.8vw, 1.56rem);
    letter-spacing: -0.02em;
    color: #0d304c;
}

.theme-suite-v2 .hero-metric span,
.theme-suite-v2 .v2-impact-card span {
    color: #3f5a71;
    font-size: 0.78rem;
    font-weight: 700;
}

.theme-suite-v2 .hero-trust-row {
    margin-top: 0.94rem;
    display: grid;
    gap: 0.44rem;
}

.theme-suite-v2 .hero-trust-row > span {
    font-size: 0.78rem;
    font-weight: 700;
    color: #35526a;
}

.theme-suite-v2 .hero-trust-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
}

.theme-suite-v2 .hero-trust-brands em {
    font-style: normal;
    height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(110, 137, 161, 0.34);
    background: rgba(255, 255, 255, 0.75);
    color: #27465d;
    font-size: 0.74rem;
    font-weight: 700;
}

.theme-suite-v2 .hero-stage-card {
    border-radius: 22px;
    border: 1px solid rgba(100, 137, 165, 0.32);
    padding: 1.25rem;
    color: #eaf7ff;
    background:
        radial-gradient(circle at 80% 14%, var(--v2-glow-b), transparent 34%),
        radial-gradient(circle at 20% 100%, var(--v2-glow-a), transparent 40%),
        linear-gradient(145deg, #0d3954 0%, #0a6673 52%, #0b8f84 100%);
    box-shadow: 0 24px 52px rgba(8, 34, 52, 0.22);
}

.theme-suite-v2 .hero-stage-eyebrow {
    margin: 0;
    color: rgba(231, 245, 255, 0.82);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.theme-suite-v2 .hero-stage-card h3 {
    margin: 0.42rem 0 0.6rem;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.theme-suite-v2 .hero-stage-text {
    margin: 0;
    color: rgba(234, 247, 255, 0.88);
    font-size: 0.93rem;
}

.theme-suite-v2 .hero-stage-flow {
    display: grid;
    gap: 0.52rem;
    margin-top: 0.9rem;
}

.theme-suite-v2 .hero-stage-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0.54rem;
    align-items: start;
    border: 1px solid rgba(233, 247, 255, 0.22);
    border-radius: 12px;
    padding: 0.58rem;
    background: rgba(255, 255, 255, 0.08);
}

.theme-suite-v2 .hero-stage-order {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 900;
}

.theme-suite-v2 .hero-stage-item h4 {
    margin: 0;
    font-size: 0.88rem;
}

.theme-suite-v2 .hero-stage-item p {
    margin: 0.2rem 0 0;
    font-size: 0.77rem;
    color: rgba(232, 245, 255, 0.84);
}

.theme-suite-v2 .hero-stage-checklist {
    margin: 0.92rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.42rem;
}

.theme-suite-v2 .hero-stage-checklist li {
    padding-left: 1.06rem;
    position: relative;
    color: rgba(235, 248, 255, 0.96);
    font-size: 0.8rem;
}

.theme-suite-v2 .hero-stage-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.44rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ffc766;
    box-shadow: 0 0 0 4px rgba(255, 199, 102, 0.2);
}

.theme-suite-v2 .v2-impact-band {
    padding-top: 0;
    margin-top: -0.6rem;
}

.theme-suite-v2 .v2-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.64rem;
}

.theme-suite-v2 .v2-impact-card {
    border: 1px solid rgba(92, 124, 149, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    padding: 0.78rem;
    display: grid;
    gap: 0.18rem;
    box-shadow: 0 12px 26px rgba(15, 35, 55, 0.09);
}

.theme-suite-v2 .v2-about,
.theme-suite-v2 .v2-offerings,
.theme-suite-v2 .v2-references,
.theme-suite-v2 .v2-workflow {
    border-top: 1px solid rgba(162, 187, 209, 0.36);
}

.theme-suite-v2 .feature-grid-v2 article {
    position: relative;
    padding-top: 1.52rem;
}

.theme-suite-v2 .feature-index {
    position: absolute;
    top: -12px;
    left: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(90, 123, 150, 0.3);
    background: linear-gradient(180deg, #ffffff, #edf6ff);
    color: #15445f;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme-suite-v2 .card-v2 {
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 252, 255, 0.86));
    border: 1px solid rgba(134, 164, 188, 0.28);
    box-shadow: 0 18px 36px rgba(14, 38, 58, 0.11);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.theme-suite-v2 .card-v2:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 118, 168, 0.4);
    box-shadow: 0 24px 46px rgba(14, 38, 58, 0.18);
}

.theme-suite-v2 .offerings-grid-v2,
.theme-suite-v2 .reference-grid-v2 {
    gap: 0.9rem;
}

.theme-suite-v2 .workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.theme-suite-v2 .workflow-card {
    position: relative;
    border: 1px solid rgba(129, 163, 181, 0.3);
    border-radius: 17px;
    background: linear-gradient(180deg, #ffffff, #f4faff);
    padding: 1.1rem;
    box-shadow: 0 14px 30px rgba(15, 37, 56, 0.1);
}

.theme-suite-v2 .workflow-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(23, 88, 127, 0.22);
    background: rgba(11, 143, 132, 0.1);
    color: #0d5b65;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.theme-suite-v2 .workflow-card h3 {
    margin: 0.62rem 0 0.44rem;
    color: var(--v2-ink);
    font-size: 1.02rem;
}

.theme-suite-v2 .workflow-card p {
    margin: 0;
    color: var(--v2-muted);
    line-height: 1.6;
}

.theme-suite-v2 .v2-cta {
    background:
        radial-gradient(circle at 18% 16%, rgba(251, 197, 98, 0.34), transparent 26%),
        linear-gradient(135deg, #0a4e68, #0b7f73 52%, #12a092 100%);
    border-radius: 24px;
    box-shadow: 0 26px 54px rgba(8, 31, 48, 0.24);
}

.theme-suite-v2 .v2-cta .btn-primary {
    color: #322202;
    background: linear-gradient(180deg, #ffc45a, #f4ab2d);
    border-color: rgba(0, 0, 0, 0.06);
}

@media (max-width: 1060px) {
    .theme-suite-v2 .hero-grid-v2,
    .theme-suite-v2 .v2-impact-grid,
    .theme-suite-v2 .workflow-grid {
        grid-template-columns: 1fr;
    }

    .theme-suite-v2 .hero-metric-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .theme-suite-v2 .home-hero-v2 {
        padding-top: 3.2rem;
    }

    .theme-suite-v2 .hero-main,
    .theme-suite-v2 .hero-stage-card {
        border-radius: 18px;
        padding: 1rem;
    }

    .theme-suite-v2 .hero-metric-list {
        grid-template-columns: 1fr;
    }

    .theme-suite-v2 .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .theme-suite-v2 .hero-actions .btn {
        width: 100%;
    }

    .theme-suite-v2 .hero-trust-row {
        gap: 0.38rem;
    }

    .theme-suite-v2 .hero-trust-brands {
        gap: 0.28rem;
    }

    .theme-suite-v2 .hero-trust-brands em {
        height: 26px;
        padding: 0 0.58rem;
    }

    .theme-suite-v2 .v2-impact-card,
    .theme-suite-v2 .workflow-card {
        border-radius: 14px;
    }
}

/* Suite V3 Rebuild */
body.theme-suite-v3 {
    --v3-ink: #142033;
    --v3-muted: #56637a;
    --v3-line: #d7e0ee;
    --v3-soft: #edf2fb;
    --v3-surface: #ffffff;
    --v3-accent: #ef7e3b;
    --v3-accent-2: #1f8a70;
    --v3-brand: #2856d6;
    --v3-brand-dark: #1d3f9f;
    --v3-shadow: 0 18px 40px rgba(24, 37, 62, 0.12);
    background:
        radial-gradient(circle at 2% 0, rgba(31, 138, 112, 0.14), transparent 26%),
        radial-gradient(circle at 100% 0, rgba(239, 126, 59, 0.18), transparent 27%),
        linear-gradient(180deg, #f8fbff 0%, #f2f6fd 50%, #f7fafc 100%);
    color: var(--v3-ink);
}

.theme-suite-v3 .v2-site-grain {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
    background-image: radial-gradient(rgba(17, 26, 42, 0.05) 0.6px, transparent 0.6px);
    background-size: 9px 9px;
}

.theme-suite-v3 .site-shell {
    position: relative;
    z-index: 1;
}

.theme-suite-v3 .container {
    width: min(1220px, calc(100% - 2.4rem));
}

.theme-suite-v3 .site-header {
    position: sticky;
    top: 0;
    z-index: 1400;
}

.theme-suite-v3 .header-top {
    background: rgba(8, 18, 36, 0.92);
    border-bottom: 1px solid rgba(157, 181, 227, 0.24);
    padding: 0.36rem 0;
    backdrop-filter: blur(10px);
}

.theme-suite-v3 .utility-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.44rem;
}

.theme-suite-v3 .utility-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.theme-suite-v3 .utility-links .utility-list {
    gap: 0.36rem;
}

.theme-suite-v3 .quick-link-chip {
    border: 1px solid rgba(184, 207, 244, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: #eaf0ff;
    font-size: 0.7rem;
    font-weight: 700;
    height: 28px;
    padding: 0 0.66rem;
    box-shadow: none;
}

.theme-suite-v3 .quick-link-chip:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.34);
    transform: translateY(0);
}

.theme-suite-v3 .quick-link-chip.quick-link-variant-1,
.theme-suite-v3 .quick-link-chip.quick-link-variant-2,
.theme-suite-v3 .quick-link-chip.quick-link-variant-3,
.theme-suite-v3 .quick-link-chip.quick-link-variant-4,
.theme-suite-v3 .quick-link-chip.quick-link-variant-5,
.theme-suite-v3 .quick-link-chip.quick-link-variant-6,
.theme-suite-v3 .quick-link-chip.is-phone,
.theme-suite-v3 .quick-link-chip.is-whatsapp {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(184, 207, 244, 0.28);
    color: #eaf0ff;
}

.theme-suite-v3 .social-chip {
    width: 29px;
    height: 29px;
    border-radius: 999px;
    border: 1px solid rgba(184, 207, 244, 0.33);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.theme-suite-v3 .social-chip:hover {
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.22);
    transform: none;
}

.theme-suite-v3 .social-chip svg {
    width: 17px;
    height: 17px;
}

.theme-suite-v3 .lang-dropdown-toggle {
    border: 1px solid rgba(184, 207, 244, 0.33);
    border-radius: 999px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #eaf0ff;
    padding: 0 0.45rem;
}

.theme-suite-v3 .lang-dropdown-toggle svg {
    color: #eaf0ff;
}

.theme-suite-v3 .lang-dropdown-menu {
    border-color: #ced8ec;
    border-radius: 12px;
}

.theme-suite-v3 .header-nav {
    border: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
}

.theme-suite-v3 .nav-wrap {
    min-height: 82px;
    gap: 0.8rem;
}

.theme-suite-v3 .brand {
    gap: 0.62rem;
}

.theme-suite-v3 .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background:
        linear-gradient(140deg, var(--v3-brand) 0%, #4f7af3 55%, #86a4ff 100%);
    box-shadow: 0 12px 26px rgba(31, 72, 180, 0.28);
}

.theme-suite-v3 .brand-logo {
    max-width: 190px;
    height: 48px;
}

.theme-suite-v3 .brand strong {
    font-family: var(--font-heading);
    font-size: 1.04rem;
    color: #1d2e4a;
}

.theme-suite-v3 .brand small {
    font-size: 0.78rem;
    color: #60708a;
}

.theme-suite-v3 .site-nav {
    margin-left: auto;
    border: 1px solid #d3deef;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(28, 47, 78, 0.08);
    padding: 0.26rem;
    gap: 0.22rem;
}

.theme-suite-v3 .site-nav a {
    height: 40px;
    border-radius: 10px;
    padding: 0 0.84rem;
    color: #1f3558;
    font-size: 0.84rem;
    font-weight: 700;
}

.theme-suite-v3 .site-nav a::after {
    display: none;
}

.theme-suite-v3 .site-nav a:hover,
.theme-suite-v3 .site-nav a.is-active {
    background: linear-gradient(120deg, #2f5fe2, #3f75f7);
    color: #f3f7ff;
    transform: none;
}

.theme-suite-v3 .menu-toggle {
    border: 1px solid #d2ddef;
    border-radius: 11px;
    width: 42px;
    height: 42px;
    color: #213a63;
}

.theme-suite-v3 .home-hero-v2 {
    padding-top: 4rem;
    padding-bottom: 2.1rem;
}

.theme-suite-v3 .hero-grid-v2 {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 0.94rem;
}

.theme-suite-v3 .hero-main,
.theme-suite-v3 .hero-stage-card {
    border-radius: 26px;
    border: 1px solid var(--v3-line);
    box-shadow: var(--v3-shadow);
    position: relative;
    overflow: hidden;
}

.theme-suite-v3 .hero-main {
    padding: 1.56rem;
    background:
        radial-gradient(circle at 95% 15%, rgba(40, 86, 214, 0.18), transparent 30%),
        linear-gradient(160deg, #ffffff, #f4f8ff);
}

.theme-suite-v3 .hero-main::before {
    content: '';
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    border-radius: 28px;
    transform: rotate(22deg);
    background: linear-gradient(140deg, rgba(31, 138, 112, 0.22), rgba(31, 138, 112, 0));
}

.theme-suite-v3 .hero-kicker {
    display: inline-flex;
    align-items: center;
    height: 30px;
    border-radius: 999px;
    padding: 0 0.7rem;
    background: rgba(40, 86, 214, 0.1);
    border: 1px solid rgba(40, 86, 214, 0.2);
    color: #244fbf;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.theme-suite-v3 .hero h1 {
    font-size: clamp(2.15rem, 4vw, 3.34rem);
    margin-bottom: 0.76rem;
}

.theme-suite-v3 .hero-lead {
    color: var(--v3-muted);
    max-width: 66ch;
    margin: 0;
}

.theme-suite-v3 .hero-actions {
    margin-top: 1rem;
}

.theme-suite-v3 .btn {
    border-radius: 13px;
    height: 46px;
    padding: 0 1.05rem;
    font-size: 0.86rem;
    font-weight: 800;
}

.theme-suite-v3 .btn-primary {
    color: #ffffff;
    background: linear-gradient(120deg, #2457dc, #3f75f7);
    border-color: rgba(24, 56, 145, 0.3);
}

.theme-suite-v3 .btn-secondary {
    color: #274868;
    background: #f2f6ff;
    border-color: #d4e0f6;
}

.theme-suite-v3 .btn-ghost {
    color: #243d61;
    background: #ffffff;
    border-color: #d5dfef;
}

.theme-suite-v3 .hero-metric-list {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.58rem;
}

.theme-suite-v3 .hero-metric {
    padding: 0.72rem;
    border-radius: 14px;
    border: 1px solid #d9e2f0;
    background: #ffffff;
}

.theme-suite-v3 .counter-value {
    color: #223f68;
}

.theme-suite-v3 .hero-trust-row {
    margin-top: 0.8rem;
}

.theme-suite-v3 .hero-trust-row > span {
    display: block;
    color: #4d5f79;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.44rem;
}

.theme-suite-v3 .hero-trust-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.34rem;
}

.theme-suite-v3 .hero-trust-brands em {
    font-style: normal;
    display: inline-flex;
    align-items: center;
    height: 28px;
    border: 1px solid #d7e0ef;
    border-radius: 999px;
    padding: 0 0.68rem;
    background: #ffffff;
    color: #344a67;
    font-size: 0.74rem;
}

.theme-suite-v3 .hero-stage-card {
    background: linear-gradient(155deg, #111b2f 0%, #152e5f 56%, #1d4f95 100%);
    color: #ecf3ff;
    padding: 1.2rem;
}

.theme-suite-v3 .hero-stage-eyebrow {
    color: rgba(227, 238, 255, 0.84);
}

.theme-suite-v3 .hero-stage-text {
    color: rgba(227, 238, 255, 0.82);
}

.theme-suite-v3 .hero-stage-item {
    border: 1px solid rgba(194, 214, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.theme-suite-v3 .hero-stage-order {
    background: rgba(255, 255, 255, 0.15);
}

.theme-suite-v3 .hero-stage-item p,
.theme-suite-v3 .hero-stage-checklist li {
    color: rgba(234, 242, 255, 0.88);
}

.theme-suite-v3 .hero-stage-checklist li::before {
    background: #ef7e3b;
    box-shadow: 0 0 0 4px rgba(239, 126, 59, 0.25);
}

.theme-suite-v3 .section {
    padding: 3rem 0;
}

.theme-suite-v3 .home-section {
    overflow: visible;
}

.theme-suite-v3 .home-section::before {
    display: none;
}

.theme-suite-v3 .v2-impact-band {
    padding-top: 0.2rem;
}

.theme-suite-v3 .v2-impact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
}

.theme-suite-v3 .v2-impact-card {
    border-radius: 14px;
    border: 1px solid #d7e1f0;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(25, 39, 64, 0.08);
    padding: 0.8rem;
}

.theme-suite-v3 .section-head {
    margin-bottom: 1rem;
}

.theme-suite-v3 .section-head h2 {
    font-size: clamp(1.7rem, 2.9vw, 2.45rem);
    color: #182944;
}

.theme-suite-v3 .section-head p {
    color: #5a6980;
}

.theme-suite-v3 .feature-grid,
.theme-suite-v3 .card-grid,
.theme-suite-v3 .workflow-grid {
    gap: 0.74rem;
}

.theme-suite-v3 .feature-grid article,
.theme-suite-v3 .card,
.theme-suite-v3 .workflow-card {
    border-radius: 18px;
    border: 1px solid #d7e1ef;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(23, 36, 60, 0.09);
}

.theme-suite-v3 .feature-grid-v2 article {
    padding-top: 1.44rem;
}

.theme-suite-v3 .feature-index {
    background: linear-gradient(120deg, #edf3ff, #e4efff);
    border-color: #c9daf7;
    color: #2b56c6;
}

.theme-suite-v3 .offer-filter-wrap {
    display: grid;
    gap: 0.8rem;
}

.theme-suite-v3 .offer-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.44rem;
    padding: 0.54rem;
    border: 1px solid #d8e1f0;
    border-radius: 14px;
    background: #ffffff;
}

.theme-suite-v3 .offer-filter-chip {
    height: 38px;
    border-radius: 11px;
    border: 1px solid #d4dff0;
    background: #f5f8ff;
    color: #253d62;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0 0.8rem;
    cursor: pointer;
    transition: all 0.16s ease;
}

.theme-suite-v3 .offer-filter-chip:hover {
    border-color: #b8caeb;
    background: #ecf3ff;
}

.theme-suite-v3 .offer-filter-chip.is-active {
    border-color: rgba(39, 86, 205, 0.5);
    background: linear-gradient(120deg, #2f5fdf, #4b78f6);
    color: #f4f7ff;
}

.theme-suite-v3 .offerings-grid-v2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-suite-v3 .offering-card {
    padding: 0.92rem;
}

.theme-suite-v3 .offering-card .badge {
    background: #eaf1ff;
    border: 1px solid #d5e2fb;
    color: #274aa8;
    margin-bottom: 0.52rem;
}

.theme-suite-v3 .card-media {
    border-radius: 14px;
    border-color: #d7e2ef;
}

.theme-suite-v3 .inline-link {
    color: #264eb7;
}

.theme-suite-v3 [data-offering-card].is-hidden {
    display: none;
}

.theme-suite-v3 .offer-filter-empty {
    margin: 0;
}

.theme-suite-v3 .reference-grid-v2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-suite-v3 .workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-suite-v3 .workflow-card {
    padding: 1rem;
}

.theme-suite-v3 .workflow-index {
    border-color: #c7d8f4;
    background: #eef4ff;
    color: #2b56c5;
}

.theme-suite-v3 .v2-cta {
    border: 1px solid rgba(31, 72, 160, 0.3);
    border-radius: 22px;
    background: linear-gradient(125deg, #182f5d, #224a8f 52%, #2d5eb2 100%);
    box-shadow: 0 20px 44px rgba(19, 36, 70, 0.22);
}

.theme-suite-v3 .v2-cta h2,
.theme-suite-v3 .v2-cta p {
    color: #edf3ff;
}

.theme-suite-v3 .v2-cta .btn-primary {
    background: linear-gradient(120deg, #ef7e3b, #f59d53);
    border-color: rgba(110, 43, 11, 0.18);
    color: #2f1508;
}

.theme-suite-v3 .site-footer {
    margin-top: 2.2rem;
    background:
        radial-gradient(circle at 15% 12%, rgba(64, 117, 237, 0.32), transparent 32%),
        linear-gradient(180deg, #0d1425 0%, #101d35 100%);
    color: #d9e4fb;
}

.theme-suite-v3 .footer-brand-card,
.theme-suite-v3 .footer-contact-card,
.theme-suite-v3 .footer-links-block {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(166, 191, 236, 0.26);
}

.theme-suite-v3 .footer-links-block a,
.theme-suite-v3 .footer-contact-list a {
    color: #eaf2ff;
}

.theme-suite-v3 .footer-bottom {
    border-top-color: rgba(166, 191, 236, 0.28);
}

.theme-suite-v3 .copyright-license-bar {
    border-top-color: rgba(166, 191, 236, 0.26);
    background: rgba(9, 19, 36, 0.66);
}

.theme-suite-v3 [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.52s ease, transform 0.52s ease;
}

.theme-suite-v3 [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .theme-suite-v3 .hero-grid-v2,
    .theme-suite-v3 .v2-impact-grid,
    .theme-suite-v3 .offerings-grid-v2,
    .theme-suite-v3 .reference-grid-v2,
    .theme-suite-v3 .workflow-grid {
        grid-template-columns: 1fr 1fr;
    }

    .theme-suite-v3 .hero-grid-v2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .theme-suite-v3 .container {
        width: min(1220px, calc(100% - 1.15rem));
    }

    .theme-suite-v3 .utility-row {
        grid-template-columns: 1fr auto;
        gap: 0.32rem;
    }

    .theme-suite-v3 .utility-actions {
        order: 2;
    }

    .theme-suite-v3 .utility-languages {
        order: 3;
    }

    .theme-suite-v3 .header-nav {
        box-shadow: 0 8px 18px rgba(20, 33, 56, 0.08);
    }

    .theme-suite-v3 .site-nav {
        display: none;
        position: fixed;
        left: 0.58rem;
        right: 0.58rem;
        top: 104px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        border-radius: 15px;
        border: 1px solid #c7d8f0;
        background: #ffffff;
        padding: 0.55rem;
        gap: 0.24rem;
        box-shadow: 0 20px 36px rgba(17, 34, 62, 0.22);
    }

    .theme-suite-v3 .site-nav.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .theme-suite-v3 .site-nav a {
        width: 100%;
        justify-content: flex-start;
    }

    .theme-suite-v3 .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }
}

@media (max-width: 720px) {
    .theme-suite-v3 .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .theme-suite-v3 .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .theme-suite-v3 .hero-actions .btn {
        width: 100%;
    }

    .theme-suite-v3 .hero-metric-list,
    .theme-suite-v3 .v2-impact-grid,
    .theme-suite-v3 .offerings-grid-v2,
    .theme-suite-v3 .reference-grid-v2,
    .theme-suite-v3 .workflow-grid,
    .theme-suite-v3 .footer-top {
        grid-template-columns: 1fr;
    }

    .theme-suite-v3 .hero-main,
    .theme-suite-v3 .hero-stage-card,
    .theme-suite-v3 .feature-grid article,
    .theme-suite-v3 .card,
    .theme-suite-v3 .workflow-card,
    .theme-suite-v3 .v2-cta {
        border-radius: 16px;
    }

    .theme-suite-v3 .offer-filter-list {
        padding: 0.45rem;
        gap: 0.35rem;
    }

    .theme-suite-v3 .offer-filter-chip {
        height: 35px;
        border-radius: 10px;
        padding: 0 0.65rem;
        font-size: 0.76rem;
    }

    .theme-suite-v3 .nav-wrap {
        min-height: 72px;
    }

    .theme-suite-v3 .brand strong {
        font-size: 0.92rem;
    }

    .theme-suite-v3 .brand small {
        font-size: 0.72rem;
    }

    .theme-suite-v3 .quick-link-chip {
        height: 26px;
        padding: 0 0.56rem;
    }
}

/* Suite V3 Premium Fixes */
.theme-suite-v3 .site-header {
    position: relative;
    top: auto;
    z-index: 1300;
}

.theme-suite-v3 .header-top {
    position: relative;
    z-index: 1310;
    padding: 0.42rem 0;
    background:
        linear-gradient(120deg, rgba(7, 17, 35, 0.95), rgba(14, 28, 56, 0.93));
}

.theme-suite-v3 .header-nav {
    position: sticky;
    top: 0;
    z-index: 1360;
    border-bottom: 1px solid rgba(179, 198, 230, 0.55);
    box-shadow: 0 10px 26px rgba(17, 36, 66, 0.1);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.86));
}

.theme-suite-v3 .nav-wrap {
    min-height: 76px;
}

.theme-suite-v3 .site-nav {
    border-radius: 16px;
    border-color: #d0ddf2;
    box-shadow: 0 12px 26px rgba(21, 40, 74, 0.1);
}

.theme-suite-v3 .site-nav a {
    font-weight: 800;
    letter-spacing: 0.01em;
}

.theme-suite-v3 .site-nav a:hover,
.theme-suite-v3 .site-nav a.is-active {
    background: linear-gradient(120deg, #274fbf, #3f6de6);
    color: #f7faff;
}

.theme-suite-v3 .hero-main {
    border-color: #cfdbef;
    box-shadow: 0 24px 52px rgba(21, 42, 78, 0.12);
}

.theme-suite-v3 .hero-stage-card {
    border-color: rgba(176, 199, 241, 0.3);
    box-shadow: 0 22px 48px rgba(13, 32, 65, 0.2);
}

.theme-suite-v3 .v2-impact-card,
.theme-suite-v3 .feature-grid article,
.theme-suite-v3 .card-v3,
.theme-suite-v3 .workflow-card {
    border-color: #d3dff0;
    background:
        linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.theme-suite-v3 .card-v3 {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.theme-suite-v3 .card-v3:hover {
    transform: translateY(-4px);
    border-color: #b9cdee;
    box-shadow: 0 20px 40px rgba(20, 39, 70, 0.14);
}

.theme-suite-v3 .offer-filter-list {
    border-color: #d3dff0;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.theme-suite-v3 .offer-filter-chip {
    position: relative;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
}

.theme-suite-v3 .offer-filter-chip.is-active {
    box-shadow: 0 10px 18px rgba(39, 86, 205, 0.28);
}

.theme-suite-v3 .offer-filter-chip.is-active::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #ffffff;
    display: inline-block;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.theme-suite-v3 .reference-grid-v2 .card-v3 {
    min-height: 100%;
}

.theme-suite-v3 .inline-link {
    font-weight: 800;
}

.theme-suite-v3 .v2-cta {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 170, 99, 0.24), transparent 28%),
        linear-gradient(130deg, #132852 0%, #1d4282 54%, #255ba7 100%);
}

.theme-suite-v3 .v2-cta .btn-primary {
    box-shadow: 0 10px 20px rgba(148, 61, 17, 0.25);
}

@media (max-width: 960px) {
    .theme-suite-v3 .header-top {
        padding: 0.32rem 0;
    }

    .theme-suite-v3 .header-nav {
        top: 0;
    }

    .theme-suite-v3 .site-nav {
        top: 78px;
        max-height: calc(100vh - 90px);
    }

    .theme-suite-v3 .utility-row {
        grid-template-columns: 1fr auto auto;
    }
}

@media (max-width: 720px) {
    .theme-suite-v3 .utility-row {
        grid-template-columns: 1fr auto;
    }

    .theme-suite-v3 .utility-actions {
        display: none;
    }

    .theme-suite-v3 .site-nav {
        top: 72px;
    }
}

/* Suite V3 Header Footer Rebuild */
.theme-suite-v3 .header-top {
    background:
        linear-gradient(100deg, rgba(9, 15, 27, 0.96), rgba(12, 23, 43, 0.94));
    border-bottom: 1px solid rgba(134, 160, 210, 0.3);
    backdrop-filter: blur(14px);
}

.theme-suite-v3 .utility-row {
    grid-template-columns: 1fr auto auto;
    gap: 0.58rem;
}

.theme-suite-v3 .utility-links .utility-list {
    gap: 0.42rem;
}

.theme-suite-v3 .quick-link-chip {
    height: 30px;
    border-radius: 7px;
    border: 1px solid rgba(162, 184, 228, 0.35);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    color: #dfe9ff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0 0.68rem;
}

.theme-suite-v3 .quick-link-chip:hover {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    border-color: rgba(198, 214, 244, 0.7);
}

.theme-suite-v3 .social-list {
    gap: 0.26rem;
}

.theme-suite-v3 .social-chip {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid rgba(162, 184, 228, 0.38);
    background: rgba(255, 255, 255, 0.08);
}

.theme-suite-v3 .lang-dropdown-toggle {
    height: 31px;
    border-radius: 8px;
    border-color: rgba(162, 184, 228, 0.38);
    background: rgba(255, 255, 255, 0.08);
}

.theme-suite-v3 .header-nav {
    background:
        radial-gradient(circle at 0 0, rgba(79, 120, 209, 0.22), transparent 42%),
        linear-gradient(120deg, rgba(13, 22, 40, 0.95), rgba(20, 36, 66, 0.93));
    border-bottom: 1px solid rgba(145, 169, 215, 0.35);
    box-shadow: 0 14px 30px rgba(10, 20, 37, 0.24);
}

.theme-suite-v3 .nav-wrap {
    min-height: 78px;
    gap: 1rem;
}

.theme-suite-v3 .brand {
    gap: 0.64rem;
}

.theme-suite-v3 .brand-mark {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background:
        linear-gradient(145deg, #6b8dff 0%, #3f62d8 52%, #2f4baf 100%);
    box-shadow: 0 10px 22px rgba(57, 91, 197, 0.36);
}

.theme-suite-v3 .brand strong {
    color: #f3f7ff;
    font-size: 1.01rem;
}

.theme-suite-v3 .brand small {
    color: #b8caeb;
    font-size: 0.75rem;
}

.theme-suite-v3 .site-nav {
    margin-left: auto;
    border: 1px solid rgba(162, 184, 228, 0.45);
    border-radius: 12px;
    padding: 0.3rem;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: none;
    backdrop-filter: blur(8px);
    gap: 0.22rem;
}

.theme-suite-v3 .site-nav a {
    height: 40px;
    border-radius: 8px;
    color: #d8e5ff;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0 0.82rem;
    transition: all 0.18s ease;
}

.theme-suite-v3 .site-nav a:hover,
.theme-suite-v3 .site-nav a.is-active {
    color: #ffffff;
    background: linear-gradient(120deg, rgba(108, 143, 255, 0.9), rgba(81, 113, 218, 0.92));
    box-shadow: inset 0 0 0 1px rgba(210, 224, 255, 0.45);
}

.theme-suite-v3 .menu-toggle {
    border-color: rgba(162, 184, 228, 0.48);
    background: rgba(255, 255, 255, 0.08);
    color: #e4edff;
}

.theme-suite-v3 .site-footer {
    position: relative;
    margin-top: 2.8rem;
    padding-top: 2.8rem;
    background:
        radial-gradient(circle at 14% 6%, rgba(84, 114, 189, 0.38), transparent 34%),
        radial-gradient(circle at 87% 10%, rgba(41, 159, 137, 0.24), transparent 33%),
        linear-gradient(180deg, #090f1b 0%, #0f1b31 58%, #111f39 100%);
    color: #e3ebff;
}

.theme-suite-v3 .site-footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 28px;
    background:
        radial-gradient(42px 20px at 15px 0, transparent 46%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.08) 52%, transparent 54%) repeat-x;
    background-size: 62px 28px;
    opacity: 0.4;
    pointer-events: none;
}

.theme-suite-v3 .footer-top {
    grid-template-columns: minmax(260px, 1.05fr) minmax(240px, 1fr) minmax(300px, 1.2fr);
    gap: 0.9rem;
}

.theme-suite-v3 .footer-brand-card,
.theme-suite-v3 .footer-contact-card,
.theme-suite-v3 .footer-links-block {
    border-radius: 16px;
    border: 1px solid rgba(154, 178, 224, 0.28);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    padding: 1rem;
}

.theme-suite-v3 .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.62rem;
}

.theme-suite-v3 .footer-brand .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.theme-suite-v3 .footer-brand strong {
    color: #f5f8ff;
    font-size: 1rem;
}

.theme-suite-v3 .footer-brand small {
    color: #b8caeb;
}

.theme-suite-v3 .footer-brand-note {
    margin-top: 0.82rem;
    color: #c4d2ec;
    line-height: 1.65;
}

.theme-suite-v3 .footer-social-title {
    display: block;
    margin-bottom: 0.4rem;
    color: #d9e6ff;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.theme-suite-v3 .footer-social-chip {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    border: 1px solid rgba(159, 182, 224, 0.38);
    background: rgba(255, 255, 255, 0.08);
}

.theme-suite-v3 .footer-social-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(197, 213, 243, 0.65);
}

.theme-suite-v3 .footer-contact-card h4,
.theme-suite-v3 .footer-links-block h4 {
    margin: 0 0 0.68rem;
    color: #f4f8ff;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.theme-suite-v3 .footer-contact-list {
    gap: 0.65rem;
}

.theme-suite-v3 .footer-contact-list li {
    border-bottom: 1px dashed rgba(155, 177, 218, 0.32);
    padding-bottom: 0.52rem;
    margin-bottom: 0.52rem;
}

.theme-suite-v3 .footer-contact-list li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.theme-suite-v3 .footer-contact-list span {
    color: #b3c6e8;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.theme-suite-v3 .footer-contact-list a,
.theme-suite-v3 .footer-contact-list p {
    color: #e7efff;
    margin-top: 0.22rem;
}

.theme-suite-v3 .footer-map-link {
    display: inline-flex;
    align-items: center;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(162, 185, 225, 0.45);
    padding: 0 0.7rem;
    color: #e8efff;
    background: rgba(255, 255, 255, 0.08);
}

.theme-suite-v3 .footer-map-link:hover {
    background: rgba(255, 255, 255, 0.14);
}

.theme-suite-v3 .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.76rem;
}

.theme-suite-v3 .footer-links-block ul {
    display: grid;
    gap: 0.34rem;
}

.theme-suite-v3 .footer-links-block a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 0.28rem;
    color: #dee9ff;
    border-radius: 6px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.theme-suite-v3 .footer-links-block a:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.theme-suite-v3 .footer-bottom {
    margin-top: 1rem;
    border-top: 1px solid rgba(151, 174, 218, 0.33);
    color: #b9c9e9;
    font-size: 0.8rem;
    padding: 0.85rem 0;
}

.theme-suite-v3 .copyright-license-bar {
    border-top: 1px solid rgba(151, 174, 218, 0.28);
    background: rgba(7, 13, 24, 0.74);
}

.theme-suite-v3 .copyright-license-text,
.theme-suite-v3 .copyright-license-sub {
    color: #afc3e9;
}

.theme-suite-v3 .copyright-license-text a {
    color: #d8e7ff;
}

@media (max-width: 960px) {
    .theme-suite-v3 .utility-row {
        grid-template-columns: 1fr auto;
        gap: 0.34rem;
    }

    .theme-suite-v3 .utility-actions {
        display: none;
    }

    .theme-suite-v3 .header-nav {
        box-shadow: 0 12px 26px rgba(10, 20, 37, 0.28);
    }

    .theme-suite-v3 .site-nav {
        top: 76px;
        left: 0.7rem;
        right: 0.7rem;
        border-radius: 12px;
        border: 1px solid rgba(151, 176, 221, 0.42);
        background: linear-gradient(150deg, rgba(12, 22, 40, 0.97), rgba(17, 32, 60, 0.95));
        padding: 0.54rem;
        box-shadow: 0 20px 38px rgba(8, 16, 29, 0.45);
    }

    .theme-suite-v3 .site-nav a {
        color: #d8e5ff;
        border: 1px solid transparent;
    }

    .theme-suite-v3 .site-nav a:hover,
    .theme-suite-v3 .site-nav a.is-active {
        border-color: rgba(158, 181, 226, 0.4);
        background: rgba(94, 126, 210, 0.34);
    }

    .theme-suite-v3 .menu-toggle {
        display: inline-flex;
    }

    .theme-suite-v3 .footer-top,
    .theme-suite-v3 .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .theme-suite-v3 .header-top {
        padding: 0.28rem 0;
    }

    .theme-suite-v3 .quick-link-chip {
        height: 28px;
        font-size: 0.65rem;
        padding: 0 0.54rem;
    }

    .theme-suite-v3 .nav-wrap {
        min-height: 70px;
    }

    .theme-suite-v3 .brand strong {
        font-size: 0.9rem;
    }

    .theme-suite-v3 .brand small {
        font-size: 0.7rem;
    }

    .theme-suite-v3 .site-nav {
        top: 70px;
    }

    .theme-suite-v3 .footer-brand-card,
    .theme-suite-v3 .footer-contact-card,
    .theme-suite-v3 .footer-links-block {
        padding: 0.84rem;
    }
}

/* Suite V3 Modern Header Footer */
.theme-suite-v3 .site-header {
    position: relative;
    z-index: 1200;
}

.theme-suite-v3 .header-top {
    background: #0f172a;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    padding: 0.38rem 0;
    backdrop-filter: blur(6px);
}

.theme-suite-v3 .utility-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.5rem;
    align-items: center;
}

.theme-suite-v3 .utility-links .utility-list {
    gap: 0.32rem;
}

.theme-suite-v3 .quick-link-chip,
.theme-suite-v3 .quick-link-chip.quick-link-variant-1,
.theme-suite-v3 .quick-link-chip.quick-link-variant-2,
.theme-suite-v3 .quick-link-chip.quick-link-variant-3,
.theme-suite-v3 .quick-link-chip.quick-link-variant-4,
.theme-suite-v3 .quick-link-chip.quick-link-variant-5,
.theme-suite-v3 .quick-link-chip.quick-link-variant-6,
.theme-suite-v3 .quick-link-chip.is-phone,
.theme-suite-v3 .quick-link-chip.is-whatsapp {
    height: 27px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: none;
    padding: 0 0.58rem;
}

.theme-suite-v3 .quick-link-chip:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(148, 163, 184, 0.55);
}

.theme-suite-v3 .social-chip {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.38);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.theme-suite-v3 .social-chip:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(148, 163, 184, 0.6);
    transform: none;
}

.theme-suite-v3 .lang-dropdown-toggle {
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.38);
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

.theme-suite-v3 .lang-dropdown-toggle svg {
    color: #e2e8f0;
}

.theme-suite-v3 .lang-dropdown-menu {
    border: 1px solid #dbe3ef;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

.theme-suite-v3 .header-nav {
    position: sticky;
    top: 0;
    z-index: 1260;
    border-bottom: 1px solid #dbe3ef;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.theme-suite-v3 .nav-wrap {
    min-height: 76px;
    gap: 0.8rem;
}

.theme-suite-v3 .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(140deg, #2563eb, #1d4ed8);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.25);
}

.theme-suite-v3 .brand strong {
    color: #0f172a;
    font-size: 1rem;
}

.theme-suite-v3 .brand small {
    color: #64748b;
    font-size: 0.76rem;
}

.theme-suite-v3 .site-nav {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.18rem;
    border: 1px solid #dbe3ef;
    border-radius: 999px;
    padding: 0.22rem;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.theme-suite-v3 .site-nav a {
    height: 38px;
    border-radius: 999px;
    padding: 0 0.9rem;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.theme-suite-v3 .site-nav a:hover,
.theme-suite-v3 .site-nav a.is-active {
    background: #eff6ff;
    color: #1d4ed8;
    box-shadow: inset 0 0 0 1px #bfdbfe;
}

.theme-suite-v3 .menu-toggle {
    border: 1px solid #dbe3ef;
    background: #ffffff;
    color: #334155;
}

.theme-suite-v3 .site-footer {
    margin-top: 2.6rem;
    padding-top: 2.2rem;
    background: #0b1220;
    color: #cbd5e1;
}

.theme-suite-v3 .site-footer::before {
    display: none;
}

.theme-suite-v3 .footer-top {
    grid-template-columns: 1.1fr 1fr 1.35fr;
    gap: 0.9rem;
}

.theme-suite-v3 .footer-brand-card,
.theme-suite-v3 .footer-contact-card,
.theme-suite-v3 .footer-links-block {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    backdrop-filter: blur(4px);
    padding: 0.9rem;
}

.theme-suite-v3 .footer-brand strong,
.theme-suite-v3 .footer-contact-card h4,
.theme-suite-v3 .footer-links-block h4 {
    color: #f8fafc;
}

.theme-suite-v3 .footer-brand small,
.theme-suite-v3 .footer-brand-note,
.theme-suite-v3 .footer-contact-list span,
.theme-suite-v3 .footer-contact-list p,
.theme-suite-v3 .footer-bottom,
.theme-suite-v3 .copyright-license-text,
.theme-suite-v3 .copyright-license-sub {
    color: #94a3b8;
}

.theme-suite-v3 .footer-social-chip {
    width: 33px;
    height: 33px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.theme-suite-v3 .footer-social-chip:hover {
    border-color: rgba(148, 163, 184, 0.6);
    background: rgba(255, 255, 255, 0.12);
}

.theme-suite-v3 .footer-contact-list li {
    border-bottom: 1px dashed rgba(148, 163, 184, 0.25);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}

.theme-suite-v3 .footer-contact-list li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.theme-suite-v3 .footer-contact-list a,
.theme-suite-v3 .footer-links-block a,
.theme-suite-v3 .footer-map-link,
.theme-suite-v3 .copyright-license-text a {
    color: #e2e8f0;
}

.theme-suite-v3 .footer-links-block a {
    border-radius: 6px;
    padding: 0.18rem 0.28rem;
}

.theme-suite-v3 .footer-links-block a:hover {
    background: rgba(148, 163, 184, 0.15);
}

.theme-suite-v3 .footer-map-link {
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.06);
    padding: 0 0.66rem;
}

.theme-suite-v3 .footer-map-link:hover {
    background: rgba(255, 255, 255, 0.12);
}

.theme-suite-v3 .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
}

.theme-suite-v3 .footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    margin-top: 1rem;
    padding: 0.8rem 0;
}

.theme-suite-v3 .copyright-license-bar {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(2, 6, 23, 0.6);
}

@media (max-width: 960px) {
    .theme-suite-v3 .utility-row {
        grid-template-columns: 1fr auto;
    }

    .theme-suite-v3 .utility-actions {
        display: none;
    }

    .theme-suite-v3 .site-nav {
        position: fixed;
        top: 74px;
        left: 0.7rem;
        right: 0.7rem;
        display: none;
        border-radius: 14px;
        border: 1px solid #cfd9ea;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        box-shadow: 0 18px 34px rgba(15, 23, 42, 0.2);
    }

    .theme-suite-v3 .site-nav.open {
        display: flex;
    }

    .theme-suite-v3 .site-nav a {
        width: 100%;
        justify-content: flex-start;
        border-radius: 10px;
    }

    .theme-suite-v3 .footer-top,
    .theme-suite-v3 .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .theme-suite-v3 .header-top {
        padding: 0.3rem 0;
    }

    .theme-suite-v3 .quick-link-chip {
        height: 25px;
        font-size: 0.64rem;
        padding: 0 0.5rem;
    }

    .theme-suite-v3 .nav-wrap {
        min-height: 70px;
    }

    .theme-suite-v3 .site-nav {
        top: 70px;
    }
}

/* Suite V3 Neo Header 2026 */
.theme-suite-v3 .site-header {
    position: relative;
    z-index: 1200;
}

.theme-suite-v3 .header-top {
    position: relative;
    z-index: 1205;
    background: linear-gradient(110deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.92));
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    padding: 0.36rem 0;
    backdrop-filter: blur(10px);
}

.theme-suite-v3 .utility-row {
    grid-template-columns: 1fr auto auto;
    gap: 0.48rem;
}

.theme-suite-v3 .utility-links .utility-list {
    gap: 0.3rem;
}

.theme-suite-v3 .quick-link-chip,
.theme-suite-v3 .quick-link-chip.quick-link-variant-1,
.theme-suite-v3 .quick-link-chip.quick-link-variant-2,
.theme-suite-v3 .quick-link-chip.quick-link-variant-3,
.theme-suite-v3 .quick-link-chip.quick-link-variant-4,
.theme-suite-v3 .quick-link-chip.quick-link-variant-5,
.theme-suite-v3 .quick-link-chip.quick-link-variant-6,
.theme-suite-v3 .quick-link-chip.is-phone,
.theme-suite-v3 .quick-link-chip.is-whatsapp {
    height: 27px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: none;
    padding: 0 0.56rem;
}

.theme-suite-v3 .quick-link-chip:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(148, 163, 184, 0.58);
}

.theme-suite-v3 .social-chip {
    width: 29px;
    height: 29px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.36);
    background: rgba(255, 255, 255, 0.08);
}

.theme-suite-v3 .social-chip:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(148, 163, 184, 0.62);
}

.theme-suite-v3 .lang-dropdown-toggle {
    height: 29px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.36);
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

.theme-suite-v3 .lang-dropdown-toggle svg {
    color: #e2e8f0;
}

.theme-suite-v3 .lang-dropdown-menu {
    border: 1px solid #d8e2f0;
    border-radius: 12px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
}

.theme-suite-v3 .header-nav-neo {
    position: sticky;
    top: 0;
    z-index: 1240;
    background:
        radial-gradient(140px 90px at 12% -20%, rgba(45, 212, 191, 0.2), transparent 70%),
        radial-gradient(180px 120px at 85% -36%, rgba(56, 189, 248, 0.22), transparent 72%),
        linear-gradient(120deg, rgba(6, 13, 27, 0.94), rgba(15, 23, 42, 0.94));
    border-bottom: 1px solid rgba(148, 163, 184, 0.32);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.3);
    overflow: hidden;
}

.theme-suite-v3 .header-nav-neo::before,
.theme-suite-v3 .header-nav-neo::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(28px);
    opacity: 0.33;
}

.theme-suite-v3 .header-nav-neo::before {
    left: -120px;
    top: -220px;
    background: #0ea5e9;
    animation: neoAuraLeft 9s ease-in-out infinite;
}

.theme-suite-v3 .header-nav-neo::after {
    right: -120px;
    top: -200px;
    background: #14b8a6;
    animation: neoAuraRight 10s ease-in-out infinite;
}

.theme-suite-v3 .nav-wrap-neo {
    min-height: 78px;
    position: relative;
    z-index: 1;
    gap: 0.86rem;
}

.theme-suite-v3 .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(140deg, #22d3ee, #3b82f6);
    box-shadow: 0 10px 24px rgba(56, 189, 248, 0.32);
}

.theme-suite-v3 .brand strong {
    color: #f8fafc;
    font-size: 1rem;
}

.theme-suite-v3 .brand small {
    color: #93c5fd;
    font-size: 0.75rem;
}

.theme-suite-v3 .site-nav-neo {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.24rem;
    padding: 0.28rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.theme-suite-v3 .site-nav-neo a {
    position: relative;
    height: 40px;
    border-radius: 999px;
    padding: 0 0.74rem;
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.theme-suite-v3 .site-nav-neo a .nav-link-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.28);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.theme-suite-v3 .site-nav-neo a .nav-link-icon svg {
    width: 14px;
    height: 14px;
}

.theme-suite-v3 .site-nav-neo a .nav-link-text {
    white-space: nowrap;
}

.theme-suite-v3 .site-nav-neo a .nav-link-spark {
    position: absolute;
    top: 5px;
    right: 8px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #67e8f9;
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(103, 232, 249, 0.55);
}

.theme-suite-v3 .site-nav-neo a:hover,
.theme-suite-v3 .site-nav-neo a.is-active {
    color: #ffffff;
    background: linear-gradient(120deg, rgba(14, 116, 144, 0.55), rgba(29, 78, 216, 0.58));
}

.theme-suite-v3 .site-nav-neo a:hover .nav-link-icon,
.theme-suite-v3 .site-nav-neo a.is-active .nav-link-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px) rotate(-6deg);
}

.theme-suite-v3 .site-nav-neo a:hover .nav-link-spark,
.theme-suite-v3 .site-nav-neo a.is-active .nav-link-spark {
    opacity: 1;
    animation: neoSpark 1.2s ease-out infinite;
}

.theme-suite-v3 .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.44);
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    display: none;
}

.theme-suite-v3 .menu-toggle-box {
    width: 18px;
    height: 14px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.theme-suite-v3 .menu-toggle-box span {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.theme-suite-v3 .menu-toggle.is-open .menu-toggle-box span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.theme-suite-v3 .menu-toggle.is-open .menu-toggle-box span:nth-child(2) {
    opacity: 0;
}

.theme-suite-v3 .menu-toggle.is-open .menu-toggle-box span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@keyframes neoAuraLeft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(16px); }
}

@keyframes neoAuraRight {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes neoSpark {
    0% { box-shadow: 0 0 0 0 rgba(103, 232, 249, 0.5); }
    100% { box-shadow: 0 0 0 12px rgba(103, 232, 249, 0); }
}

@media (max-width: 960px) {
    .theme-suite-v3 .utility-row {
        grid-template-columns: 1fr auto;
    }

    .theme-suite-v3 .utility-actions {
        display: none;
    }

    .theme-suite-v3 .menu-toggle {
        display: inline-flex;
    }

    .theme-suite-v3 .site-nav-neo {
        position: fixed;
        top: 78px;
        left: 0.62rem;
        right: 0.62rem;
        z-index: 1300;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.34rem;
        padding: 0.62rem;
        border-radius: 18px;
        border: 1px solid rgba(148, 163, 184, 0.4);
        background:
            radial-gradient(120px 80px at 90% -20%, rgba(56, 189, 248, 0.18), transparent 70%),
            linear-gradient(140deg, rgba(4, 10, 20, 0.96), rgba(14, 23, 42, 0.95));
        backdrop-filter: blur(14px);
        box-shadow: 0 24px 44px rgba(2, 6, 23, 0.42);
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px) scale(0.98);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .theme-suite-v3 .site-nav-neo.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .theme-suite-v3 .site-nav-neo a {
        width: 100%;
        height: 46px;
        border-radius: 12px;
        padding: 0 0.74rem;
        color: #dbeafe;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(148, 163, 184, 0.2);
    }

    .theme-suite-v3 .site-nav-neo a .nav-link-icon {
        width: 26px;
        height: 26px;
        background: rgba(148, 163, 184, 0.16);
        border-color: rgba(148, 163, 184, 0.28);
    }

    .theme-suite-v3 .site-nav-neo a:hover,
    .theme-suite-v3 .site-nav-neo a.is-active {
        background: linear-gradient(120deg, rgba(14, 116, 144, 0.46), rgba(29, 78, 216, 0.48));
        border-color: rgba(125, 211, 252, 0.42);
    }

    .theme-suite-v3 .header-nav-neo.is-open::before,
    .theme-suite-v3 .header-nav-neo.is-open::after {
        opacity: 0.5;
    }
}

@media (max-width: 720px) {
    .theme-suite-v3 .header-top {
        padding: 0.3rem 0;
    }

    .theme-suite-v3 .quick-link-chip {
        height: 24px;
        font-size: 0.63rem;
        padding: 0 0.48rem;
    }

    .theme-suite-v3 .nav-wrap-neo {
        min-height: 72px;
    }

    .theme-suite-v3 .brand strong {
        font-size: 0.9rem;
    }

    .theme-suite-v3 .brand small {
        font-size: 0.7rem;
    }

    .theme-suite-v3 .site-nav-neo {
        top: 72px;
        max-height: calc(100vh - 84px);
    }
}

/* Suite V3 Neo Mobile Visibility Fix */
@media (max-width: 960px) {
    .theme-suite-v3 .site-header::after,
    body.nav-open .theme-suite-v3 .site-header::after {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .theme-suite-v3 .header-nav-neo,
    .theme-suite-v3 .site-nav-neo {
        z-index: 1600;
    }
}

/* Suite V3 Neo Menu Layer Fix */
@media (max-width: 960px) {
    .theme-suite-v3 .header-nav-neo {
        overflow: visible !important;
        z-index: 1700;
    }

    .theme-suite-v3 .header-nav-neo .site-nav-neo {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 0.62rem !important;
        right: 0.62rem !important;
        z-index: 1710 !important;
    }

    .theme-suite-v3 .header-nav-neo .site-nav-neo.open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) scale(1) !important;
    }
}

@media (max-width: 720px) {
    .theme-suite-v3 .header-nav-neo .site-nav-neo {
        top: calc(100% + 6px) !important;
    }
}

/* Suite V3 Desktop Topbar Tone Fix */
@media (min-width: 961px) {
    .theme-suite-v3 .header-top {
        background:
            radial-gradient(180px 90px at 12% -40%, rgba(45, 212, 191, 0.18), transparent 72%),
            radial-gradient(180px 100px at 86% -46%, rgba(56, 189, 248, 0.2), transparent 72%),
            linear-gradient(112deg, rgba(6, 13, 27, 0.94), rgba(15, 23, 42, 0.93));
        border-bottom-color: rgba(148, 163, 184, 0.34);
        box-shadow: inset 0 -1px 0 rgba(148, 163, 184, 0.18);
    }
}

/* Suite V3 Connected Home Blocks */
.theme-suite-v3 .flow-node {
    position: relative;
    padding-top: 1.05rem;
    padding-bottom: 1.05rem;
}

.theme-suite-v3 .flow-node > .container {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    border: 1px solid #d5deec;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    padding: clamp(1rem, 2vw, 1.35rem);
    overflow: hidden;
}

.theme-suite-v3 .flow-node > .container::before,
.theme-suite-v3 .flow-node > .container::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
}

.theme-suite-v3 .flow-node > .container::before {
    width: 210px;
    height: 210px;
    top: -130px;
    right: -90px;
    opacity: 0.45;
}

.theme-suite-v3 .flow-node > .container::after {
    width: 160px;
    height: 160px;
    bottom: -90px;
    left: -70px;
    opacity: 0.35;
}

.theme-suite-v3 .flow-node > .container > * {
    position: relative;
    z-index: 1;
}

.theme-suite-v3 .flow-node:not(.flow-node-end)::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 4px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.45), rgba(16, 185, 129, 0.2));
    z-index: 1;
}

.theme-suite-v3 .flow-node:not(.flow-node-end)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 110px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(236, 245, 255, 0.9));
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
    z-index: 0;
}

.theme-suite-v3 .flow-node-hero > .container {
    background: linear-gradient(130deg, #f5fbff 0%, #eef6ff 48%, #edfdf9 100%);
    border-color: #cfe0ef;
}

.theme-suite-v3 .flow-node-hero > .container::before {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.48) 0%, rgba(59, 130, 246, 0) 70%);
}

.theme-suite-v3 .flow-node-hero > .container::after {
    background: radial-gradient(circle, rgba(20, 184, 166, 0.45) 0%, rgba(20, 184, 166, 0) 72%);
}

.theme-suite-v3 .flow-node-impact > .container {
    background: linear-gradient(130deg, #f8faff 0%, #f4f3ff 58%, #eef9ff 100%);
    border-color: #d7d8f6;
}

.theme-suite-v3 .flow-node-impact > .container::before {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.45) 0%, rgba(99, 102, 241, 0) 72%);
}

.theme-suite-v3 .flow-node-impact > .container::after {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.36) 0%, rgba(56, 189, 248, 0) 70%);
}

.theme-suite-v3 .flow-node-about > .container {
    background: linear-gradient(130deg, #f3fff9 0%, #edfaf4 54%, #ecf8ff 100%);
    border-color: #cfe9dd;
}

.theme-suite-v3 .flow-node-about > .container::before {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.46) 0%, rgba(16, 185, 129, 0) 72%);
}

.theme-suite-v3 .flow-node-about > .container::after {
    background: radial-gradient(circle, rgba(45, 212, 191, 0.36) 0%, rgba(45, 212, 191, 0) 70%);
}

.theme-suite-v3 .flow-node-offerings > .container {
    background: linear-gradient(130deg, #fffaf4 0%, #fff4e7 54%, #fff9ef 100%);
    border-color: #f0dcc6;
}

.theme-suite-v3 .flow-node-offerings > .container::before {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.4) 0%, rgba(249, 115, 22, 0) 72%);
}

.theme-suite-v3 .flow-node-offerings > .container::after {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.34) 0%, rgba(251, 191, 36, 0) 72%);
}

.theme-suite-v3 .flow-node-references > .container {
    background: linear-gradient(130deg, #faf7ff 0%, #f3edff 56%, #eff2ff 100%);
    border-color: #ddd2f4;
}

.theme-suite-v3 .flow-node-references > .container::before {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, rgba(139, 92, 246, 0) 72%);
}

.theme-suite-v3 .flow-node-references > .container::after {
    background: radial-gradient(circle, rgba(129, 140, 248, 0.36) 0%, rgba(129, 140, 248, 0) 72%);
}

.theme-suite-v3 .flow-node-workflow > .container {
    background: linear-gradient(130deg, #f6fbff 0%, #eef6ff 50%, #f5f8ff 100%);
    border-color: #d4e2f1;
}

.theme-suite-v3 .flow-node-workflow > .container::before {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.36) 0%, rgba(14, 165, 233, 0) 72%);
}

.theme-suite-v3 .flow-node-workflow > .container::after {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.32) 0%, rgba(37, 99, 235, 0) 72%);
}

.theme-suite-v3 .flow-node-cta > .container {
    background:
        radial-gradient(circle at 18% 12%, rgba(245, 158, 11, 0.28), transparent 34%),
        linear-gradient(130deg, #12213f 0%, #1c3b74 56%, #22539a 100%);
    border-color: rgba(147, 197, 253, 0.34);
}

.theme-suite-v3 .flow-node-cta > .container::before,
.theme-suite-v3 .flow-node-cta > .container::after {
    display: none;
}

.theme-suite-v3 .flow-node-cta .cta-inner h2,
.theme-suite-v3 .flow-node-cta .cta-inner p {
    color: #eef6ff;
}

.theme-suite-v3 .flow-node-cta .btn-primary {
    background: linear-gradient(120deg, #f59e0b, #f97316);
    color: #2b1206;
    border-color: rgba(120, 53, 15, 0.24);
}

.theme-suite-v3 .flow-node .section-head,
.theme-suite-v3 .flow-node .card-grid,
.theme-suite-v3 .flow-node .feature-grid,
.theme-suite-v3 .flow-node .workflow-grid,
.theme-suite-v3 .flow-node .cta-inner,
.theme-suite-v3 .flow-node .hero-grid {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 960px) {
    .theme-suite-v3 .flow-node {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .theme-suite-v3 .flow-node > .container {
        border-radius: 22px;
        padding: 0.9rem;
    }

    .theme-suite-v3 .flow-node:not(.flow-node-end)::before {
        height: 24px;
        bottom: -13px;
    }

    .theme-suite-v3 .flow-node:not(.flow-node-end)::after {
        width: 88px;
        height: 26px;
        bottom: -20px;
    }
}

@media (max-width: 720px) {
    .theme-suite-v3 .flow-node > .container {
        border-radius: 18px;
        padding: 0.78rem;
    }

    .theme-suite-v3 .flow-node > .container::before {
        width: 140px;
        height: 140px;
        top: -82px;
        right: -70px;
    }

    .theme-suite-v3 .flow-node > .container::after {
        width: 110px;
        height: 110px;
        bottom: -60px;
        left: -48px;
    }
}

/* Suite V4 Clean Reset */
.theme-suite-v4 {
    --v4-bg: #f3f6fb;
    --v4-surface: #ffffff;
    --v4-surface-soft: #f7f9fc;
    --v4-ink: #0f172a;
    --v4-muted: #5b6476;
    --v4-line: #d7deea;
    --v4-brand: #2563eb;
    --v4-brand-2: #14b8a6;
    background:
        radial-gradient(circle at 8% 0, rgba(37, 99, 235, 0.08), transparent 32%),
        radial-gradient(circle at 95% 8%, rgba(20, 184, 166, 0.08), transparent 28%),
        var(--v4-bg);
    color: var(--v4-ink);
}

.theme-suite-v4 .v2-site-grain,
.theme-suite-v4 .flow-node::before,
.theme-suite-v4 .flow-node::after,
.theme-suite-v4 .flow-node > .container::before,
.theme-suite-v4 .flow-node > .container::after {
    display: none !important;
}

.theme-suite-v4 .container {
    width: min(1180px, calc(100% - 2.2rem));
}

.theme-suite-v4 .site-header {
    position: relative;
    z-index: 1200;
}

.theme-suite-v4 .site-header::after,
.theme-suite-v4.nav-open .site-header::after {
    display: none !important;
}

.theme-suite-v4 .header-top {
    padding: 0.38rem 0;
    background: linear-gradient(110deg, #0b1222, #16233d);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.theme-suite-v4 .utility-row {
    grid-template-columns: 1fr auto auto;
    gap: 0.44rem;
}

.theme-suite-v4 .utility-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.theme-suite-v4 .utility-links .utility-list {
    gap: 0.28rem;
}

.theme-suite-v4 .quick-link-chip,
.theme-suite-v4 .quick-link-chip.quick-link-variant-1,
.theme-suite-v4 .quick-link-chip.quick-link-variant-2,
.theme-suite-v4 .quick-link-chip.quick-link-variant-3,
.theme-suite-v4 .quick-link-chip.quick-link-variant-4,
.theme-suite-v4 .quick-link-chip.quick-link-variant-5,
.theme-suite-v4 .quick-link-chip.quick-link-variant-6,
.theme-suite-v4 .quick-link-chip.is-phone,
.theme-suite-v4 .quick-link-chip.is-whatsapp {
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.38);
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    box-shadow: none;
    font-size: 0.67rem;
    font-weight: 700;
    padding: 0 0.56rem;
}

.theme-suite-v4 .quick-link-chip:hover {
    background: rgba(255, 255, 255, 0.16);
}

.theme-suite-v4 .social-chip {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.38);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: none;
}

.theme-suite-v4 .social-chip:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: none;
}

.theme-suite-v4 .lang-dropdown-toggle {
    height: 28px;
    border: 1px solid rgba(148, 163, 184, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: #e2e8f0;
}

.theme-suite-v4 .lang-dropdown-toggle svg {
    color: #e2e8f0;
}

.theme-suite-v4 .lang-dropdown-menu {
    border: 1px solid #dbe3ef;
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.15);
}

.theme-suite-v4 .header-nav {
    position: sticky;
    top: 0;
    z-index: 1260;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--v4-line);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.theme-suite-v4 .nav-wrap {
    min-height: 74px;
    gap: 0.8rem;
}

.theme-suite-v4 .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--v4-brand), #1d4ed8);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.theme-suite-v4 .brand strong {
    color: #0f172a;
    font-size: 1rem;
}

.theme-suite-v4 .brand small {
    color: #64748b;
    font-size: 0.76rem;
}

.theme-suite-v4 .menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--v4-line);
    background: #ffffff;
    color: #334155;
}

.theme-suite-v4 .menu-toggle-box {
    width: 18px;
    height: 14px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.theme-suite-v4 .menu-toggle-box span {
    height: 2px;
    width: 100%;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.theme-suite-v4 .menu-toggle.is-open .menu-toggle-box span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.theme-suite-v4 .menu-toggle.is-open .menu-toggle-box span:nth-child(2) {
    opacity: 0;
}

.theme-suite-v4 .menu-toggle.is-open .menu-toggle-box span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.theme-suite-v4 .site-nav {
    margin-left: auto;
    border: 1px solid var(--v4-line);
    border-radius: 999px;
    padding: 0.22rem;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    gap: 0.18rem;
}

.theme-suite-v4 .site-nav a {
    height: 38px;
    border-radius: 999px;
    padding: 0 0.84rem;
    color: #334155;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
}

.theme-suite-v4 .site-nav a .nav-link-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #1d4ed8;
}

.theme-suite-v4 .site-nav a .nav-link-icon svg {
    width: 12px;
    height: 12px;
}

.theme-suite-v4 .site-nav a .nav-link-spark {
    display: none;
}

.theme-suite-v4 .site-nav a:hover,
.theme-suite-v4 .site-nav a.is-active {
    background: #eff6ff;
    color: #1d4ed8;
    box-shadow: inset 0 0 0 1px #bfdbfe;
}

.theme-suite-v4 .site-nav a:hover .nav-link-icon,
.theme-suite-v4 .site-nav a.is-active .nav-link-icon {
    background: #dbeafe;
}

.theme-suite-v4 .hero,
.theme-suite-v4 .section {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
}

.theme-suite-v4 .hero-main,
.theme-suite-v4 .hero-stage-card,
.theme-suite-v4 .v2-impact-card,
.theme-suite-v4 .feature-grid article,
.theme-suite-v4 .card,
.theme-suite-v4 .workflow-card,
.theme-suite-v4 .offer-filter-list,
.theme-suite-v4 .empty-state {
    border-radius: 16px;
    border: 1px solid var(--v4-line);
    background: var(--v4-surface);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.theme-suite-v4 .hero-stage-card {
    background: linear-gradient(140deg, #0f172a, #1e293b);
    color: #e2e8f0;
    border-color: #334155;
}

.theme-suite-v4 .hero-stage-item,
.theme-suite-v4 .hero-stage-order {
    border-color: rgba(148, 163, 184, 0.32);
    background: rgba(255, 255, 255, 0.08);
}

.theme-suite-v4 .site-footer {
    margin-top: 2.6rem;
    background: linear-gradient(180deg, #0b1220, #0f172a);
    color: #cbd5e1;
    padding-top: 2rem;
}

.theme-suite-v4 .footer-top {
    grid-template-columns: 1.1fr 1fr 1.3fr;
    gap: 0.9rem;
}

.theme-suite-v4 .footer-brand-card,
.theme-suite-v4 .footer-contact-card,
.theme-suite-v4 .footer-links-block {
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    padding: 0.9rem;
}

.theme-suite-v4 .footer-brand strong,
.theme-suite-v4 .footer-contact-card h4,
.theme-suite-v4 .footer-links-block h4 {
    color: #f8fafc;
}

.theme-suite-v4 .footer-brand small,
.theme-suite-v4 .footer-brand-note,
.theme-suite-v4 .footer-contact-list span,
.theme-suite-v4 .footer-contact-list p,
.theme-suite-v4 .footer-bottom,
.theme-suite-v4 .copyright-license-text,
.theme-suite-v4 .copyright-license-sub {
    color: #94a3b8;
}

.theme-suite-v4 .footer-social-chip {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.theme-suite-v4 .footer-contact-list li {
    border-bottom: 1px dashed rgba(148, 163, 184, 0.25);
    padding-bottom: 0.48rem;
    margin-bottom: 0.48rem;
}

.theme-suite-v4 .footer-contact-list li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.theme-suite-v4 .footer-map-link {
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.36);
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

.theme-suite-v4 .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.theme-suite-v4 .footer-links-block a,
.theme-suite-v4 .footer-contact-list a,
.theme-suite-v4 .copyright-license-text a {
    color: #e2e8f0;
}

.theme-suite-v4 .footer-bottom,
.theme-suite-v4 .copyright-license-bar {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.theme-suite-v4 .copyright-license-bar {
    background: rgba(2, 6, 23, 0.6);
}

@media (max-width: 960px) {
    .theme-suite-v4 .container {
        width: min(1180px, calc(100% - 1.1rem));
    }

    .theme-suite-v4 .utility-row {
        grid-template-columns: 1fr auto;
    }

    .theme-suite-v4 .utility-actions {
        display: none;
    }

    .theme-suite-v4 .menu-toggle {
        display: inline-flex;
    }

    .theme-suite-v4 .site-nav {
        position: fixed;
        top: 74px;
        left: 0.62rem;
        right: 0.62rem;
        z-index: 1400;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.36rem;
        padding: 0.58rem;
        border-radius: 14px;
        border: 1px solid #cfd9ea;
        background: #ffffff;
        box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .theme-suite-v4 .site-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .theme-suite-v4 .site-nav a {
        width: 100%;
        height: 44px;
        border-radius: 10px;
        justify-content: flex-start;
    }

    .theme-suite-v4 .footer-top,
    .theme-suite-v4 .footer-links-grid,
    .theme-suite-v4 .hero-grid,
    .theme-suite-v4 .hero-grid-v2,
    .theme-suite-v4 .v2-impact-grid,
    .theme-suite-v4 .feature-grid,
    .theme-suite-v4 .offerings-grid-v2,
    .theme-suite-v4 .reference-grid-v2,
    .theme-suite-v4 .workflow-grid,
    .theme-suite-v4 .cta-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .theme-suite-v4 .nav-wrap {
        min-height: 70px;
    }

    .theme-suite-v4 .site-nav {
        top: 70px;
    }

    .theme-suite-v4 .quick-link-chip {
        height: 24px;
        font-size: 0.63rem;
        padding: 0 0.48rem;
    }

    .theme-suite-v4 .brand strong {
        font-size: 0.9rem;
    }

    .theme-suite-v4 .brand small {
        font-size: 0.7rem;
    }
}

/* Suite V4 Premium Polish */
.theme-suite-v4 {
    --v4-bg: #f4f7fc;
    --v4-surface: #ffffff;
    --v4-surface-soft: #f8fafe;
    --v4-ink: #0b1220;
    --v4-muted: #5c6679;
    --v4-line: #d8e1ef;
    --v4-brand: #1d4ed8;
    --v4-brand-2: #0f766e;
    --v4-shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.06);
    --v4-shadow-md: 0 16px 36px rgba(15, 23, 42, 0.1);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.theme-suite-v4 .header-top {
    background:
        radial-gradient(140px 80px at 12% -40%, rgba(59, 130, 246, 0.16), transparent 70%),
        linear-gradient(110deg, #0b1220, #16263f);
}

.theme-suite-v4 .header-nav {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 252, 255, 0.94));
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.theme-suite-v4 .brand strong {
    font-family: var(--font-heading);
    font-size: 1.03rem;
    letter-spacing: -0.01em;
}

.theme-suite-v4 .site-nav {
    box-shadow: var(--v4-shadow-sm);
}

.theme-suite-v4 .site-nav a {
    font-size: 0.82rem;
    font-weight: 700;
}

.theme-suite-v4 .site-nav a:hover,
.theme-suite-v4 .site-nav a.is-active {
    background: linear-gradient(120deg, #eff6ff, #e8f1ff);
    color: #1d4ed8;
    box-shadow: inset 0 0 0 1px #bfdbfe;
}

.theme-suite-v4 .hero,
.theme-suite-v4 .section {
    padding-top: 2.9rem;
    padding-bottom: 2.9rem;
}

.theme-suite-v4 .hero h1,
.theme-suite-v4 .page-hero h1 {
    margin-top: 0.4rem;
    margin-bottom: 0.9rem;
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--v4-ink);
}

.theme-suite-v4 .hero-lead,
.theme-suite-v4 .section-head p,
.theme-suite-v4 .card p,
.theme-suite-v4 .feature-grid p,
.theme-suite-v4 .workflow-card p {
    color: var(--v4-muted);
}

.theme-suite-v4 .section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    letter-spacing: -0.02em;
    color: var(--v4-ink);
}

.theme-suite-v4 .hero-main,
.theme-suite-v4 .hero-stage-card,
.theme-suite-v4 .v2-impact-card,
.theme-suite-v4 .feature-grid article,
.theme-suite-v4 .card,
.theme-suite-v4 .workflow-card,
.theme-suite-v4 .offer-filter-list,
.theme-suite-v4 .empty-state {
    box-shadow: var(--v4-shadow-sm);
}

.theme-suite-v4 .hero-main {
    border-color: #d7e2f2;
    background:
        radial-gradient(circle at 95% 4%, rgba(59, 130, 246, 0.08), transparent 30%),
        linear-gradient(160deg, #ffffff, #f7faff);
}

.theme-suite-v4 .hero-stage-card {
    background:
        radial-gradient(circle at 12% 10%, rgba(45, 212, 191, 0.15), transparent 36%),
        linear-gradient(145deg, #0f172a, #1f2f4b);
}

.theme-suite-v4 .hero-stage-card h3,
.theme-suite-v4 .hero-stage-card p,
.theme-suite-v4 .hero-stage-card h4,
.theme-suite-v4 .hero-stage-eyebrow,
.theme-suite-v4 .hero-stage-checklist li {
    color: #e8eef8;
}

.theme-suite-v4 .hero-stage-order {
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #f8fafc;
}

.theme-suite-v4 .v2-impact-card {
    border-color: #d8e3f2;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.theme-suite-v4 .feature-grid article,
.theme-suite-v4 .card,
.theme-suite-v4 .workflow-card {
    border-color: #d8e2f0;
    background: linear-gradient(180deg, #ffffff, #f9fbff);
}

.theme-suite-v4 .card:hover,
.theme-suite-v4 .workflow-card:hover,
.theme-suite-v4 .feature-grid article:hover {
    border-color: #bfd2ee;
    box-shadow: var(--v4-shadow-md);
    transform: translateY(-2px);
}

.theme-suite-v4 .btn {
    border-radius: 12px;
    height: 45px;
    font-weight: 800;
}

.theme-suite-v4 .btn-primary {
    color: #f8fbff;
    background: linear-gradient(120deg, #1d4ed8, #2563eb);
    border-color: rgba(29, 78, 216, 0.45);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.theme-suite-v4 .btn-primary:hover {
    filter: brightness(1.03);
}

.theme-suite-v4 .btn-ghost,
.theme-suite-v4 .btn-secondary {
    background: #ffffff;
    border-color: #d7e2f1;
    color: #1f3556;
}

.theme-suite-v4 .offer-filter-list {
    background: linear-gradient(180deg, #ffffff, #f7faff);
}

.theme-suite-v4 .offer-filter-chip {
    border-radius: 999px;
    border: 1px solid #d4e0f0;
    background: #f7faff;
    color: #334155;
    font-weight: 700;
}

.theme-suite-v4 .offer-filter-chip:hover {
    background: #eff6ff;
    border-color: #c3d7ef;
}

.theme-suite-v4 .offer-filter-chip.is-active {
    background: linear-gradient(120deg, #1d4ed8, #2563eb);
    color: #f8fbff;
    border-color: rgba(29, 78, 216, 0.5);
}

.theme-suite-v4 .inline-link {
    color: #1d4ed8;
    font-weight: 800;
}

.theme-suite-v4 .site-footer {
    background:
        radial-gradient(circle at 15% -20%, rgba(37, 99, 235, 0.22), transparent 40%),
        linear-gradient(180deg, #0a1220, #0f172a);
}

.theme-suite-v4 .footer-brand-card,
.theme-suite-v4 .footer-contact-card,
.theme-suite-v4 .footer-links-block {
    border-color: rgba(148, 163, 184, 0.26);
    background: rgba(255, 255, 255, 0.04);
}

.theme-suite-v4 .footer-links-block a:hover,
.theme-suite-v4 .footer-map-link:hover {
    background: rgba(148, 163, 184, 0.18);
}

@media (max-width: 960px) {
    .theme-suite-v4 .site-nav {
        background: linear-gradient(180deg, #ffffff, #f8fbff);
        box-shadow: 0 20px 34px rgba(15, 23, 42, 0.18);
    }

    .theme-suite-v4 .hero,
    .theme-suite-v4 .section {
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
    }
}

@media (max-width: 720px) {
    .theme-suite-v4 .hero h1,
    .theme-suite-v4 .page-hero h1 {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
        line-height: 1.16;
    }

    .theme-suite-v4 .btn {
        height: 43px;
    }
}

/* Suite V4 Hero Integrity Fix */
.theme-suite-v4 .hero-metric-list {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.56rem;
}

.theme-suite-v4 .hero-metric {
    border: 1px solid #d7e2f1;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.58rem 0.72rem;
    display: grid;
    gap: 0.18rem;
}

.theme-suite-v4 .hero-metric .counter-value {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2.4vw, 1.46rem);
    color: #1d3557;
    line-height: 1.1;
}

.theme-suite-v4 .hero-metric span {
    color: #516176;
    font-size: 0.78rem;
    font-weight: 700;
}

.theme-suite-v4 .hero-trust-row {
    margin-top: 0.88rem;
    display: grid;
    gap: 0.42rem;
}

.theme-suite-v4 .hero-trust-row > span {
    color: #4b5f79;
    font-size: 0.78rem;
    font-weight: 700;
}

.theme-suite-v4 .hero-trust-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.32rem;
}

.theme-suite-v4 .hero-trust-brands em {
    font-style: normal;
    border: 1px solid #d8e1ef;
    background: #ffffff;
    color: #334b68;
    border-radius: 999px;
    height: 28px;
    padding: 0 0.68rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.74rem;
    font-weight: 700;
}

.theme-suite-v4 .hero-stage-flow {
    margin-top: 0.92rem;
    display: grid;
    gap: 0.5rem;
}

.theme-suite-v4 .hero-stage-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0.58rem;
    align-items: start;
    border: 1px solid rgba(148, 163, 184, 0.38);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    padding: 0.56rem 0.62rem;
}

.theme-suite-v4 .hero-stage-item h4 {
    margin: 0;
    font-size: 0.96rem;
    color: #f1f5f9;
}

.theme-suite-v4 .hero-stage-item p {
    margin: 0.22rem 0 0;
    color: #d9e2ef;
    font-size: 0.86rem;
    line-height: 1.45;
}

.theme-suite-v4 .hero-stage-order {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.44);
    background: rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    line-height: 1;
}

.theme-suite-v4 .hero-stage-checklist {
    margin: 0.86rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.theme-suite-v4 .hero-stage-checklist li {
    position: relative;
    padding-left: 1.02rem;
    color: #dbe7f7;
    font-size: 0.9rem;
}

.theme-suite-v4 .hero-stage-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.46rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #38bdf8;
}

@media (max-width: 960px) {
    .theme-suite-v4 .hero-metric-list {
        grid-template-columns: 1fr;
    }

    .theme-suite-v4 .hero-trust-brands em {
        height: 26px;
    }
}

/* Suite V5 Rebuild Stable */
.theme-suite-v5 {
    --v5-bg: #f3f6fb;
    --v5-surface: #ffffff;
    --v5-soft: #f8faff;
    --v5-ink: #0f172a;
    --v5-muted: #5b6678;
    --v5-line: #d8e1ef;
    --v5-brand: var(--primary);
    --v5-brand-2: var(--secondary);
    --v5-shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.06);
    --v5-shadow-md: 0 16px 34px rgba(15, 23, 42, 0.1);
    background:
        radial-gradient(circle at 8% 0, rgba(29, 78, 216, 0.08), transparent 30%),
        radial-gradient(circle at 94% 12%, rgba(15, 118, 110, 0.08), transparent 26%),
        var(--v5-bg);
    color: var(--v5-ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.theme-suite-v5 .v2-site-grain,
.theme-suite-v5 .flow-node::before,
.theme-suite-v5 .flow-node::after,
.theme-suite-v5 .flow-node > .container::before,
.theme-suite-v5 .flow-node > .container::after {
    display: none !important;
}

.theme-suite-v5 .flow-node {
    padding-top: 0;
    padding-bottom: 0;
}

.theme-suite-v5 .flow-node > .container {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
}

.theme-suite-v5 .site-shell {
    position: relative;
    z-index: 1;
}

.theme-suite-v5 .container {
    width: min(1180px, calc(100% - 2.2rem));
}

.theme-suite-v5 .site-header {
    position: relative;
    z-index: 1200;
}

.theme-suite-v5 .site-header::after,
body.nav-open .theme-suite-v5 .site-header::after {
    display: none !important;
}

.theme-suite-v5 .header-top {
    position: relative;
    z-index: 1205;
    padding: 0.38rem 0;
    background: linear-gradient(110deg, #0b1220, #16253d);
    border-bottom: 1px solid rgba(148, 163, 184, 0.34);
}

.theme-suite-v5 .utility-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.44rem;
    align-items: center;
}

.theme-suite-v5 .utility-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.theme-suite-v5 .utility-links .utility-list {
    gap: 0.28rem;
}

.theme-suite-v5 .quick-link-chip,
.theme-suite-v5 .quick-link-chip.quick-link-variant-1,
.theme-suite-v5 .quick-link-chip.quick-link-variant-2,
.theme-suite-v5 .quick-link-chip.quick-link-variant-3,
.theme-suite-v5 .quick-link-chip.quick-link-variant-4,
.theme-suite-v5 .quick-link-chip.quick-link-variant-5,
.theme-suite-v5 .quick-link-chip.quick-link-variant-6,
.theme-suite-v5 .quick-link-chip.is-phone,
.theme-suite-v5 .quick-link-chip.is-whatsapp {
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.36);
    background: rgba(255, 255, 255, 0.09);
    color: #e2e8f0;
    box-shadow: none;
    font-size: 0.67rem;
    font-weight: 700;
    padding: 0 0.56rem;
}

.theme-suite-v5 .quick-link-chip:hover {
    background: rgba(255, 255, 255, 0.16);
}

.theme-suite-v5 .social-chip {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.36);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: none;
}

.theme-suite-v5 .social-chip:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: none;
}

.theme-suite-v5 .lang-dropdown-toggle {
    height: 28px;
    border: 1px solid rgba(148, 163, 184, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: #e2e8f0;
}

.theme-suite-v5 .lang-dropdown-toggle svg {
    color: #e2e8f0;
}

.theme-suite-v5 .lang-dropdown-menu {
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.15);
}

.theme-suite-v5 .header-nav {
    position: sticky;
    top: 0;
    z-index: 1260;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--v5-line);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.theme-suite-v5 .nav-wrap {
    min-height: 74px;
    gap: 0.8rem;
}

.theme-suite-v5 .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--v5-brand), var(--v5-brand-2));
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.25);
}

.theme-suite-v5 .brand strong {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    color: var(--v5-ink);
    letter-spacing: -0.01em;
}

.theme-suite-v5 .brand small {
    color: #64748b;
    font-size: 0.76rem;
}

.theme-suite-v5 .menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--v5-line);
    background: #ffffff;
    color: #334155;
}

.theme-suite-v5 .menu-toggle-box {
    width: 18px;
    height: 14px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.theme-suite-v5 .menu-toggle-box span {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.theme-suite-v5 .menu-toggle.is-open .menu-toggle-box span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.theme-suite-v5 .menu-toggle.is-open .menu-toggle-box span:nth-child(2) {
    opacity: 0;
}

.theme-suite-v5 .menu-toggle.is-open .menu-toggle-box span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.theme-suite-v5 .site-nav {
    margin-left: auto;
    border: 1px solid var(--v5-line);
    border-radius: 999px;
    padding: 0.22rem;
    background: #ffffff;
    box-shadow: var(--v5-shadow-sm);
    gap: 0.18rem;
}

.theme-suite-v5 .site-nav a {
    height: 38px;
    border-radius: 999px;
    padding: 0 0.84rem;
    color: #334155;
    font-size: 0.81rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
}

.theme-suite-v5 .site-nav a .nav-link-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #1d4ed8;
}

.theme-suite-v5 .site-nav a .nav-link-icon svg {
    width: 12px;
    height: 12px;
}

.theme-suite-v5 .site-nav a .nav-link-spark {
    display: none;
}

.theme-suite-v5 .site-nav a:hover,
.theme-suite-v5 .site-nav a.is-active {
    background: #eff6ff;
    color: #1d4ed8;
    box-shadow: inset 0 0 0 1px #bfdbfe;
}

.theme-suite-v5 .hero,
.theme-suite-v5 .section {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
}

.theme-suite-v5 .hero-grid,
.theme-suite-v5 .hero-grid-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
    gap: 0.9rem;
    align-items: stretch;
}

.theme-suite-v5 .hero-main {
    border: 1px solid var(--v5-line);
    border-radius: 18px;
    background: linear-gradient(160deg, #ffffff, #f8fbff);
    box-shadow: var(--v5-shadow-sm);
    padding: 1.2rem;
}

.theme-suite-v5 .eyebrow {
    color: #35506f;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.theme-suite-v5 .hero-kicker {
    margin: 0.52rem 0 0;
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 0.7rem;
    border: 1px solid #cfe0f7;
    border-radius: 999px;
    background: #eef5ff;
    color: #1d4ed8;
    font-size: 0.76rem;
    font-weight: 800;
}

.theme-suite-v5 .hero h1 {
    margin: 0.52rem 0 0.86rem;
    font-family: var(--font-heading);
    font-size: clamp(2.05rem, 4vw, 3.15rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--v5-ink);
}

.theme-suite-v5 .hero-lead {
    margin: 0;
    color: var(--v5-muted);
}

.theme-suite-v5 .hero-actions {
    margin-top: 0.9rem;
    display: flex;
    gap: 0.6rem;
}

.theme-suite-v5 .btn {
    border-radius: 12px;
    height: 44px;
    font-weight: 800;
}

.theme-suite-v5 .btn-primary {
    color: #f8fbff;
    background: linear-gradient(120deg, var(--v5-brand), color-mix(in srgb, var(--v5-brand) 55%, var(--v5-brand-2)));
    border-color: color-mix(in srgb, var(--v5-brand) 46%, transparent);
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.24);
}

.theme-suite-v5 .btn-ghost,
.theme-suite-v5 .btn-secondary {
    background: #ffffff;
    border-color: #d8e2f1;
    color: #1f3556;
}

.theme-suite-v5 .hero-metric-list {
    margin-top: 0.96rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.52rem;
}

.theme-suite-v5 .hero-metric {
    border: 1px solid #d8e2f1;
    border-radius: 12px;
    background: #ffffff;
    padding: 0.56rem 0.66rem;
    display: grid;
    gap: 0.16rem;
}

.theme-suite-v5 .counter-value {
    font-family: var(--font-heading);
    font-size: clamp(1.02rem, 2.2vw, 1.4rem);
    line-height: 1.1;
    color: #1d3557;
}

.theme-suite-v5 .hero-metric span {
    color: #54657b;
    font-size: 0.77rem;
    font-weight: 700;
}

.theme-suite-v5 .hero-trust-row {
    margin-top: 0.84rem;
    display: grid;
    gap: 0.42rem;
    border: 1px solid #ccdbef;
    border-radius: 14px;
    padding: 0.58rem 0.62rem;
    background:
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.14), transparent 46%),
        linear-gradient(180deg, #f7fbff, #edf4fd);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.theme-suite-v5 .hero-trust-row > span {
    color: #244667;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.theme-suite-v5 .hero-trust-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.36rem;
}

.theme-suite-v5 .hero-trust-brands em {
    font-style: normal;
    min-height: 28px;
    border-radius: 999px;
    border: 1px solid #b8cee9;
    background: linear-gradient(180deg, #ffffff, #edf4ff);
    color: #1f3d63;
    padding: 0.18rem 0.66rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.73rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(29, 78, 216, 0.1);
}

.theme-suite-v5 .hero-stage-card {
    border: 1px solid #2f435f;
    border-radius: 18px;
    background: linear-gradient(145deg, #0f172a, #1f2f4b);
    box-shadow: var(--v5-shadow-md);
    color: #e2e8f0;
    padding: 1.14rem;
}

.theme-suite-v5 .hero-stage-eyebrow {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.theme-suite-v5 .hero-stage-card h3 {
    margin: 0.44rem 0 0.52rem;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: #f8fafc;
}

.theme-suite-v5 .hero-stage-text {
    margin: 0;
    color: #d2dceb;
}

.theme-suite-v5 .hero-stage-flow {
    margin-top: 0.86rem;
    display: grid;
    gap: 0.46rem;
}

.theme-suite-v5 .hero-stage-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 0.54rem;
    align-items: start;
    border: 1px solid rgba(148, 163, 184, 0.36);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.07);
    padding: 0.52rem 0.58rem;
}

.theme-suite-v5 .hero-stage-order {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.48);
    background: rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    line-height: 1;
}

.theme-suite-v5 .hero-stage-item h4 {
    margin: 0;
    color: #f1f5f9;
    font-size: 1rem;
}

.theme-suite-v5 .hero-stage-item p {
    margin: 0.2rem 0 0;
    color: #d8e3f2;
    font-size: 0.94rem;
    line-height: 1.45;
}

.theme-suite-v5 .hero-stage-checklist {
    margin: 0.82rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.34rem;
}

.theme-suite-v5 .hero-stage-checklist li {
    position: relative;
    padding-left: 0.96rem;
    color: #dbe7f7;
}

.theme-suite-v5 .hero-stage-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.44rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #38bdf8;
}

.theme-suite-v5 .section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.32rem);
    letter-spacing: -0.02em;
    color: var(--v5-ink);
}

.theme-suite-v5 .section-head p,
.theme-suite-v5 .card p,
.theme-suite-v5 .feature-grid p,
.theme-suite-v5 .workflow-card p {
    color: var(--v5-muted);
}

.theme-suite-v5 .v2-impact-grid,
.theme-suite-v5 .feature-grid,
.theme-suite-v5 .offerings-grid-v2,
.theme-suite-v5 .reference-grid-v2,
.theme-suite-v5 .workflow-grid {
    display: grid;
    gap: 0.72rem;
}

.theme-suite-v5 .v2-impact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.theme-suite-v5 .feature-grid,
.theme-suite-v5 .offerings-grid-v2,
.theme-suite-v5 .reference-grid-v2,
.theme-suite-v5 .workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-suite-v5 .v2-impact-card,
.theme-suite-v5 .feature-grid article,
.theme-suite-v5 .card,
.theme-suite-v5 .workflow-card,
.theme-suite-v5 .offer-filter-list,
.theme-suite-v5 .empty-state {
    border: 1px solid var(--v5-line);
    border-radius: 14px;
    background: var(--v5-surface);
    box-shadow: var(--v5-shadow-sm);
}

.theme-suite-v5 .card,
.theme-suite-v5 .workflow-card,
.theme-suite-v5 .feature-grid article {
    padding: 0.96rem;
}

.theme-suite-v5 .card:hover,
.theme-suite-v5 .workflow-card:hover,
.theme-suite-v5 .feature-grid article:hover {
    transform: translateY(-2px);
    box-shadow: var(--v5-shadow-md);
    border-color: #bfd2ee;
}

.theme-suite-v5 .offer-filter-list {
    padding: 0.5rem;
    gap: 0.44rem;
}

.theme-suite-v5 .offer-filter-chip {
    height: 36px;
    border-radius: 999px;
    border: 1px solid #d5e1f0;
    background: #f7faff;
    color: #334155;
    font-weight: 700;
    padding: 0 0.76rem;
}

.theme-suite-v5 .offer-filter-chip.is-active {
    background: linear-gradient(120deg, #1d4ed8, #2563eb);
    color: #f8fbff;
    border-color: rgba(29, 78, 216, 0.5);
}

.theme-suite-v5 .inline-link {
    color: #1d4ed8;
    font-weight: 800;
}

.theme-suite-v5 .site-footer {
    margin-top: 2.6rem;
    background:
        radial-gradient(circle at 15% -20%, rgba(37, 99, 235, 0.22), transparent 40%),
        linear-gradient(180deg, #0a1220, #0f172a);
    color: #cbd5e1;
    padding-top: 2rem;
}

.theme-suite-v5 .footer-top {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.3fr;
    gap: 0.9rem;
}

.theme-suite-v5 .footer-brand-card,
.theme-suite-v5 .footer-contact-card,
.theme-suite-v5 .footer-links-block {
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    padding: 0.9rem;
}

.theme-suite-v5 .footer-brand strong,
.theme-suite-v5 .footer-contact-card h4,
.theme-suite-v5 .footer-links-block h4 {
    color: #f8fafc;
}

.theme-suite-v5 .footer-contact-card h4,
.theme-suite-v5 .footer-links-block h4 {
    margin: 0 0 0.68rem;
    display: flex;
    align-items: center;
    gap: 0.44rem;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.theme-suite-v5 .footer-contact-card h4::before,
.theme-suite-v5 .footer-links-block h4::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 3px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    box-shadow: 0 0 0 1px rgba(147, 197, 253, 0.24);
}

.theme-suite-v5 .footer-contact-card h4::after,
.theme-suite-v5 .footer-links-block h4::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(147, 197, 253, 0.5), rgba(147, 197, 253, 0));
}

/* Header Ultra Final Final Override */
.theme-suite-v5 .site-header { position: relative; z-index: 1450; }
.theme-suite-v5 .header-top {
    z-index: 1452;
    padding: 0.34rem 0;
    border-bottom: 1px solid rgba(96, 122, 158, 0.34);
    background:
        radial-gradient(circle at 10% 0, rgba(59, 130, 246, 0.32), transparent 44%),
        linear-gradient(108deg, #091326, #0f203a 56%, #143457);
}
.theme-suite-v5 .utility-row { grid-template-columns: 1fr auto auto; gap: 0.42rem; align-items: center; }
.theme-suite-v5 .utility-card {
    border: 1px solid rgba(96, 122, 158, 0.34);
    border-radius: 999px;
    background: rgba(6, 18, 36, 0.5);
    box-shadow: inset 0 0 0 1px rgba(191, 219, 254, 0.09);
    padding: 0.18rem;
}
.theme-suite-v5 .quick-link-chip,
.theme-suite-v5 .quick-link-chip.quick-link-variant-1,
.theme-suite-v5 .quick-link-chip.quick-link-variant-2,
.theme-suite-v5 .quick-link-chip.quick-link-variant-3,
.theme-suite-v5 .quick-link-chip.quick-link-variant-4,
.theme-suite-v5 .quick-link-chip.quick-link-variant-5,
.theme-suite-v5 .quick-link-chip.quick-link-variant-6,
.theme-suite-v5 .quick-link-chip.is-phone,
.theme-suite-v5 .quick-link-chip.is-whatsapp {
    height: 25px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.42);
    background: rgba(255, 255, 255, 0.08);
    color: #dbeafe;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0 0.54rem;
}
.theme-suite-v5 .header-nav {
    position: sticky;
    top: 0;
    z-index: 1460;
    padding: 0.46rem 0 0.36rem;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}
.theme-suite-v5 .nav-wrap {
    min-height: 78px;
    border: 1px solid rgba(171, 189, 214, 0.66);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0, rgba(147, 197, 253, 0.34), transparent 44%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.95));
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
    padding: 0.5rem 0.62rem;
    gap: 0.74rem;
}
.theme-suite-v5 .site-nav {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.22rem;
    border: 1px solid #c7d7eb;
    border-radius: 999px;
    padding: 0.24rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
.theme-suite-v5 .site-nav a {
    height: 40px;
    border-radius: 999px;
    padding: 0 0.86rem;
    color: #334b69;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
}
.theme-suite-v5 .site-nav a .nav-link-icon {
    width: 21px;
    height: 21px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf4ff;
    color: var(--v5-brand);
}
.theme-suite-v5 .site-nav a .nav-link-spark { width: 6px; height: 6px; border-radius: 999px; background: transparent; }
.theme-suite-v5 .site-nav a:hover,
.theme-suite-v5 .site-nav a.is-active { background: linear-gradient(120deg, var(--v5-brand), color-mix(in srgb, var(--v5-brand) 52%, var(--v5-brand-2))); color: #f8fbff; }
.theme-suite-v5 .site-nav a:hover .nav-link-icon,
.theme-suite-v5 .site-nav a.is-active .nav-link-icon { background: rgba(219, 234, 254, 0.22); color: #e2e8f0; }
.theme-suite-v5 .site-nav a:hover .nav-link-spark,
.theme-suite-v5 .site-nav a.is-active .nav-link-spark { background: #67e8f9; }

@media (max-width: 960px) {
    .theme-suite-v5 .site-header::after {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 1490;
        background: rgba(2, 10, 24, 0.62);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
        display: block !important;
    }
    body.nav-open .theme-suite-v5 .site-header::after { opacity: 1; pointer-events: auto; }
    .theme-suite-v5 .utility-row { grid-template-columns: 1fr auto; gap: 0.28rem; }
    .theme-suite-v5 .utility-actions { display: none; }
    .theme-suite-v5 .menu-toggle {
        display: inline-flex;
        margin-left: auto;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        border: 1px solid #ccdaec;
        background: linear-gradient(170deg, #ffffff, #f2f8ff);
        color: #1f3f66;
    }
    .theme-suite-v5 .nav-wrap { min-height: 70px; border-radius: 16px; padding: 0.44rem 0.5rem; }
    .theme-suite-v5 .site-nav {
        position: fixed;
        top: 78px;
        left: 0.64rem;
        right: 0.64rem;
        z-index: 1495;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.38rem;
        border-radius: 18px;
        border: 1px solid #bfcee3;
        background:
            radial-gradient(circle at 90% 0, rgba(147, 197, 253, 0.26), transparent 42%),
            linear-gradient(165deg, #ffffff, #f2f8ff);
        box-shadow: 0 26px 38px rgba(15, 23, 42, 0.26);
        padding: 0.76rem;
        max-height: calc(100vh - 94px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px) scale(0.985);
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }
    .theme-suite-v5 .site-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
    .theme-suite-v5 .site-nav a {
        width: 100%;
        height: 46px;
        border-radius: 12px;
        justify-content: flex-start;
        padding: 0 0.74rem;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: inset 0 0 0 1px #d6e3f2;
    }
    .theme-suite-v5 .site-nav a .nav-link-icon { width: 25px; height: 25px; }
    .theme-suite-v5 .site-nav a .nav-link-spark { margin-left: auto; }
}

@media (max-width: 720px) {
    .theme-suite-v5 .site-nav { top: 72px; left: 0.5rem; right: 0.5rem; }
    .theme-suite-v5 .nav-wrap { min-height: 66px; }
    .theme-suite-v5 .brand small { display: none; }
}

/* Header Ultra Final Override */
.theme-suite-v5 .site-header {
    position: relative;
    z-index: 1450;
}

.theme-suite-v5 .header-top {
    z-index: 1452;
    padding: 0.34rem 0;
    border-bottom: 1px solid rgba(96, 122, 158, 0.34);
    background:
        radial-gradient(circle at 10% 0, rgba(59, 130, 246, 0.32), transparent 44%),
        linear-gradient(108deg, #091326, #0f203a 56%, #143457);
}

.theme-suite-v5 .utility-row {
    grid-template-columns: 1fr auto auto;
    gap: 0.42rem;
    align-items: center;
}

.theme-suite-v5 .utility-card {
    border: 1px solid rgba(96, 122, 158, 0.34);
    border-radius: 999px;
    background: rgba(6, 18, 36, 0.5);
    box-shadow: inset 0 0 0 1px rgba(191, 219, 254, 0.09);
    padding: 0.18rem;
}

.theme-suite-v5 .quick-link-chip,
.theme-suite-v5 .quick-link-chip.quick-link-variant-1,
.theme-suite-v5 .quick-link-chip.quick-link-variant-2,
.theme-suite-v5 .quick-link-chip.quick-link-variant-3,
.theme-suite-v5 .quick-link-chip.quick-link-variant-4,
.theme-suite-v5 .quick-link-chip.quick-link-variant-5,
.theme-suite-v5 .quick-link-chip.quick-link-variant-6,
.theme-suite-v5 .quick-link-chip.is-phone,
.theme-suite-v5 .quick-link-chip.is-whatsapp {
    height: 25px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.42);
    background: rgba(255, 255, 255, 0.08);
    color: #dbeafe;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0 0.54rem;
}

.theme-suite-v5 .header-nav {
    position: sticky;
    top: 0;
    z-index: 1460;
    padding: 0.46rem 0 0.36rem;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.theme-suite-v5 .nav-wrap {
    min-height: 78px;
    border: 1px solid rgba(171, 189, 214, 0.66);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0, rgba(147, 197, 253, 0.34), transparent 44%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.95));
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
    padding: 0.5rem 0.62rem;
    gap: 0.74rem;
}

.theme-suite-v5 .site-nav {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.22rem;
    border: 1px solid #c7d7eb;
    border-radius: 999px;
    padding: 0.24rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.theme-suite-v5 .site-nav a {
    height: 40px;
    border-radius: 999px;
    padding: 0 0.86rem;
    color: #334b69;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
}

.theme-suite-v5 .site-nav a .nav-link-icon {
    width: 21px;
    height: 21px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf4ff;
    color: #2563eb;
}

.theme-suite-v5 .site-nav a .nav-link-spark {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: transparent;
}

.theme-suite-v5 .site-nav a:hover,
.theme-suite-v5 .site-nav a.is-active {
    background: linear-gradient(120deg, #2563eb, #1d4ed8);
    color: #f8fbff;
}

.theme-suite-v5 .site-nav a:hover .nav-link-icon,
.theme-suite-v5 .site-nav a.is-active .nav-link-icon {
    background: rgba(219, 234, 254, 0.22);
    color: #e2e8f0;
}

.theme-suite-v5 .site-nav a:hover .nav-link-spark,
.theme-suite-v5 .site-nav a.is-active .nav-link-spark {
    background: #67e8f9;
}

@media (max-width: 960px) {
    .theme-suite-v5 .site-header::after {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 1490;
        background: rgba(2, 10, 24, 0.62);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
        display: block !important;
    }

    body.nav-open .theme-suite-v5 .site-header::after {
        opacity: 1;
        pointer-events: auto;
    }

    .theme-suite-v5 .utility-row {
        grid-template-columns: 1fr auto;
        gap: 0.28rem;
    }

    .theme-suite-v5 .utility-actions {
        display: none;
    }

    .theme-suite-v5 .menu-toggle {
        display: inline-flex;
        margin-left: auto;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        border: 1px solid #ccdaec;
        background: linear-gradient(170deg, #ffffff, #f2f8ff);
        color: #1f3f66;
    }

    .theme-suite-v5 .nav-wrap {
        min-height: 70px;
        border-radius: 16px;
        padding: 0.44rem 0.5rem;
    }

    .theme-suite-v5 .site-nav {
        position: fixed;
        top: 78px;
        left: 0.64rem;
        right: 0.64rem;
        z-index: 1495;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.38rem;
        border-radius: 18px;
        border: 1px solid #bfcee3;
        background:
            radial-gradient(circle at 90% 0, rgba(147, 197, 253, 0.26), transparent 42%),
            linear-gradient(165deg, #ffffff, #f2f8ff);
        box-shadow: 0 26px 38px rgba(15, 23, 42, 0.26);
        padding: 0.76rem;
        max-height: calc(100vh - 94px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px) scale(0.985);
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }

    .theme-suite-v5 .site-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .theme-suite-v5 .site-nav a {
        width: 100%;
        height: 46px;
        border-radius: 12px;
        justify-content: flex-start;
        padding: 0 0.74rem;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: inset 0 0 0 1px #d6e3f2;
    }

    .theme-suite-v5 .site-nav a .nav-link-icon {
        width: 25px;
        height: 25px;
    }

    .theme-suite-v5 .site-nav a .nav-link-spark {
        margin-left: auto;
    }
}

@media (max-width: 720px) {
    .theme-suite-v5 .site-nav {
        top: 72px;
        left: 0.5rem;
        right: 0.5rem;
    }

    .theme-suite-v5 .nav-wrap {
        min-height: 66px;
    }

    .theme-suite-v5 .brand small {
        display: none;
    }
}

/* Suite V5 Header Ultra Rebuild */
.theme-suite-v5 .site-header {
    position: relative;
    z-index: 1450;
}

.theme-suite-v5 .header-top {
    position: relative;
    z-index: 1452;
    padding: 0.34rem 0;
    border-bottom: 1px solid rgba(96, 122, 158, 0.35);
    background:
        radial-gradient(circle at 12% 0, rgba(59, 130, 246, 0.34), transparent 44%),
        linear-gradient(110deg, #091326, #0f203a 54%, #133054);
}

.theme-suite-v5 .utility-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.42rem;
    align-items: center;
}

.theme-suite-v5 .utility-card {
    border: 1px solid rgba(96, 122, 158, 0.36);
    border-radius: 999px;
    background: rgba(6, 18, 36, 0.48);
    box-shadow: inset 0 0 0 1px rgba(191, 219, 254, 0.1);
    padding: 0.18rem;
}

.theme-suite-v5 .utility-links .utility-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.24rem;
}

.theme-suite-v5 .quick-link-chip,
.theme-suite-v5 .quick-link-chip.quick-link-variant-1,
.theme-suite-v5 .quick-link-chip.quick-link-variant-2,
.theme-suite-v5 .quick-link-chip.quick-link-variant-3,
.theme-suite-v5 .quick-link-chip.quick-link-variant-4,
.theme-suite-v5 .quick-link-chip.quick-link-variant-5,
.theme-suite-v5 .quick-link-chip.quick-link-variant-6,
.theme-suite-v5 .quick-link-chip.is-phone,
.theme-suite-v5 .quick-link-chip.is-whatsapp {
    height: 25px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #dbe7f5;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0 0.54rem;
    transition: background 0.22s ease, border-color 0.22s ease;
}

.theme-suite-v5 .quick-link-chip:hover {
    background: rgba(37, 99, 235, 0.26);
    border-color: rgba(147, 197, 253, 0.58);
}

.theme-suite-v5 .utility-actions {
    border: 1px solid rgba(96, 122, 158, 0.36);
    border-radius: 999px;
    background: rgba(6, 18, 36, 0.48);
    box-shadow: inset 0 0 0 1px rgba(191, 219, 254, 0.1);
    padding: 0.2rem 0.24rem;
}

.theme-suite-v5 .social-chip {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    border: 1px solid rgba(148, 163, 184, 0.42);
    background: rgba(255, 255, 255, 0.09);
    color: #dbeafe;
}

.theme-suite-v5 .social-chip:hover {
    transform: translateY(-1px);
    background: rgba(37, 99, 235, 0.24);
    border-color: rgba(125, 211, 252, 0.62);
}

.theme-suite-v5 .lang-dropdown-toggle {
    height: 30px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 999px;
    background: rgba(6, 18, 36, 0.52);
    color: #dbeafe;
    padding: 0 0.44rem;
}

.theme-suite-v5 .lang-dropdown-menu {
    border: 1px solid #c8d8ec;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.theme-suite-v5 .header-nav {
    position: sticky;
    top: 0;
    z-index: 1460;
    padding: 0.46rem 0 0.38rem;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.theme-suite-v5 .nav-wrap {
    position: relative;
    min-height: 78px;
    gap: 0.74rem;
    border: 1px solid rgba(173, 190, 215, 0.62);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0, rgba(147, 197, 253, 0.34), transparent 44%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.95));
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
    padding: 0.5rem 0.62rem;
}

.theme-suite-v5 .nav-wrap::after {
    content: '';
    position: absolute;
    left: 1.08rem;
    right: 1.08rem;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(191, 219, 254, 0), rgba(147, 197, 253, 0.64), rgba(191, 219, 254, 0));
}

.theme-suite-v5 .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

.theme-suite-v5 .brand strong {
    font-size: 1.04rem;
    color: #12233d;
}

.theme-suite-v5 .brand small {
    color: #5a6f89;
    font-size: 0.74rem;
}

.theme-suite-v5 .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid #ccdaec;
    background: linear-gradient(170deg, #ffffff, #f2f8ff);
    color: #1f3f66;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
}

.theme-suite-v5 .menu-toggle:hover {
    border-color: #a9c3e6;
}

.theme-suite-v5 .site-nav {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.22rem;
    border: 1px solid #c8d8ec;
    border-radius: 999px;
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.theme-suite-v5 .site-nav a {
    position: relative;
    height: 40px;
    border-radius: 999px;
    padding: 0 0.86rem;
    color: #314a69;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
}

.theme-suite-v5 .site-nav a .nav-link-icon {
    width: 21px;
    height: 21px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf4ff;
    color: #2563eb;
}

.theme-suite-v5 .site-nav a .nav-link-icon svg {
    width: 12px;
    height: 12px;
}

.theme-suite-v5 .site-nav a .nav-link-spark {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: transparent;
    margin-left: 0.02rem;
    transition: background 0.2s ease;
}

.theme-suite-v5 .site-nav a:hover,
.theme-suite-v5 .site-nav a.is-active {
    background: linear-gradient(120deg, #2563eb, #1d4ed8);
    color: #f8fbff;
}

.theme-suite-v5 .site-nav a:hover .nav-link-icon,
.theme-suite-v5 .site-nav a.is-active .nav-link-icon {
    background: rgba(219, 234, 254, 0.22);
    color: #e2e8f0;
}

.theme-suite-v5 .site-nav a:hover .nav-link-spark,
.theme-suite-v5 .site-nav a.is-active .nav-link-spark {
    background: #67e8f9;
}

@media (max-width: 960px) {
    .theme-suite-v5 .site-header::after {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 1490;
        background: rgba(2, 10, 24, 0.6);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
        display: block !important;
    }

    body.nav-open .theme-suite-v5 .site-header::after {
        opacity: 1;
        pointer-events: auto;
    }

    .theme-suite-v5 .header-top {
        padding: 0.28rem 0;
    }

    .theme-suite-v5 .utility-row {
        grid-template-columns: 1fr auto;
        gap: 0.28rem;
    }

    .theme-suite-v5 .utility-actions {
        display: none;
    }

    .theme-suite-v5 .quick-link-chip,
    .theme-suite-v5 .quick-link-chip.quick-link-variant-1,
    .theme-suite-v5 .quick-link-chip.quick-link-variant-2,
    .theme-suite-v5 .quick-link-chip.quick-link-variant-3,
    .theme-suite-v5 .quick-link-chip.quick-link-variant-4,
    .theme-suite-v5 .quick-link-chip.quick-link-variant-5,
    .theme-suite-v5 .quick-link-chip.quick-link-variant-6,
    .theme-suite-v5 .quick-link-chip.is-phone,
    .theme-suite-v5 .quick-link-chip.is-whatsapp {
        height: 23px;
        padding: 0 0.46rem;
        font-size: 0.61rem;
    }

    .theme-suite-v5 .header-nav {
        padding: 0.34rem 0 0.3rem;
    }

    .theme-suite-v5 .nav-wrap {
        min-height: 70px;
        border-radius: 16px;
        padding: 0.44rem 0.5rem;
    }

    .theme-suite-v5 .nav-wrap::after {
        left: 0.84rem;
        right: 0.84rem;
    }

    .theme-suite-v5 .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .theme-suite-v5 .site-nav {
        position: fixed;
        top: 78px;
        left: 0.64rem;
        right: 0.64rem;
        z-index: 1495;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.38rem;
        border-radius: 18px;
        border: 1px solid #bfcee3;
        background:
            radial-gradient(circle at 90% 0, rgba(147, 197, 253, 0.26), transparent 42%),
            linear-gradient(165deg, #ffffff, #f2f8ff);
        box-shadow: 0 26px 38px rgba(15, 23, 42, 0.26);
        padding: 0.76rem;
        max-height: calc(100vh - 94px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px) scale(0.985);
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }

    .theme-suite-v5 .site-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .theme-suite-v5 .site-nav a {
        width: 100%;
        height: 46px;
        border-radius: 12px;
        justify-content: flex-start;
        padding: 0 0.74rem;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: inset 0 0 0 1px #d6e3f2;
    }

    .theme-suite-v5 .site-nav a .nav-link-icon {
        width: 25px;
        height: 25px;
    }

    .theme-suite-v5 .site-nav a .nav-link-icon svg {
        width: 13px;
        height: 13px;
    }

    .theme-suite-v5 .site-nav a .nav-link-spark {
        margin-left: auto;
    }
}

@media (max-width: 720px) {
    .theme-suite-v5 .site-nav {
        top: 72px;
        left: 0.5rem;
        right: 0.5rem;
    }

    .theme-suite-v5 .nav-wrap {
        min-height: 66px;
    }

    .theme-suite-v5 .brand small {
        display: none;
    }
}

.theme-suite-v5 .footer-contact-card h4,
.theme-suite-v5 .footer-links-block h4 {
    margin: 0 0 0.68rem;
    display: flex;
    align-items: center;
    gap: 0.44rem;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.theme-suite-v5 .footer-contact-card h4::before,
.theme-suite-v5 .footer-links-block h4::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 3px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    box-shadow: 0 0 0 1px rgba(147, 197, 253, 0.24);
}

.theme-suite-v5 .footer-contact-card h4::after,
.theme-suite-v5 .footer-links-block h4::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(147, 197, 253, 0.5), rgba(147, 197, 253, 0));
}

.theme-suite-v5 .footer-brand small,
.theme-suite-v5 .footer-brand-note,
.theme-suite-v5 .footer-contact-list span,
.theme-suite-v5 .footer-contact-list p,
.theme-suite-v5 .footer-bottom,
.theme-suite-v5 .copyright-license-text,
.theme-suite-v5 .copyright-license-sub {
    color: #94a3b8;
}

.theme-suite-v5 .footer-social-chip {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.theme-suite-v5 .footer-contact-list li {
    border-bottom: 1px dashed rgba(148, 163, 184, 0.25);
    padding-bottom: 0.48rem;
    margin-bottom: 0.48rem;
}

.theme-suite-v5 .footer-contact-list li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.theme-suite-v5 .footer-map-link {
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.36);
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

.theme-suite-v5 .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.theme-suite-v5 .footer-links-block a,
.theme-suite-v5 .footer-contact-list a,
.theme-suite-v5 .copyright-license-text a {
    color: #e2e8f0;
}

.theme-suite-v5 .footer-bottom,
.theme-suite-v5 .copyright-license-bar {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.theme-suite-v5 .copyright-license-bar {
    background: rgba(2, 6, 23, 0.6);
}

@media (max-width: 960px) {
    .theme-suite-v5 .container {
        width: min(1180px, calc(100% - 1.08rem));
    }

    .theme-suite-v5 .utility-row {
        grid-template-columns: 1fr auto;
    }

    .theme-suite-v5 .utility-actions {
        display: none;
    }

    .theme-suite-v5 .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .theme-suite-v5 .site-nav {
        position: fixed;
        top: 74px;
        left: 0.62rem;
        right: 0.62rem;
        z-index: 1400;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.34rem;
        padding: 0.56rem;
        border-radius: 14px;
        border: 1px solid #cfd9ea;
        background: #ffffff;
        box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .theme-suite-v5 .site-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .theme-suite-v5 .site-nav a {
        width: 100%;
        height: 44px;
        border-radius: 10px;
        justify-content: flex-start;
    }

    .theme-suite-v5 .hero,
    .theme-suite-v5 .section {
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
    }

    .theme-suite-v5 .hero-grid,
    .theme-suite-v5 .hero-grid-v2,
    .theme-suite-v5 .v2-impact-grid,
    .theme-suite-v5 .feature-grid,
    .theme-suite-v5 .offerings-grid-v2,
    .theme-suite-v5 .reference-grid-v2,
    .theme-suite-v5 .workflow-grid,
    .theme-suite-v5 .cta-inner,
    .theme-suite-v5 .footer-top,
    .theme-suite-v5 .footer-links-grid,
    .theme-suite-v5 .hero-actions {
        grid-template-columns: 1fr;
    }

    .theme-suite-v5 .hero-actions {
        display: grid;
        gap: 0.52rem;
    }

    .theme-suite-v5 .hero-actions .btn {
        width: 100%;
    }

    .theme-suite-v5 .hero-metric-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .theme-suite-v5 .nav-wrap {
        min-height: 70px;
    }

    .theme-suite-v5 .site-nav {
        top: 70px;
    }

    .theme-suite-v5 .quick-link-chip {
        height: 24px;
        font-size: 0.63rem;
        padding: 0 0.48rem;
    }

    .theme-suite-v5 .hero h1 {
        font-size: clamp(1.72rem, 8vw, 2.24rem);
        line-height: 1.14;
    }

    .theme-suite-v5 .btn {
        height: 42px;
    }

    .theme-suite-v5 .brand strong {
        font-size: 0.9rem;
    }

    .theme-suite-v5 .brand small {
        font-size: 0.7rem;
    }
}

/* Suite V5 Hero Cover Gallery */
.theme-suite-v5 .hero-cover-gallery {
    border: 1px solid #1d3f67;
    border-radius: 18px;
    background:
        radial-gradient(circle at 8% 14%, rgba(59, 130, 246, 0.34), transparent 46%),
        linear-gradient(148deg, #071226 6%, #10233f 56%, #16335b 100%);
    box-shadow: 0 20px 40px rgba(3, 10, 24, 0.35);
    color: #e2e8f0;
    padding: 1.02rem;
    display: grid;
    gap: 0.86rem;
}

.theme-suite-v5 .hero-cover-gallery .hero-stage-eyebrow {
    color: rgba(226, 232, 240, 0.86);
}

.theme-suite-v5 .hero-cover-gallery h3 {
    margin: 0.38rem 0 0.42rem;
    color: #f8fafc;
    font-family: var(--font-heading);
    font-size: 1.38rem;
    letter-spacing: -0.02em;
}

.theme-suite-v5 .hero-cover-gallery .hero-stage-text {
    margin: 0;
    color: rgba(226, 232, 240, 0.78);
}

.theme-suite-v5 .hero-cover-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
    grid-template-rows: repeat(2, minmax(132px, 1fr));
    gap: 0.56rem;
}

.theme-suite-v5 .hero-cover-tile {
    position: relative;
    isolation: isolate;
    border-radius: 14px;
    border: 1px solid rgba(191, 219, 254, 0.3);
    overflow: hidden;
    min-height: 132px;
    padding: 0.72rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.62rem;
    color: #f8fafc;
    text-decoration: none;
    background: linear-gradient(138deg, #1e3a8a, #0f172a);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.theme-suite-v5 .hero-cover-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18) 8%, rgba(2, 6, 23, 0.78) 82%);
}

.theme-suite-v5 .hero-cover-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(147, 197, 253, 0.62);
    box-shadow: 0 14px 24px rgba(2, 6, 23, 0.34);
}

.theme-suite-v5 .hero-cover-tile-project {
    grid-row: 1 / span 2;
    min-height: 272px;
    background: linear-gradient(144deg, #1d4ed8, #1e3a8a 48%, #0f172a);
}

.theme-suite-v5 .hero-cover-tile-product {
    background: linear-gradient(140deg, #0f766e, #0f172a);
}

.theme-suite-v5 .hero-cover-tile-service {
    background: linear-gradient(142deg, #7c3aed, #0f172a);
}

.theme-suite-v5 .hero-cover-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-suite-v5 .hero-cover-label,
.theme-suite-v5 .hero-cover-tile strong,
.theme-suite-v5 .hero-cover-placeholder {
    position: relative;
    z-index: 2;
}

.theme-suite-v5 .hero-cover-label {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 0.56rem;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.44);
    background: rgba(2, 6, 23, 0.36);
    color: #dbeafe;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.theme-suite-v5 .hero-cover-placeholder {
    flex: 1;
    border-radius: 10px;
    border: 1px dashed rgba(191, 219, 254, 0.58);
    background: rgba(15, 23, 42, 0.34);
    display: grid;
    place-items: center;
    color: rgba(219, 234, 254, 0.9);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.theme-suite-v5 .hero-cover-tile strong {
    margin: 0;
    display: block;
    color: #f8fafc;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.26;
    text-shadow: 0 2px 10px rgba(2, 6, 23, 0.56);
}

@media (max-width: 960px) {
    .theme-suite-v5 .hero-cover-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .theme-suite-v5 .hero-cover-tile,
    .theme-suite-v5 .hero-cover-tile-project {
        min-height: 172px;
        grid-row: auto;
    }
}

/* Suite V5 Impact Band */
.theme-suite-v5 .v2-impact-band {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2.4rem;
}

.theme-suite-v5 .impact-shell {
    position: relative;
    border: 1px solid #c6d6ec;
    border-radius: 20px;
    background:
        radial-gradient(circle at 9% 12%, rgba(37, 99, 235, 0.14), transparent 42%),
        radial-gradient(circle at 84% 88%, rgba(20, 184, 166, 0.12), transparent 38%),
        linear-gradient(155deg, #f8fbff 0%, #eef4fb 100%);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
    padding: 1.1rem;
    overflow: hidden;
}

.theme-suite-v5 .impact-shell::before {
    content: '';
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    top: 84px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #bfd0e8 16%, #9eb7da 48%, #bfd0e8 84%, transparent);
    opacity: 0.76;
    pointer-events: none;
}

.theme-suite-v5 .impact-shell-head {
    display: grid;
    gap: 0.3rem;
    margin-bottom: 0.94rem;
}

.theme-suite-v5 .impact-kicker {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #385475;
}

.theme-suite-v5 .impact-shell-head h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2vw, 1.72rem);
    color: #132743;
    letter-spacing: -0.02em;
}

.theme-suite-v5 .v2-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.62rem;
    position: relative;
    z-index: 1;
}

.theme-suite-v5 .v2-impact-card {
    position: relative;
    border: 1px solid #d4e0f1;
    border-radius: 16px;
    padding: 0.8rem 0.8rem 0.76rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.95));
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.2rem;
    min-height: 138px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.theme-suite-v5 .v2-impact-card::before {
    content: '';
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    top: 0.62rem;
    height: 3px;
    border-radius: 999px;
    opacity: 0.94;
}

.theme-suite-v5 .v2-impact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 26px rgba(15, 23, 42, 0.14);
}

.theme-suite-v5 .impact-order {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    border: 1px solid #d2dded;
    background: #ffffff;
    color: #3b4f6e;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.theme-suite-v5 .v2-impact-card .counter-value {
    margin-top: 0.08rem;
    font-size: clamp(1.46rem, 2.1vw, 2rem);
    line-height: 1;
    color: #0f2a4c;
}

.theme-suite-v5 .v2-impact-card span:last-child {
    color: #465d7c;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.32;
}

.theme-suite-v5 .v2-impact-card-indigo::before {
    background: linear-gradient(90deg, #1d4ed8, #3b82f6);
}

.theme-suite-v5 .v2-impact-card-cyan::before {
    background: linear-gradient(90deg, #0f766e, #06b6d4);
}

.theme-suite-v5 .v2-impact-card-violet::before {
    background: linear-gradient(90deg, #6d28d9, #8b5cf6);
}

.theme-suite-v5 .v2-impact-card-emerald::before {
    background: linear-gradient(90deg, #047857, #10b981);
}

@media (max-width: 1100px) {
    .theme-suite-v5 .v2-impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-suite-v5 .impact-shell::before {
        top: 78px;
    }
}

@media (max-width: 720px) {
    .theme-suite-v5 .impact-shell {
        border-radius: 16px;
        padding: 0.84rem;
    }

    .theme-suite-v5 .impact-shell::before {
        display: none;
    }

    .theme-suite-v5 .v2-impact-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .theme-suite-v5 .v2-impact-card {
        min-height: 124px;
    }
}

/* Suite V5 About Solution Block */
.theme-suite-v5 .v2-about {
    padding-top: 2.4rem;
    padding-bottom: 2.6rem;
}

.theme-suite-v5 .about-solution-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 0.76rem;
    align-items: stretch;
}

.theme-suite-v5 .about-solution-head {
    position: relative;
    border: 1px solid #123760;
    border-radius: 18px;
    background:
        radial-gradient(circle at 10% 8%, rgba(14, 165, 233, 0.22), transparent 34%),
        linear-gradient(150deg, #081a31 8%, #0e2e52 50%, #173f69 100%);
    box-shadow: 0 20px 36px rgba(8, 19, 38, 0.32);
    padding: 1.04rem;
    overflow: hidden;
}

.theme-suite-v5 .about-solution-head-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.72rem;
    align-items: stretch;
}

.theme-suite-v5 .about-solution-media {
    margin: 0;
    position: relative;
    border-radius: 14px;
    border: 1px solid rgba(186, 230, 253, 0.42);
    background:
        linear-gradient(145deg, rgba(14, 165, 233, 0.32), rgba(15, 23, 42, 0.54));
    overflow: hidden;
    min-height: 220px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.theme-suite-v5 .about-solution-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.theme-suite-v5 .about-solution-media span {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: grid;
    place-items: center;
    color: #dbeafe;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.theme-suite-v5 .about-solution-copy {
    min-width: 0;
}

.theme-suite-v5 .about-solution-head .eyebrow {
    color: #bae6fd;
}

.theme-suite-v5 .about-solution-head h2 {
    color: #f8fafc;
    margin: 0.5rem 0 0.62rem;
}

.theme-suite-v5 .about-solution-head p {
    color: rgba(226, 232, 240, 0.88);
}

.theme-suite-v5 .about-solution-head .btn-secondary {
    border-color: rgba(186, 230, 253, 0.5);
    background: rgba(255, 255, 255, 0.12);
    color: #ecfeff;
}

.theme-suite-v5 .about-solution-meta {
    margin-top: 0.74rem;
}

.theme-suite-v5 .about-solution-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(186, 230, 253, 0.46);
    background: rgba(8, 19, 38, 0.42);
    color: #dbeafe;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.theme-suite-v5 .about-solution-grid {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0.56rem;
    padding-left: 0.16rem;
}

.theme-suite-v5 .about-solution-grid::before {
    content: '';
    position: absolute;
    left: 0.3rem;
    top: 0.54rem;
    bottom: 0.54rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.65), rgba(16, 185, 129, 0.58));
    opacity: 0.74;
}

.theme-suite-v5 .about-solution-card {
    position: relative;
    border: 1px solid #d2deef;
    border-radius: 16px;
    background: linear-gradient(175deg, #ffffff, #f6f9ff);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    padding: 0.92rem 0.92rem 0.9rem 1.34rem;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-areas:
        "index title"
        "text text";
    align-items: center;
    column-gap: 0.58rem;
    row-gap: 0.14rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.theme-suite-v5 .about-solution-card::before {
    content: '';
    position: absolute;
    left: 0.34rem;
    top: 1.14rem;
    width: 9px;
    height: 9px;
    border-radius: 999px;
}

.theme-suite-v5 .about-solution-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 24px rgba(15, 23, 42, 0.12);
}

.theme-suite-v5 .about-solution-card-1::before {
    background: #2563eb;
}

.theme-suite-v5 .about-solution-card-2::before {
    background: #0ea5e9;
}

.theme-suite-v5 .about-solution-card-3::before {
    background: #10b981;
}

.theme-suite-v5 .about-solution-card .feature-index {
    grid-area: index;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #c7d6eb;
    background: linear-gradient(180deg, #ffffff, #f2f7ff);
    color: #1e3a5f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.12);
}

.theme-suite-v5 .about-solution-card h3 {
    grid-area: title;
    margin: 0;
    color: #102846;
    font-family: var(--font-heading);
    font-size: 1.14rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.theme-suite-v5 .about-solution-card p {
    grid-area: text;
    margin: 0;
    padding-top: 0.2rem;
    border-top: 1px dashed #d9e3f1;
    color: #4a617f;
    line-height: 1.52;
}

@media (max-width: 960px) {
    .theme-suite-v5 .about-solution-layout {
        grid-template-columns: 1fr;
    }

    .theme-suite-v5 .about-solution-head {
        padding: 0.9rem;
    }

    .theme-suite-v5 .about-solution-media,
    .theme-suite-v5 .about-solution-media span {
        min-height: 190px;
    }

    .theme-suite-v5 .about-solution-grid {
        padding-left: 0;
    }

    .theme-suite-v5 .about-solution-grid::before {
        display: none;
    }

    .theme-suite-v5 .about-solution-card {
        padding-left: 0.92rem;
    }

    .theme-suite-v5 .about-solution-card::before {
        display: none;
    }
}

/* Suite V5 Offerings Rebuild */
.theme-suite-v5 .v2-offerings {
    position: relative;
    background:
        radial-gradient(circle at 14% -12%, rgba(59, 130, 246, 0.1), transparent 40%),
        radial-gradient(circle at 88% 16%, rgba(16, 185, 129, 0.09), transparent 35%),
        linear-gradient(180deg, #eef4fb 0%, #f4f8fd 100%);
}

.theme-suite-v5 .v2-offerings .section-head {
    margin-bottom: 0.9rem;
}

.theme-suite-v5 .v2-offerings .offer-filter-wrap {
    display: grid;
    gap: 0.8rem;
}

.theme-suite-v5 .v2-offerings .offer-filter-list {
    border-radius: 999px;
    border: 1px solid #c8d8ee;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.32rem;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.36rem;
    width: fit-content;
    max-width: 100%;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
}

.theme-suite-v5 .v2-offerings .offer-filter-chip {
    height: 34px;
    border-radius: 999px;
    border: 1px solid #d2deef;
    background: #f8fbff;
    color: #2a4568;
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    padding: 0 0.82rem;
}

.theme-suite-v5 .v2-offerings .offer-filter-chip.is-active {
    color: #f8fbff;
    border-color: rgba(37, 99, 235, 0.5);
    background: linear-gradient(120deg, #1d4ed8, #2563eb);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.28);
}

.theme-suite-v5 .v2-offerings .offerings-carousel {
    --offering-per-view: 4;
    display: grid;
    gap: 0.62rem;
}

.theme-suite-v5 .v2-offerings .offerings-carousel-viewport {
    overflow: hidden;
    border-radius: 18px;
}

.theme-suite-v5 .v2-offerings .offerings-grid-v2 {
    gap: 0.72rem;
}

.theme-suite-v5 .v2-offerings .offerings-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
    align-items: stretch;
}

.theme-suite-v5 .v2-offerings .offering-card {
    border: 1px solid #cddcf0;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-columns: minmax(180px, 42%) minmax(0, 1fr);
    align-items: stretch;
    min-height: 206px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.theme-suite-v5 .v2-offerings .offering-card:hover {
    transform: translateY(-4px);
    border-color: #9ec1e9;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
}

.theme-suite-v5 .v2-offerings [data-offering-card].is-hidden {
    display: none !important;
}

.theme-suite-v5 .v2-offerings [data-offering-card].is-paged-hidden {
    display: none !important;
}

.theme-suite-v5 .v2-offerings .offering-media-shell {
    position: relative;
    min-height: 100%;
    border-right: 1px solid #d7e4f5;
    background:
        radial-gradient(circle at 80% 14%, rgba(59, 130, 246, 0.22), transparent 44%),
        linear-gradient(145deg, #eaf2fd, #dbe9fb);
}

.theme-suite-v5 .v2-offerings .offering-media {
    width: 100%;
    height: 100%;
    min-height: 206px;
    object-fit: cover;
    display: block;
}

.theme-suite-v5 .v2-offerings .offering-media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 206px;
    display: grid;
    place-items: center;
    color: #29507a;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.theme-suite-v5 .v2-offerings .offering-media-shell .badge {
    position: absolute;
    left: 0.68rem;
    top: 0.62rem;
    z-index: 2;
    margin: 0;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.68);
    background: rgba(2, 6, 23, 0.62);
    color: #e2e8f0;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
}

.theme-suite-v5 .v2-offerings .offering-card-body {
    padding: 0.82rem 0.9rem;
    display: grid;
    gap: 0.34rem;
    align-content: center;
}

.theme-suite-v5 .v2-offerings .offering-card-body h3 {
    margin: 0;
    color: #102846;
    font-family: var(--font-heading);
    font-size: 1.14rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.theme-suite-v5 .v2-offerings .offering-card-body p {
    margin: 0;
    color: #4a617f;
    line-height: 1.5;
    min-height: 2.8em;
}

.theme-suite-v5 .v2-offerings .offering-card-body .inline-link {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 0.62rem;
    border-radius: 999px;
    border: 1px solid #c7d9f0;
    background: #f7fbff;
    color: #1d4ed8;
    text-decoration: none;
}

.theme-suite-v5 .v2-offerings .offerings-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
}

.theme-suite-v5 .v2-offerings .offerings-carousel-controls.is-hidden {
    display: none;
}

.theme-suite-v5 .v2-offerings .offerings-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #c7d9f0;
    background: #ffffff;
    color: #1e3a8a;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.theme-suite-v5 .v2-offerings .offerings-nav-btn:disabled {
    opacity: 0.42;
    cursor: not-allowed;
}

.theme-suite-v5 .v2-offerings .offerings-carousel-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.34rem;
    min-height: 32px;
}

.theme-suite-v5 .v2-offerings .offerings-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: #b9cbe3;
    padding: 0;
}

.theme-suite-v5 .v2-offerings .offerings-dot.is-active {
    width: 20px;
    background: linear-gradient(120deg, #1d4ed8, #2563eb);
}

@media (max-width: 1100px) {
    .theme-suite-v5 .v2-offerings .offerings-carousel {
        --offering-per-view: 2;
    }

    .theme-suite-v5 .v2-offerings .offerings-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-suite-v5 .v2-offerings .offering-card {
        min-height: 194px;
        grid-template-columns: minmax(160px, 40%) minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .theme-suite-v5 .v2-offerings .offerings-carousel {
        --offering-per-view: 1;
    }

    .theme-suite-v5 .v2-offerings .offerings-track {
        grid-template-columns: 1fr;
    }

    .theme-suite-v5 .v2-offerings .offering-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .theme-suite-v5 .v2-offerings .offering-media-shell {
        border-right: 0;
        border-bottom: 1px solid #d7e4f5;
    }

    .theme-suite-v5 .v2-offerings .offering-media,
    .theme-suite-v5 .v2-offerings .offering-media-placeholder {
        min-height: 176px;
    }
}

@media (max-width: 760px) {
    .theme-suite-v5 .v2-offerings .offer-filter-list {
        width: 100%;
        border-radius: 12px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.24rem;
        overflow: hidden;
    }

    .theme-suite-v5 .v2-offerings .offer-filter-chip {
        width: 100%;
        min-width: 0;
        height: 30px;
        padding: 0 0.2rem;
        font-size: 0.62rem;
        letter-spacing: 0;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .theme-suite-v5 .v2-offerings .offering-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .theme-suite-v5 .v2-offerings .offerings-track {
        grid-template-columns: 1fr;
    }

    .theme-suite-v5 .v2-offerings .offering-media-shell {
        border-right: 0;
        border-bottom: 1px solid #d7e4f5;
    }

    .theme-suite-v5 .v2-offerings .offering-media,
    .theme-suite-v5 .v2-offerings .offering-media-placeholder {
        min-height: 176px;
    }

    .theme-suite-v5 .v2-offerings .offerings-carousel-controls {
        gap: 0.36rem;
    }

    .theme-suite-v5 .v2-offerings .offerings-nav-btn {
        width: 30px;
        height: 30px;
    }
}

/* Suite V5 References Rebuild */
.theme-suite-v5 .v2-references {
    position: relative;
    background:
        radial-gradient(circle at 12% -18%, rgba(37, 99, 235, 0.3), transparent 42%),
        radial-gradient(circle at 86% 18%, rgba(20, 184, 166, 0.22), transparent 36%),
        linear-gradient(152deg, #071325 4%, #0d1f38 54%, #132b4c 100%);
}

.theme-suite-v5 .v2-references .section-head .eyebrow {
    color: #93c5fd;
}

.theme-suite-v5 .v2-references .section-head h2 {
    color: #f8fafc;
}

.theme-suite-v5 .v2-references .section-head p {
    color: #c7d4e8;
}

.theme-suite-v5 .v2-references .section-head {
    margin-bottom: 0.9rem;
}

.theme-suite-v5 .v2-references .references-carousel {
    --reference-per-view: 4;
    display: grid;
    gap: 0.64rem;
}

.theme-suite-v5 .v2-references .references-carousel-viewport {
    overflow: hidden;
    border-radius: 18px;
}

.theme-suite-v5 .v2-references .references-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
}

.theme-suite-v5 .v2-references .reference-card-home {
    border: 1px solid #2a4568;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.24), transparent 44%),
        linear-gradient(162deg, #0f2139, #162e4d);
    box-shadow: 0 14px 30px rgba(3, 9, 22, 0.36);
    display: grid;
    grid-template-columns: minmax(180px, 42%) minmax(0, 1fr);
    min-height: 208px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.theme-suite-v5 .v2-references .reference-card-home:hover {
    transform: translateY(-4px);
    border-color: #4d729f;
    box-shadow: 0 20px 34px rgba(2, 8, 23, 0.44);
}

.theme-suite-v5 .v2-references [data-home-reference-card].is-paged-hidden {
    display: none !important;
}

.theme-suite-v5 .v2-references .reference-media-shell {
    position: relative;
    min-height: 100%;
    border-right: 1px solid #345479;
    background:
        radial-gradient(circle at 82% 18%, rgba(20, 184, 166, 0.26), transparent 44%),
        linear-gradient(145deg, #133055, #0e223d);
}

.theme-suite-v5 .v2-references .reference-media {
    width: 100%;
    height: 100%;
    min-height: 208px;
    object-fit: cover;
    display: block;
}

.theme-suite-v5 .v2-references .reference-media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 208px;
    display: grid;
    place-items: center;
    color: #dbeafe;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.theme-suite-v5 .v2-references .reference-sector {
    position: absolute;
    left: 0.64rem;
    top: 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(147, 197, 253, 0.6);
    background: rgba(2, 6, 23, 0.62);
    color: #dbeafe;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.2rem 0.56rem;
}

.theme-suite-v5 .v2-references .reference-card-body {
    padding: 0.82rem 0.9rem;
    display: grid;
    gap: 0.36rem;
    align-content: center;
}

.theme-suite-v5 .v2-references .reference-card-body h3 {
    margin: 0;
    color: #e2e8f0;
    font-family: var(--font-heading);
    font-size: 1.12rem;
    letter-spacing: -0.01em;
    line-height: 1.28;
}

.theme-suite-v5 .v2-references .reference-card-body p {
    margin: 0;
    color: #c2d1e5;
    line-height: 1.5;
    min-height: 2.8em;
}

.theme-suite-v5 .v2-references .reference-card-body .inline-link {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 0.66rem;
    border-radius: 999px;
    border: 1px solid rgba(147, 197, 253, 0.5);
    background: rgba(30, 58, 138, 0.2);
    color: #bfdbfe;
    text-decoration: none;
}

.theme-suite-v5 .v2-references .references-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
}

.theme-suite-v5 .v2-references .references-carousel-controls.is-hidden {
    display: none;
}

.theme-suite-v5 .v2-references .references-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(147, 197, 253, 0.46);
    background: rgba(2, 6, 23, 0.58);
    color: #dbeafe;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(2, 6, 23, 0.34);
}

.theme-suite-v5 .v2-references .references-nav-btn:disabled {
    opacity: 0.42;
    cursor: not-allowed;
}

.theme-suite-v5 .v2-references .references-carousel-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.34rem;
    min-height: 32px;
}

.theme-suite-v5 .v2-references .references-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: #5c7aa1;
}

.theme-suite-v5 .v2-references .references-dot.is-active {
    width: 20px;
    background: linear-gradient(120deg, #2563eb, #14b8a6);
}

@media (max-width: 1100px) {
    .theme-suite-v5 .v2-references .references-carousel {
        --reference-per-view: 2;
    }

    .theme-suite-v5 .v2-references .references-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-suite-v5 .v2-references .reference-card-home {
        min-height: 194px;
        grid-template-columns: minmax(160px, 40%) minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .theme-suite-v5 .v2-references .references-carousel {
        --reference-per-view: 1;
    }

    .theme-suite-v5 .v2-references .references-track {
        grid-template-columns: 1fr;
    }

    .theme-suite-v5 .v2-references .reference-card-home {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .theme-suite-v5 .v2-references .reference-media-shell {
        border-right: 0;
        border-bottom: 1px solid #345479;
    }

    .theme-suite-v5 .v2-references .reference-media,
    .theme-suite-v5 .v2-references .reference-media-placeholder {
        min-height: 176px;
    }
}

@media (max-width: 760px) {
    .theme-suite-v5 .v2-references .references-track {
        grid-template-columns: 1fr;
    }

    .theme-suite-v5 .v2-references .reference-card-home {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .theme-suite-v5 .v2-references .reference-media-shell {
        border-right: 0;
        border-bottom: 1px solid #345479;
    }

    .theme-suite-v5 .v2-references .reference-media,
    .theme-suite-v5 .v2-references .reference-media-placeholder {
        min-height: 176px;
    }

    .theme-suite-v5 .v2-references .references-nav-btn {
        width: 30px;
        height: 30px;
    }
}

/* Suite V5 Workflow Rebuild */
.theme-suite-v5 .v2-workflow {
    position: relative;
    overflow: hidden;
    padding-top: 2.5rem;
    padding-bottom: 3.6rem;
    background:
        radial-gradient(circle at 12% -12%, rgba(37, 99, 235, 0.14), transparent 42%),
        radial-gradient(circle at 88% 18%, rgba(20, 184, 166, 0.1), transparent 36%),
        linear-gradient(180deg, #eef5fb 0%, #f8fbff 68%, #e8eff8 100%);
}

.theme-suite-v5 .v2-workflow::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    background:
        radial-gradient(circle at 12% 0, rgba(37, 99, 235, 0.24), transparent 36%),
        linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.68) 72%, #0f172a 100%);
    pointer-events: none;
}

.theme-suite-v5 .v2-workflow .workflow-shell {
    position: relative;
    z-index: 1;
    border: 1px solid #cadbef;
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0, rgba(147, 197, 253, 0.22), transparent 42%),
        linear-gradient(165deg, #ffffff, #f8fbff);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
    padding: 1rem;
}

.theme-suite-v5 .v2-workflow .workflow-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.78rem;
}

.theme-suite-v5 .v2-workflow .workflow-summary {
    border: 1px solid #d4e3f4;
    border-radius: 14px;
    background: linear-gradient(170deg, #f8fbff, #f1f7ff);
    padding: 0.72rem 0.78rem;
    display: grid;
    gap: 0.36rem;
}

.theme-suite-v5 .v2-workflow .workflow-summary-chip {
    justify-self: start;
    height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 0.58rem;
    border-radius: 999px;
    border: 1px solid #bfd7f4;
    background: #e9f3ff;
    color: #1d4ed8;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.theme-suite-v5 .v2-workflow .workflow-summary p {
    margin: 0;
    color: #486482;
    line-height: 1.5;
}

.theme-suite-v5 .v2-workflow .workflow-grid-rebuild {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.64rem;
}

.theme-suite-v5 .v2-workflow .workflow-card-rebuild {
    position: relative;
    border: 1px solid #d4e2f3;
    border-radius: 16px;
    background: linear-gradient(178deg, #ffffff, #f7fbff);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    padding: 0.8rem;
    display: grid;
    gap: 0.4rem;
    min-height: 200px;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.theme-suite-v5 .v2-workflow .workflow-card-rebuild:hover {
    transform: translateY(-3px);
    border-color: #abc8ea;
    box-shadow: 0 16px 26px rgba(15, 23, 42, 0.14);
}

.theme-suite-v5 .v2-workflow .workflow-card-rebuild::after {
    content: '';
    position: absolute;
    top: 42px;
    right: -0.38rem;
    width: 0.64rem;
    height: 2px;
    background: #b9cde6;
}

.theme-suite-v5 .v2-workflow .workflow-card-rebuild:last-child::after {
    display: none;
}

.theme-suite-v5 .v2-workflow .workflow-card-top {
    display: flex;
    align-items: center;
    gap: 0.46rem;
}

.theme-suite-v5 .v2-workflow .workflow-index {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid #c0d6f1;
    background: linear-gradient(180deg, #eef6ff, #dbeaff);
    color: #123a66;
    font-size: 0.82rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.theme-suite-v5 .v2-workflow .workflow-step-label {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 0.54rem;
    border-radius: 999px;
    border: 1px solid #d3e1f2;
    background: #f8fbff;
    color: #496689;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.theme-suite-v5 .v2-workflow .workflow-card-rebuild h3 {
    margin: 0;
    color: #102846;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.theme-suite-v5 .v2-workflow .workflow-card-rebuild p {
    margin: 0;
    color: #4a617f;
    line-height: 1.5;
}

.theme-suite-v5 .site-footer {
    margin-top: 0;
}

/* Suite V5 CTA Rebuild */
.theme-suite-v5 .v2-cta {
    padding-top: 2.2rem;
    padding-bottom: 2rem;
    background:
        radial-gradient(circle at 14% 0, rgba(37, 99, 235, 0.2), transparent 40%),
        radial-gradient(circle at 86% 18%, rgba(14, 165, 233, 0.18), transparent 36%),
        linear-gradient(150deg, #0e1f36 0%, #153055 56%, #1c4572 100%);
}

.theme-suite-v5 .v2-cta .cta-inner {
    border: 1px solid rgba(147, 197, 253, 0.34);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0, rgba(96, 165, 250, 0.24), transparent 42%),
        linear-gradient(165deg, rgba(15, 23, 42, 0.24), rgba(2, 6, 23, 0.3));
    box-shadow: 0 20px 36px rgba(2, 6, 23, 0.36);
    padding: 1.2rem;
}

.theme-suite-v5 .v2-cta .cta-inner h2 {
    color: #f8fafc;
    font-size: clamp(1.5rem, 2.6vw, 2.18rem);
    letter-spacing: -0.02em;
}

.theme-suite-v5 .v2-cta .cta-inner p {
    color: #cdd9ea;
    margin-top: 0.58rem;
}

.theme-suite-v5 .v2-cta .btn-primary {
    min-width: 188px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(147, 197, 253, 0.44);
    background: linear-gradient(120deg, #2563eb, #0ea5e9);
    color: #f8fbff;
    box-shadow: 0 14px 22px rgba(37, 99, 235, 0.34);
}

@media (max-width: 1100px) {
    .theme-suite-v5 .v2-workflow .workflow-intro {
        grid-template-columns: 1fr;
        gap: 0.56rem;
    }

    .theme-suite-v5 .v2-workflow .workflow-grid-rebuild {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-suite-v5 .v2-workflow .workflow-card-rebuild:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 760px) {
    .theme-suite-v5 .v2-workflow .workflow-shell {
        border-radius: 16px;
        padding: 0.8rem;
    }

    .theme-suite-v5 .v2-workflow .workflow-grid-rebuild {
        grid-template-columns: 1fr;
        gap: 0.52rem;
    }

    .theme-suite-v5 .v2-workflow .workflow-card-rebuild {
        min-height: 0;
    }

    .theme-suite-v5 .v2-workflow .workflow-card-rebuild::after {
        display: none;
    }

    .theme-suite-v5 .v2-cta .cta-inner {
        padding: 0.9rem;
        border-radius: 16px;
    }

    .theme-suite-v5 .v2-cta .btn-primary {
        width: 100%;
        min-width: 0;
    }
}

/* Suite V5 Footer Rebuild */
.theme-suite-v5 .site-footer {
    position: relative;
    margin-top: 0;
    padding-top: 2.4rem;
    background:
        radial-gradient(circle at 12% -18%, rgba(37, 99, 235, 0.24), transparent 40%),
        radial-gradient(circle at 88% 0, rgba(14, 165, 233, 0.2), transparent 36%),
        linear-gradient(180deg, #071122 0%, #0b172d 56%, #0d1b33 100%);
    color: #d4deea;
    overflow: hidden;
}

.theme-suite-v5 .site-footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.44), transparent);
}

.theme-suite-v5 .footer-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.96fr 1.26fr;
    gap: 0.84rem;
}

.theme-suite-v5 .footer-brand-card,
.theme-suite-v5 .footer-contact-card,
.theme-suite-v5 .footer-links-block {
    border: 1px solid rgba(100, 130, 170, 0.34);
    border-radius: 16px;
    background:
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.14), transparent 42%),
        linear-gradient(160deg, rgba(13, 30, 57, 0.88), rgba(9, 22, 44, 0.9));
    box-shadow: 0 14px 28px rgba(2, 6, 23, 0.34);
    padding: 0.94rem;
    backdrop-filter: blur(4px);
}

.theme-suite-v5 .footer-brand strong,
.theme-suite-v5 .footer-contact-card h4,
.theme-suite-v5 .footer-links-block h4 {
    color: #f8fafc;
}

.theme-suite-v5 .footer-brand small,
.theme-suite-v5 .footer-brand-note {
    color: #a9bbd4;
}

.theme-suite-v5 .footer-social-title {
    display: flex;
    align-items: center;
    gap: 0.34rem;
    color: #c2d4eb;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.theme-suite-v5 .footer-social-title::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #38bdf8;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.25);
}

.theme-suite-v5 .footer-social-list {
    display: flex;
    gap: 0.34rem;
    flex-wrap: wrap;
}

.theme-suite-v5 .footer-social-chip {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(147, 197, 253, 0.34);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.24), rgba(15, 23, 42, 0.4));
    color: #dbeafe;
    box-shadow: none;
}

.theme-suite-v5 .footer-social-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(125, 211, 252, 0.62);
}

.theme-suite-v5 .footer-contact-list li {
    border-bottom: 1px dashed rgba(96, 122, 158, 0.46);
}

.theme-suite-v5 .footer-contact-list span {
    color: #95aac8;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.theme-suite-v5 .footer-contact-list a,
.theme-suite-v5 .footer-contact-list p {
    color: #e1e9f5;
}

.theme-suite-v5 .footer-map-link {
    width: 100%;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(147, 197, 253, 0.42);
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.24), rgba(8, 47, 73, 0.3));
    color: #dbeafe;
}

.theme-suite-v5 .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
}

.theme-suite-v5 .footer-links-block ul {
    display: grid;
    gap: 0.42rem;
    padding-top: 0.56rem;
    border-top: 1px dashed rgba(96, 122, 158, 0.46);
}

.theme-suite-v5 .footer-links-block li {
    margin: 0;
}

.theme-suite-v5 .footer-links-block a {
    display: inline-flex;
    align-items: center;
    color: #dce7f7;
    text-decoration: none;
    min-height: 26px;
    border-radius: 8px;
    padding: 0 0.34rem;
}

.theme-suite-v5 .footer-links-block a:hover {
    color: #ffffff;
    background: rgba(37, 99, 235, 0.2);
}

.theme-suite-v5 .footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 0.94rem;
    border-top: 1px solid rgba(96, 122, 158, 0.42);
    color: #8fa5c3;
    font-size: 0.82rem;
}

.theme-suite-v5 .copyright-license-bar {
    border-top: 1px solid rgba(96, 122, 158, 0.34);
    background: rgba(2, 6, 23, 0.46);
}

.theme-suite-v5 .copyright-license-text,
.theme-suite-v5 .copyright-license-sub {
    color: #8ea4c2;
}

.theme-suite-v5 .copyright-license-text a {
    color: #dbeafe;
}

@media (max-width: 1100px) {
    .theme-suite-v5 .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .theme-suite-v5 .footer-links-grid {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .theme-suite-v5 .site-footer {
        padding-top: 1.8rem;
    }

    .theme-suite-v5 .footer-top {
        grid-template-columns: 1fr;
        gap: 0.62rem;
    }

    .theme-suite-v5 .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 0.58rem;
    }

    .theme-suite-v5 .footer-brand-card,
    .theme-suite-v5 .footer-contact-card,
    .theme-suite-v5 .footer-links-block {
        padding: 0.8rem;
        border-radius: 14px;
    }
}

/* Footer Heading Accents (Final Override) */
.theme-suite-v5 .footer-contact-card h4,
.theme-suite-v5 .footer-links-block h4 {
    margin: 0 0 0.68rem;
    display: flex;
    align-items: center;
    gap: 0.44rem;
}

.theme-suite-v5 .footer-contact-card h4::before,
.theme-suite-v5 .footer-links-block h4::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 3px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
}

.theme-suite-v5 .footer-contact-card h4::after,
.theme-suite-v5 .footer-links-block h4::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(147, 197, 253, 0.5), rgba(147, 197, 253, 0));
}
/* Header 2026 Ultra Reset */
.theme-suite-v5 {
    --header-glass-dark: var(--header-dark-custom, #071124);
    --header-glass-blue: var(--header-blue-custom, #12375d);
    --header-line: color-mix(in srgb, var(--header-line-custom, #94bcff) 42%, transparent);
    --header-ink: var(--header-ink-custom, #dbeafe);
    --header-ink-muted: var(--header-ink-muted-custom, #9fb5d5);
    --header-accent: var(--header-accent-custom, #3b82f6);
    --header-accent-2: var(--header-accent-2-custom, #06b6d4);
}

.theme-suite-v5 .site-header {
    position: relative !important;
    z-index: 1700 !important;
}

.theme-suite-v5 .header-top {
    position: relative !important;
    z-index: 1702 !important;
    padding: 0.34rem 0 !important;
    border-bottom: 1px solid color-mix(in srgb, var(--header-line) 90%, transparent) !important;
    background:
        radial-gradient(circle at 12% 0, color-mix(in srgb, var(--header-accent) 34%, transparent), transparent 46%),
        linear-gradient(
            112deg,
            var(--header-glass-dark),
            color-mix(in srgb, var(--header-glass-blue) 55%, var(--header-glass-dark)) 58%,
            var(--header-glass-blue)
        ) !important;
}

.theme-suite-v5 .utility-row {
    display: grid !important;
    grid-template-columns: 1fr auto auto !important;
    gap: 0.44rem !important;
    align-items: center !important;
}

.theme-suite-v5 .utility-card {
    border: 1px solid rgba(130, 159, 196, 0.4) !important;
    border-radius: 999px !important;
    background: rgba(6, 18, 36, 0.52) !important;
    box-shadow: inset 0 0 0 1px rgba(191, 219, 254, 0.08) !important;
    padding: 0.18rem !important;
}

.theme-suite-v5 .utility-list {
    display: flex !important;
    align-items: center !important;
    gap: 0.24rem !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
}

.theme-suite-v5 .utility-list::-webkit-scrollbar {
    display: none !important;
}

.theme-suite-v5 .quick-link-chip,
.theme-suite-v5 .quick-link-chip.quick-link-variant-1,
.theme-suite-v5 .quick-link-chip.quick-link-variant-2,
.theme-suite-v5 .quick-link-chip.quick-link-variant-3,
.theme-suite-v5 .quick-link-chip.quick-link-variant-4,
.theme-suite-v5 .quick-link-chip.quick-link-variant-5,
.theme-suite-v5 .quick-link-chip.quick-link-variant-6,
.theme-suite-v5 .quick-link-chip.is-phone,
.theme-suite-v5 .quick-link-chip.is-whatsapp {
    position: relative !important;
    height: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--header-ink) !important;
    font-size: 0.67rem !important;
    font-weight: 700 !important;
    padding: 0.24rem 0.52rem !important;
    letter-spacing: 0.012em !important;
    line-height: 1 !important;
}

.theme-suite-v5 .quick-link-chip:hover {
    background: transparent !important;
    border-color: transparent !important;
    color: #ffffff !important;
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.42) !important;
    transform: translateY(-1px) !important;
}

.theme-suite-v5 .utility-links .quick-link-chip:not(:last-child)::after {
    content: '' !important;
    position: absolute !important;
    right: -0.08rem !important;
    top: 50% !important;
    width: 1px !important;
    height: 14px !important;
    transform: translateY(-50%) !important;
    background: linear-gradient(180deg, rgba(147, 181, 229, 0), rgba(147, 181, 229, 0.78), rgba(147, 181, 229, 0)) !important;
}

.theme-suite-v5 .social-list {
    gap: 0.12rem !important;
}

.theme-suite-v5 .utility-actions,
.theme-suite-v5 .utility-social,
.theme-suite-v5 .utility-languages {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.theme-suite-v5 .social-chip {
    width: 30px !important;
    height: 30px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--header-ink) !important;
    opacity: 0.9 !important;
}

.theme-suite-v5 .social-chip:hover {
    opacity: 1 !important;
    transform: translateY(-1px) !important;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5)) !important;
}

.theme-suite-v5 .social-chip svg {
    width: 19px !important;
    height: 19px !important;
}

.theme-suite-v5 .lang-dropdown-toggle {
    height: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0.12rem 0.1rem !important;
    color: var(--header-ink) !important;
}

.theme-suite-v5 .lang-dropdown-toggle:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.42) !important;
}

.theme-suite-v5 .lang-dropdown-toggle img {
    border: 0 !important;
    box-shadow: none !important;
}

.theme-suite-v5 .lang-dropdown-toggle span {
    font-size: 0.74rem !important;
    font-weight: 700 !important;
}

.theme-suite-v5 .lang-dropdown-toggle svg {
    width: 14px !important;
    height: 14px !important;
}

.theme-suite-v5 .header-nav {
    position: sticky !important;
    top: 0 !important;
    z-index: 2800 !important;
    padding: 0.5rem 0 0.42rem !important;
    border-bottom: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.theme-suite-v5 .nav-wrap {
    position: relative !important;
    min-height: 82px !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.74rem !important;
    border: 1px solid var(--header-line) !important;
    border-radius: 24px !important;
    background:
        radial-gradient(circle at 10% 0, rgba(8, 145, 178, 0.2), transparent 42%),
        radial-gradient(circle at 100% 10%, rgba(59, 130, 246, 0.28), transparent 46%),
        linear-gradient(130deg, var(--header-glass-dark), var(--header-glass-blue)) !important;
    box-shadow:
        0 22px 42px rgba(2, 6, 23, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(16px) saturate(125%) !important;
    padding: 0.56rem 0.72rem !important;
    overflow: visible !important;
}

.theme-suite-v5 .nav-wrap::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.12), transparent) !important;
    transform: translateX(-120%) !important;
    animation: headerShine 8.4s linear infinite !important;
    pointer-events: none !important;
    z-index: 0 !important;
    border-radius: inherit !important;
}

.theme-suite-v5 .brand {
    position: relative !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.64rem !important;
    padding-right: 0.2rem !important;
    text-decoration: none !important;
}

.theme-suite-v5 .brand-logo,
.theme-suite-v5 .brand-mark {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    box-shadow:
        0 14px 28px rgba(37, 99, 235, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.theme-suite-v5 .brand-mark {
    background: linear-gradient(145deg, var(--header-accent), var(--header-accent-2)) !important;
}

.theme-suite-v5 .brand strong {
    color: #f8fbff !important;
    font-size: 1.05rem !important;
    letter-spacing: -0.01em !important;
}

.theme-suite-v5 .brand small {
    color: var(--header-ink-muted) !important;
    font-size: 0.74rem !important;
}

.theme-suite-v5 .site-nav {
    position: relative !important;
    z-index: 2 !important;
    margin-left: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.28rem !important;
    border: 1px solid rgba(145, 179, 227, 0.46) !important;
    border-radius: 18px !important;
    padding: 0.28rem !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 0 0 1px rgba(219, 234, 254, 0.08) !important;
}

.theme-suite-v5 .site-nav a {
    position: relative !important;
    height: 44px !important;
    border-radius: 13px !important;
    padding: 0 0.9rem !important;
    color: var(--header-ink) !important;
    font-size: 0.81rem !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease !important;
}

.theme-suite-v5 .site-nav a .nav-link-icon {
    width: 22px !important;
    height: 22px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(219, 234, 254, 0.14) !important;
    color: var(--header-ink) !important;
    transition: background 0.22s ease, color 0.22s ease !important;
}

.theme-suite-v5 .site-nav a .nav-link-icon svg {
    width: 12px !important;
    height: 12px !important;
}

.theme-suite-v5 .site-nav a .nav-link-spark {
    width: 6px !important;
    height: 6px !important;
    border-radius: 999px !important;
    background: rgba(125, 211, 252, 0) !important;
    transition: background 0.22s ease, box-shadow 0.22s ease !important;
}

.theme-suite-v5 .site-nav a:hover,
.theme-suite-v5 .site-nav a.is-active {
    background: linear-gradient(
        125deg,
        var(--header-accent),
        color-mix(in srgb, var(--header-accent) 55%, var(--v5-brand)) 60%,
        var(--header-accent-2)
    ) !important;
    color: #f8fbff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.32) !important;
}

.theme-suite-v5 .site-nav a:hover .nav-link-icon,
.theme-suite-v5 .site-nav a.is-active .nav-link-icon {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #f8fbff !important;
}

.theme-suite-v5 .site-nav a:hover .nav-link-spark,
.theme-suite-v5 .site-nav a.is-active .nav-link-spark {
    background: #67e8f9 !important;
    box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.2) !important;
}

.theme-suite-v5 .menu-toggle {
    display: none !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(157, 188, 231, 0.5) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #f8fbff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
    position: relative !important;
    z-index: 3 !important;
}

.theme-suite-v5 .menu-toggle-box {
    width: 18px !important;
    height: 14px !important;
}

.theme-suite-v5 .menu-toggle-box span {
    background: currentColor !important;
    border-radius: 999px !important;
    height: 2px !important;
}

.theme-suite-v5 .menu-toggle.is-open {
    background: linear-gradient(135deg, var(--header-accent), var(--header-accent-2)) !important;
    border-color: rgba(125, 211, 252, 0.78) !important;
}

@media (max-width: 960px) {
    body.nav-open {
        overflow: hidden !important;
    }

    .theme-suite-v5 .site-header::after {
        content: '' !important;
        position: fixed !important;
        inset: 0 !important;
        z-index: 2850 !important;
        background: rgba(2, 10, 24, 0.66) !important;
        backdrop-filter: blur(3px) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.24s ease !important;
        display: block !important;
    }

    body.nav-open .theme-suite-v5 .site-header::after {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .theme-suite-v5 .header-top {
        padding: 0.3rem 0 !important;
    }

    .theme-suite-v5 .utility-row {
        grid-template-columns: 1fr auto auto !important;
        gap: 0.3rem !important;
    }

    .theme-suite-v5 .utility-actions {
        display: inline-flex !important;
        align-items: center !important;
        margin-left: 0.06rem !important;
        gap: 0.02rem !important;
    }

    .theme-suite-v5 .social-chip {
        width: 24px !important;
        height: 24px !important;
        opacity: 0.95 !important;
    }

    .theme-suite-v5 .social-chip svg {
        width: 15px !important;
        height: 15px !important;
    }

    .theme-suite-v5 .utility-languages {
        position: relative !important;
        z-index: 2990 !important;
    }

    .theme-suite-v5 .header-nav {
        top: 0 !important;
        padding: 0.42rem 0 0.34rem !important;
    }

    .theme-suite-v5 .nav-wrap {
        min-height: 72px !important;
        border-radius: 18px !important;
        padding: 0.46rem 0.52rem !important;
    }

    .theme-suite-v5 .menu-toggle {
        display: inline-flex !important;
        margin-left: auto !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .theme-suite-v5 .site-nav {
        position: fixed !important;
        top: 82px !important;
        right: 0.62rem !important;
        left: auto !important;
        z-index: 2960 !important;
        width: min(88vw, 360px) !important;
        height: calc(100vh - 92px) !important;
        max-height: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.44rem !important;
        border-radius: 20px !important;
        border: 1px solid rgba(146, 177, 218, 0.56) !important;
        background:
            radial-gradient(circle at 100% 0, rgba(56, 189, 248, 0.2), transparent 46%),
            linear-gradient(145deg, rgba(6, 18, 36, 0.97), rgba(10, 33, 61, 0.97)) !important;
        box-shadow: 0 30px 44px rgba(2, 6, 23, 0.5) !important;
        padding: 0.8rem !important;
        overflow-y: auto !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateX(calc(100% + 1.2rem)) !important;
        transition: transform 0.28s ease, opacity 0.22s ease, visibility 0.22s ease !important;
    }

    .theme-suite-v5 .lang-dropdown-menu {
        position: fixed !important;
        top: 38px !important;
        right: 0.5rem !important;
        z-index: 2970 !important;
    }

    .theme-suite-v5 .utility-languages.is-open .lang-dropdown-menu {
        display: inline-flex !important;
    }

    .theme-suite-v5 .site-nav.open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    .theme-suite-v5 .site-nav a {
        width: 100% !important;
        height: 50px !important;
        border-radius: 13px !important;
        justify-content: flex-start !important;
        padding: 0 0.78rem !important;
        background: rgba(255, 255, 255, 0.07) !important;
        color: #e2edff !important;
        box-shadow: inset 0 0 0 1px rgba(157, 188, 231, 0.26) !important;
    }

    .theme-suite-v5 .site-nav a .nav-link-icon {
        width: 25px !important;
        height: 25px !important;
    }

    .theme-suite-v5 .site-nav a .nav-link-spark {
        margin-left: auto !important;
    }
}

@media (max-width: 720px) {
    .theme-suite-v5 .nav-wrap {
        min-height: 68px !important;
        border-radius: 16px !important;
    }

    .theme-suite-v5 .brand strong {
        font-size: 0.98rem !important;
    }

    .theme-suite-v5 .brand small {
        display: none !important;
    }

    .theme-suite-v5 .site-nav {
        top: 76px !important;
        right: 0.5rem !important;
        width: calc(100vw - 1rem) !important;
        height: calc(100vh - 84px) !important;
    }

    .theme-suite-v5 .lang-dropdown-menu {
        top: 34px !important;
        right: 0.42rem !important;
    }

    .theme-suite-v5 .quick-link-chip,
    .theme-suite-v5 .quick-link-chip.quick-link-variant-1,
    .theme-suite-v5 .quick-link-chip.quick-link-variant-2,
    .theme-suite-v5 .quick-link-chip.quick-link-variant-3,
    .theme-suite-v5 .quick-link-chip.quick-link-variant-4,
    .theme-suite-v5 .quick-link-chip.quick-link-variant-5,
    .theme-suite-v5 .quick-link-chip.quick-link-variant-6,
    .theme-suite-v5 .quick-link-chip.is-phone,
    .theme-suite-v5 .quick-link-chip.is-whatsapp {
        height: auto !important;
        font-size: 0.62rem !important;
        padding: 0.2rem 0.42rem !important;
    }
}

/* Suite V5 Home Mobile Vertical Rhythm */
@media (max-width: 960px) {
    .theme-suite-v5 {
        --v5-home-block-space: 1rem;
    }

    .theme-suite-v5 .home-hero,
    .theme-suite-v5 .home-section {
        padding-top: var(--v5-home-block-space) !important;
        padding-bottom: var(--v5-home-block-space) !important;
    }

    .theme-suite-v5 .home-section-cta {
        margin-top: 0 !important;
    }

    .theme-suite-v5 .home-section .section-head,
    .theme-suite-v5 .home-hero .section-head {
        margin-bottom: 0.62rem !important;
    }

    .theme-suite-v5 .home-section-references {
        padding-top: 0.72rem !important;
    }

    .theme-suite-v5 .home-section-references .section-head {
        margin-bottom: 0.46rem !important;
    }
}

@media (max-width: 720px) {
    .theme-suite-v5 {
        --v5-home-block-space: 0.72rem;
    }

    .theme-suite-v5 .home-hero,
    .theme-suite-v5 .home-section {
        padding-top: var(--v5-home-block-space) !important;
        padding-bottom: var(--v5-home-block-space) !important;
    }
}

/* Suite V5 Hero Mobile Compact */
@media (max-width: 960px) {
    .theme-suite-v5 .home-hero .hero-main {
        padding: 0.82rem !important;
        border-radius: 16px !important;
    }

    .theme-suite-v5 .home-hero .eyebrow {
        margin-bottom: 0.18rem !important;
    }

    .theme-suite-v5 .home-hero .hero-kicker {
        margin-top: 0.28rem !important;
        height: 26px !important;
        padding: 0 0.58rem !important;
        font-size: 0.72rem !important;
    }

    .theme-suite-v5 .home-hero h1 {
        margin: 0.42rem 0 0.56rem !important;
        font-size: clamp(1.86rem, 6.4vw, 2.22rem) !important;
        line-height: 1.14 !important;
    }

    .theme-suite-v5 .home-hero .hero-lead {
        margin: 0 !important;
        font-size: 0.92rem !important;
        line-height: 1.44 !important;
    }

    .theme-suite-v5 .home-hero .hero-actions {
        margin-top: 0.62rem !important;
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(138px, 1fr)) !important;
        gap: 0.42rem !important;
    }

    .theme-suite-v5 .home-hero .hero-actions .btn {
        width: 100% !important;
        min-width: 0 !important;
        height: 40px !important;
        padding-inline: 0.48rem !important;
    }

    .theme-suite-v5 .home-hero .hero-metric-list {
        margin-top: 0.62rem !important;
        grid-template-columns: repeat(auto-fit, minmax(126px, 1fr)) !important;
        gap: 0.4rem !important;
    }

    .theme-suite-v5 .home-hero .hero-metric {
        min-height: 0 !important;
        padding: 0.46rem 0.52rem !important;
        gap: 0.08rem !important;
    }

    .theme-suite-v5 .home-hero .hero-metric .counter-value {
        font-size: 1.02rem !important;
    }

    .theme-suite-v5 .home-hero .hero-metric span {
        font-size: 0.8rem !important;
        line-height: 1.24 !important;
    }

    .theme-suite-v5 .home-hero .hero-trust-row {
        margin-top: 0.58rem !important;
        gap: 0.3rem !important;
    }
}

@media (max-width: 420px) {
    .theme-suite-v5 .home-hero .hero-actions {
        grid-template-columns: 1fr 1fr !important;
    }

    .theme-suite-v5 .home-hero .hero-actions .btn {
        height: 38px !important;
        font-size: 0.9rem !important;
    }
}

@keyframes headerShine {
    0% {
        transform: translateX(-120%);
    }
    40% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(120%);
    }
}

/* Header Language Menu Layer Fix */
.theme-suite-v5 .header-top {
    overflow: visible !important;
}

.theme-suite-v5 .utility-languages {
    position: relative !important;
    z-index: 3600 !important;
    isolation: isolate !important;
}

.theme-suite-v5 .lang-dropdown-menu {
    z-index: 3610 !important;
}

@media (max-width: 960px) {
    .theme-suite-v5 .lang-dropdown-menu {
        position: fixed !important;
        top: 42px !important;
        right: 0.5rem !important;
        z-index: 3700 !important;
    }
}

/* Header Language Menu Definitive Portal Layer */
.theme-suite-v5 .lang-dropdown-menu.lang-menu-portal {
    position: fixed !important;
    display: none !important;
    align-items: center !important;
    gap: 0.3rem !important;
    padding: 0.38rem !important;
    border: 1px solid #c8d8ec !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.24) !important;
    z-index: 5200 !important;
    left: 0 !important;
    top: 0 !important;
    right: auto !important;
}

.theme-suite-v5 .lang-dropdown-menu.lang-menu-portal.is-open {
    display: inline-flex !important;
}

/* Contact Page V2 */
.theme-suite-v5 .contact-pro-section {
    padding-top: 1rem;
    padding-bottom: 1.2rem;
}

.theme-suite-v5 .contact-pro-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1rem;
    align-items: start;
}

.theme-suite-v5 .contact-pro-aside {
    display: grid;
    gap: 0.8rem;
}

.theme-suite-v5 .contact-info-card,
.theme-suite-v5 .contact-social-card,
.theme-suite-v5 .contact-form-panel,
.theme-suite-v5 .contact-map-wrap {
    border: 1px solid #c6daef;
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.12), transparent 38%),
        radial-gradient(circle at 8% 100%, rgba(20, 184, 166, 0.08), transparent 40%),
        linear-gradient(165deg, #f9fcff 0%, #f0f6fe 56%, #eaf2fc 100%);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.theme-suite-v5 .contact-info-card,
.theme-suite-v5 .contact-social-card,
.theme-suite-v5 .contact-form-panel {
    padding: 1rem;
}

.theme-suite-v5 .contact-info-card h2,
.theme-suite-v5 .contact-form-panel h2 {
    margin: 0;
    color: #0f2340;
}

.theme-suite-v5 .contact-info-card h2 {
    font-size: 1.16rem;
}

.theme-suite-v5 .contact-form-panel h2 {
    font-size: 1.3rem;
}

.theme-suite-v5 .contact-info-card > p,
.theme-suite-v5 .contact-form-panel > p {
    margin: 0.45rem 0 0;
    color: #49617c;
    font-size: 0.92rem;
    line-height: 1.5;
}

.theme-suite-v5 .contact-channel-list {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.55rem;
}

.theme-suite-v5 .contact-channel-item {
    min-height: 64px;
    border: 1px solid #c8dbef;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f6faff);
    padding: 0.62rem 0.68rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.58rem;
    align-items: center;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.theme-suite-v5 .contact-channel-item:hover {
    transform: translateY(-2px);
    border-color: #b7d2ea;
    box-shadow: 0 12px 20px rgba(16, 33, 54, 0.09);
}

.theme-suite-v5 .contact-channel-item.is-static:hover {
    transform: none;
}

.theme-suite-v5 .contact-channel-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid #bfd6ec;
    background: linear-gradient(160deg, #1d4ed8, #1f8cc8);
    color: #eef7ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme-suite-v5 .contact-channel-icon svg {
    width: 19px;
    height: 19px;
}

.theme-suite-v5 .contact-channel-item strong {
    display: block;
    color: #112b4b;
    font-size: 0.92rem;
}

.theme-suite-v5 .contact-channel-item small {
    display: block;
    margin-top: 0.1rem;
    color: #4a6582;
    font-size: 0.8rem;
    line-height: 1.45;
}

.theme-suite-v5 .contact-social-card h3 {
    margin: 0;
    color: #142f50;
    font-size: 1rem;
}

.theme-suite-v5 .contact-social-grid {
    margin-top: 0.66rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.52rem;
}

.theme-suite-v5 .contact-social-item {
    min-height: 60px;
    border: 1px solid #c7daee;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    padding: 0.48rem 0.55rem;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0.45rem;
    align-items: center;
}

.theme-suite-v5 .contact-social-item:hover {
    border-color: #b6d0e9;
    box-shadow: 0 10px 18px rgba(15, 27, 46, 0.08);
}

.theme-suite-v5 .contact-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    border: 1px solid #cadbf0;
    background: linear-gradient(150deg, #ffffff, #eef4ff);
    color: #193e6d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme-suite-v5 .contact-social-icon svg {
    width: 18px;
    height: 18px;
}

.theme-suite-v5 .contact-social-meta strong {
    display: block;
    color: #142f4f;
    font-size: 0.84rem;
    line-height: 1.2;
}

.theme-suite-v5 .contact-social-meta small {
    display: block;
    margin-top: 0.08rem;
    color: #4f6983;
    font-size: 0.74rem;
    line-height: 1.3;
    word-break: break-all;
}

.theme-suite-v5 .contact-form-panel .contact-form-pro {
    margin-top: 0.84rem;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
}

.theme-suite-v5 .contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.58rem;
}

.theme-suite-v5 .contact-form-pro label {
    margin-bottom: 0.62rem;
    color: #163153;
    font-size: 0.87rem;
}

.theme-suite-v5 .contact-form-pro textarea {
    resize: vertical;
    min-height: 140px;
}

.theme-suite-v5 .contact-form-pro .btn {
    min-width: 180px;
}

.theme-suite-v5 .contact-map-section {
    padding-top: 0.6rem;
    padding-bottom: 2.2rem;
}

.theme-suite-v5 .contact-map-wrap {
    padding: 1rem;
}

.theme-suite-v5 .contact-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.theme-suite-v5 .contact-map-head h2 {
    margin: 0.22rem 0 0;
    color: #10284a;
    font-size: clamp(1.26rem, 2.5vw, 1.65rem);
}

.theme-suite-v5 .contact-map-head .btn {
    height: 40px;
    border-radius: 12px;
    padding-inline: 0.8rem;
    white-space: nowrap;
}

.theme-suite-v5 .contact-map-stage {
    margin-top: 0.8rem;
    border-radius: 16px;
    border: 1px solid #c4d9ef;
    overflow: hidden;
    min-height: 320px;
    background: linear-gradient(180deg, #eaf2fc, #dce9f7);
}

.theme-suite-v5 .contact-map-stage iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

.theme-suite-v5 .contact-map-placeholder {
    min-height: 320px;
    padding: 1rem;
    display: grid;
    place-content: center;
    text-align: center;
    gap: 0.4rem;
}

.theme-suite-v5 .contact-map-placeholder strong {
    color: #17355a;
}

.theme-suite-v5 .contact-map-placeholder p {
    margin: 0;
    color: #4a6581;
    max-width: 52ch;
}

@media (max-width: 1020px) {
    .theme-suite-v5 .contact-pro-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .theme-suite-v5 .contact-pro-section {
        padding-top: 0.8rem;
        padding-bottom: 0.9rem;
    }

    .theme-suite-v5 .contact-info-card,
    .theme-suite-v5 .contact-social-card,
    .theme-suite-v5 .contact-form-panel,
    .theme-suite-v5 .contact-map-wrap {
        padding: 0.82rem;
        border-radius: 16px;
    }

    .theme-suite-v5 .contact-form-grid,
    .theme-suite-v5 .contact-social-grid {
        grid-template-columns: 1fr;
    }

    .theme-suite-v5 .contact-map-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .theme-suite-v5 .contact-map-head .btn {
        width: 100%;
    }

    .theme-suite-v5 .contact-map-stage {
        min-height: 240px;
    }

    .theme-suite-v5 .contact-map-stage iframe {
        height: 260px;
    }

    .theme-suite-v5 .contact-map-placeholder {
        min-height: 240px;
        padding: 0.8rem;
    }
}

/* Reference Detail V3 */
.theme-suite-v5 .reference-v3-hero {
    padding-top: 2.4rem;
    padding-bottom: 1.2rem;
}

.theme-suite-v5 .reference-v3-hero-shell {
    border: 1px solid #1f5575;
    border-radius: 26px;
    padding: 1.2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    gap: 0.92rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 0 0, rgba(45, 212, 191, 0.26), transparent 30%),
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.26), transparent 42%),
        linear-gradient(145deg, #081a34 0%, #102c4b 55%, #164265 100%);
    box-shadow: 0 26px 44px rgba(2, 10, 24, 0.42);
}

.theme-suite-v5 .reference-v3-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.42rem;
    font-size: 0.75rem;
    color: #c3d7eb;
    margin-bottom: 0.78rem;
}

.theme-suite-v5 .reference-v3-breadcrumb a {
    color: #d3e7fb;
}

.theme-suite-v5 .reference-v3-breadcrumb strong {
    color: #ffffff;
    font-weight: 700;
}

.theme-suite-v5 .reference-v3-hero-content .eyebrow {
    margin: 0;
    color: #68e5ff;
}

.theme-suite-v5 .reference-v3-hero-content h1 {
    margin: 0.36rem 0 0.6rem;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #f5fbff;
}

.theme-suite-v5 .reference-v3-summary {
    margin: 0;
    max-width: 68ch;
    color: #c4d8ea;
    font-size: 1rem;
    line-height: 1.58;
}

.theme-suite-v5 .reference-v3-tags {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.theme-suite-v5 .reference-v3-tags span {
    min-height: 30px;
    padding: 0 0.66rem;
    border-radius: 999px;
    border: 1px solid rgba(171, 204, 230, 0.38);
    background: rgba(255, 255, 255, 0.08);
    color: #e3f2ff;
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.theme-suite-v5 .reference-v3-actions {
    margin-top: 0.86rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.52rem;
}

.theme-suite-v5 .reference-v3-actions .btn {
    height: 40px;
    border-radius: 12px;
    padding-inline: 0.82rem;
}

.theme-suite-v5 .reference-v3-actions .btn.btn-ghost {
    border-color: rgba(188, 214, 235, 0.48);
    color: #eaf5ff;
    background: rgba(255, 255, 255, 0.06);
}

.theme-suite-v5 .reference-v3-actions .btn.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.theme-suite-v5 .reference-v3-kpis {
    margin-top: 0.92rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.46rem;
}

.theme-suite-v5 .reference-v3-kpis article {
    border: 1px solid rgba(173, 205, 229, 0.34);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.56rem 0.6rem;
    display: grid;
    gap: 0.08rem;
}

.theme-suite-v5 .reference-v3-kpis strong {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1;
}

.theme-suite-v5 .reference-v3-kpis span {
    color: #b7cfe4;
    font-size: 0.74rem;
    font-weight: 700;
}

.theme-suite-v5 .reference-v3-hero-visual {
    border-radius: 20px;
    border: 1px solid rgba(171, 207, 235, 0.36);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    overflow: hidden;
    min-height: 100%;
}

.theme-suite-v5 .reference-v3-hero-visual img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.theme-suite-v5 .reference-v3-hero-placeholder {
    height: 100%;
    min-height: 260px;
    display: grid;
    place-content: center;
    color: #d7ecff;
    font-size: 1.06rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.theme-suite-v5 .reference-v3-main {
    padding-top: 0.7rem;
    padding-bottom: 1.1rem;
}

.theme-suite-v5 .reference-v3-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.82fr);
    gap: 0.92rem;
    align-items: start;
}

.theme-suite-v5 .reference-v3-content-card,
.theme-suite-v5 .reference-v3-side-card {
    border: 1px solid #c8dced;
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.1), transparent 40%),
        radial-gradient(circle at 0 100%, rgba(20, 184, 166, 0.08), transparent 38%),
        linear-gradient(160deg, #ffffff 0%, #f6faff 58%, #eef5fe 100%);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.theme-suite-v5 .reference-v3-content-card {
    padding: 1.08rem;
}

.theme-suite-v5 .reference-v3-card-head {
    margin-bottom: 0.75rem;
}

.theme-suite-v5 .reference-v3-card-head .eyebrow {
    margin: 0;
    color: #1f4f84;
}

.theme-suite-v5 .reference-v3-card-head h2 {
    margin: 0.22rem 0 0;
    color: #112a49;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.theme-suite-v5 .reference-v3-rich-text,
.theme-suite-v5 .reference-v3-fallback {
    color: #2a4563;
    line-height: 1.74;
}

.theme-suite-v5 .reference-v3-rich-text h2,
.theme-suite-v5 .reference-v3-rich-text h3,
.theme-suite-v5 .reference-v3-rich-text h4 {
    color: #12345a;
    margin: 0.9rem 0 0.52rem;
}

.theme-suite-v5 .reference-v3-rich-text p,
.theme-suite-v5 .reference-v3-rich-text li {
    color: #2c4968;
}

.theme-suite-v5 .reference-v3-side {
    display: grid;
    gap: 0.74rem;
    position: sticky;
    top: 118px;
}

.theme-suite-v5 .reference-v3-side-card {
    padding: 0.92rem;
}

.theme-suite-v5 .reference-v3-side-card h3 {
    margin: 0;
    color: #133258;
    font-size: 1.06rem;
}

.theme-suite-v5 .reference-v3-side-card.is-info ul {
    list-style: none;
    margin: 0.72rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.theme-suite-v5 .reference-v3-side-card.is-info li {
    border: 1px solid #d4e3f1;
    border-radius: 13px;
    background: #f9fcff;
    padding: 0.5rem 0.58rem;
    display: grid;
    gap: 0.1rem;
}

.theme-suite-v5 .reference-v3-side-card.is-info li span {
    color: #5a748f;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.theme-suite-v5 .reference-v3-side-card.is-info li strong {
    color: #173a61;
    font-size: 0.9rem;
}

.theme-suite-v5 .reference-v3-side-card.is-cta {
    border-color: #194f77;
    background:
        radial-gradient(circle at 100% 0, rgba(45, 212, 191, 0.22), transparent 40%),
        linear-gradient(150deg, #0c2d4a 0%, #154164 60%, #1a5574 100%);
}

.theme-suite-v5 .reference-v3-side-card.is-cta h3,
.theme-suite-v5 .reference-v3-side-card.is-cta p {
    color: #e8f4ff;
}

.theme-suite-v5 .reference-v3-side-card.is-cta p {
    margin: 0.55rem 0 0.78rem;
    line-height: 1.6;
}

.theme-suite-v5 .reference-v3-side-card.is-cta .btn {
    width: 100%;
    justify-content: center;
    height: 42px;
    border-radius: 12px;
}

.theme-suite-v5 .reference-v3-gallery-section {
    padding-top: 0.7rem;
    padding-bottom: 1.4rem;
}

.theme-suite-v5 .reference-v3-section-head {
    margin-bottom: 0.72rem;
}

.theme-suite-v5 .reference-v3-section-head .eyebrow {
    margin: 0;
    color: #1f4f84;
}

.theme-suite-v5 .reference-v3-section-head h2 {
    margin: 0.24rem 0 0;
    color: #122f51;
    font-size: clamp(1.3rem, 2.3vw, 1.76rem);
}

.theme-suite-v5 .reference-v3-gallery-panel {
    border-radius: 22px;
    border-color: #bdd4e7;
    background:
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.14), transparent 42%),
        linear-gradient(170deg, #f9fcff 0%, #f0f7ff 56%, #e8f1fc 100%);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.theme-suite-v5 .reference-v3-gallery-panel .reference-gallery-stage-media {
    border-radius: 16px;
    border-color: #c9ddef;
}

.theme-suite-v5 .reference-v3-gallery-panel .reference-gallery-stage-media figcaption {
    color: #214969;
    font-weight: 600;
}

.theme-suite-v5 .reference-v3-gallery-panel .reference-gallery-thumb {
    border-color: #c7daec;
}

.theme-suite-v5 .reference-v3-gallery-panel .reference-gallery-thumb.is-active {
    border-color: #1d4ed8;
    background: linear-gradient(180deg, #eef4ff, #f7fbff);
    box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.16);
}

.theme-suite-v5 .reference-v3-related-section {
    padding-top: 0.7rem;
    padding-bottom: 2.2rem;
}

.theme-suite-v5 .reference-v3-slider-wrap {
    margin-top: 0.5rem;
}

.theme-suite-v5 .reference-v3-slide {
    border: 1px solid #c9daec;
    border-radius: 16px;
    background: linear-gradient(170deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    padding: 0;
    display: grid;
    min-height: 100%;
}

.theme-suite-v5 .reference-v3-slide-media {
    display: block;
    border-bottom: 1px solid #d4e4f2;
    background: linear-gradient(145deg, #e9f2fe, #dbe7f7);
}

.theme-suite-v5 .reference-v3-slide .card-media {
    margin: 0;
    border-radius: 0;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.theme-suite-v5 .reference-v3-slide-placeholder {
    min-height: 150px;
    display: grid;
    place-content: center;
    color: #2a4f75;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.theme-suite-v5 .reference-v3-slide-body {
    padding: 0.72rem;
    display: grid;
    gap: 0.34rem;
}

.theme-suite-v5 .reference-v3-slide-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
}

.theme-suite-v5 .reference-v3-slide-order {
    min-width: 34px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #bed1e5;
    background: #edf5ff;
    color: #1f4d80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

.theme-suite-v5 .reference-v3-slide-sector {
    min-height: 24px;
    border-radius: 999px;
    border: 1px solid #c6d8ea;
    background: #f8fbff;
    color: #35587d;
    padding: 0 0.52rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

.theme-suite-v5 .reference-v3-slide h3 {
    margin: 0;
    color: #132f52;
    font-size: 0.96rem;
    line-height: 1.3;
}

.theme-suite-v5 .reference-v3-slide p {
    margin: 0;
    color: #425f7e;
    font-size: 0.82rem;
    line-height: 1.46;
}

.theme-suite-v5 .reference-v3-slide .inline-link {
    margin-top: 0.2rem;
    color: #1d4ed8;
    font-size: 0.8rem;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .theme-suite-v5 .reference-v3-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-suite-v5 .reference-v3-kpis article:last-child {
        grid-column: 1 / -1;
    }

    .theme-suite-v5 .reference-v3-main-grid {
        grid-template-columns: 1fr;
    }

    .theme-suite-v5 .reference-v3-side {
        position: static;
    }
}

@media (max-width: 860px) {
    .theme-suite-v5 .reference-v3-hero {
        padding-top: 1.8rem;
        padding-bottom: 0.9rem;
    }

    .theme-suite-v5 .reference-v3-hero-shell {
        grid-template-columns: 1fr;
        padding: 0.86rem;
        border-radius: 18px;
    }

    .theme-suite-v5 .reference-v3-hero-visual img {
        max-height: 280px;
    }

    .theme-suite-v5 .reference-v3-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.42rem;
    }

    .theme-suite-v5 .reference-v3-actions .btn {
        width: 100%;
        min-width: 0;
        padding-inline: 0.5rem;
    }
}

@media (max-width: 680px) {
    .theme-suite-v5 .reference-v3-breadcrumb {
        font-size: 0.7rem;
    }

    .theme-suite-v5 .reference-v3-summary {
        font-size: 0.92rem;
    }

    .theme-suite-v5 .reference-v3-tags {
        gap: 0.34rem;
    }

    .theme-suite-v5 .reference-v3-tags span {
        min-height: 28px;
        font-size: 0.73rem;
        padding: 0 0.52rem;
    }

    .theme-suite-v5 .reference-v3-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-suite-v5 .reference-v3-content-card,
    .theme-suite-v5 .reference-v3-side-card,
    .theme-suite-v5 .reference-v3-gallery-panel {
        border-radius: 16px;
        padding: 0.82rem;
    }

    .theme-suite-v5 .reference-v3-gallery-panel .reference-gallery-stage-media img {
        max-height: 240px;
    }

    .theme-suite-v5 .reference-v3-slide-body {
        padding: 0.62rem;
    }
}

/* Offering Detail V3 */
.theme-suite-v5 .offering-v3-hero {
    padding-top: 2.4rem;
    padding-bottom: 1.15rem;
}

.theme-suite-v5 .offering-v3-hero-shell {
    border: 1px solid #225674;
    border-radius: 26px;
    padding: 1.2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 0.92rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 0 0, rgba(45, 212, 191, 0.22), transparent 35%),
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.2), transparent 42%),
        linear-gradient(145deg, #07162e 0%, #0f2944 56%, #17405f 100%);
    box-shadow: 0 24px 42px rgba(2, 10, 24, 0.42);
}

.theme-suite-v5 .offering-v3-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.42rem;
    font-size: 0.75rem;
    color: #c2d7eb;
    margin-bottom: 0.75rem;
}

.theme-suite-v5 .offering-v3-breadcrumb a {
    color: #d5e8fb;
}

.theme-suite-v5 .offering-v3-breadcrumb strong {
    color: #ffffff;
}

.theme-suite-v5 .offering-v3-hero-content .eyebrow {
    margin: 0;
    color: #66e3ff;
}

.theme-suite-v5 .offering-v3-hero-content h1 {
    margin: 0.36rem 0 0.58rem;
    color: #f5fbff;
    font-size: clamp(1.9rem, 3.4vw, 2.95rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.theme-suite-v5 .offering-v3-summary {
    margin: 0;
    max-width: 66ch;
    color: #c4d8ea;
    font-size: 1rem;
    line-height: 1.56;
}

.theme-suite-v5 .offering-v3-tags {
    margin-top: 0.82rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
}

.theme-suite-v5 .offering-v3-tags span {
    min-height: 30px;
    padding: 0 0.66rem;
    border-radius: 999px;
    border: 1px solid rgba(173, 205, 229, 0.38);
    background: rgba(255, 255, 255, 0.08);
    color: #e4f2ff;
    display: inline-flex;
    align-items: center;
    font-size: 0.77rem;
    font-weight: 700;
    white-space: nowrap;
}

.theme-suite-v5 .offering-v3-actions {
    margin-top: 0.82rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.52rem;
}

.theme-suite-v5 .offering-v3-actions .btn {
    height: 40px;
    border-radius: 12px;
    padding-inline: 0.82rem;
}

.theme-suite-v5 .offering-v3-actions .btn.btn-ghost {
    border-color: rgba(184, 212, 234, 0.5);
    color: #edf6ff;
    background: rgba(255, 255, 255, 0.07);
}

.theme-suite-v5 .offering-v3-actions .btn.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.theme-suite-v5 .offering-v3-kpis {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.44rem;
}

.theme-suite-v5 .offering-v3-kpis article {
    border: 1px solid rgba(170, 203, 228, 0.34);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.56rem 0.6rem;
    display: grid;
    gap: 0.08rem;
}

.theme-suite-v5 .offering-v3-kpis strong {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    line-height: 1;
}

.theme-suite-v5 .offering-v3-kpis span {
    color: #b8cee2;
    font-size: 0.73rem;
    font-weight: 700;
}

.theme-suite-v5 .offering-v3-hero-visual {
    border-radius: 20px;
    border: 1px solid rgba(173, 208, 235, 0.36);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    overflow: hidden;
}

.theme-suite-v5 .offering-v3-hero-visual img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.theme-suite-v5 .offering-v3-hero-placeholder {
    min-height: 260px;
    display: grid;
    place-content: center;
    color: #d7ecff;
    font-size: 1.04rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.theme-suite-v5 .offering-v3-main {
    padding-top: 0.68rem;
    padding-bottom: 1.05rem;
}

.theme-suite-v5 .offering-v3-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.56fr) minmax(280px, 0.82fr);
    gap: 0.92rem;
    align-items: start;
}

.theme-suite-v5 .offering-v3-content-card,
.theme-suite-v5 .offering-v3-side-card {
    border: 1px solid #c8dbed;
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.1), transparent 40%),
        radial-gradient(circle at 0 100%, rgba(20, 184, 166, 0.08), transparent 38%),
        linear-gradient(160deg, #ffffff 0%, #f6faff 58%, #eef5fe 100%);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.theme-suite-v5 .offering-v3-content-card {
    padding: 1.08rem;
}

.theme-suite-v5 .offering-v3-card-head {
    margin-bottom: 0.72rem;
}

.theme-suite-v5 .offering-v3-card-head .eyebrow {
    margin: 0;
    color: #1f4f84;
}

.theme-suite-v5 .offering-v3-card-head h2 {
    margin: 0.22rem 0 0;
    color: #112b49;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.theme-suite-v5 .offering-v3-rich-text,
.theme-suite-v5 .offering-v3-fallback {
    color: #2a4563;
    line-height: 1.74;
}

.theme-suite-v5 .offering-v3-rich-text h2,
.theme-suite-v5 .offering-v3-rich-text h3,
.theme-suite-v5 .offering-v3-rich-text h4 {
    color: #11355a;
    margin: 0.9rem 0 0.52rem;
}

.theme-suite-v5 .offering-v3-rich-text p,
.theme-suite-v5 .offering-v3-rich-text li {
    color: #2c4968;
}

.theme-suite-v5 .offering-v3-side {
    position: sticky;
    top: 118px;
    display: grid;
    gap: 0.72rem;
}

.theme-suite-v5 .offering-v3-side-card {
    padding: 0.9rem;
}

.theme-suite-v5 .offering-v3-side-card h3 {
    margin: 0;
    color: #12345a;
    font-size: 1.05rem;
}

.theme-suite-v5 .offering-v3-side-card.is-info ul {
    list-style: none;
    margin: 0.72rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.theme-suite-v5 .offering-v3-side-card.is-info li {
    border: 1px solid #d5e4f1;
    border-radius: 12px;
    background: #f9fcff;
    padding: 0.48rem 0.56rem;
    display: grid;
    gap: 0.1rem;
}

.theme-suite-v5 .offering-v3-side-card.is-info li span {
    color: #5a7390;
    font-size: 0.72rem;
    font-weight: 700;
}

.theme-suite-v5 .offering-v3-side-card.is-info li strong {
    color: #173a61;
    font-size: 0.9rem;
}

.theme-suite-v5 .offering-v3-side-card.is-cta {
    border-color: #194f77;
    background:
        radial-gradient(circle at 100% 0, rgba(45, 212, 191, 0.22), transparent 40%),
        linear-gradient(150deg, #0c2d4a 0%, #154164 60%, #1a5574 100%);
}

.theme-suite-v5 .offering-v3-side-card.is-cta h3,
.theme-suite-v5 .offering-v3-side-card.is-cta p {
    color: #e8f4ff;
}

.theme-suite-v5 .offering-v3-side-card.is-cta p {
    margin: 0.55rem 0 0.76rem;
    line-height: 1.6;
}

.theme-suite-v5 .offering-v3-side-card.is-cta .btn {
    width: 100%;
    justify-content: center;
    height: 42px;
    border-radius: 12px;
}

.theme-suite-v5 .offering-v3-related-section {
    padding-top: 0.9rem;
    padding-bottom: 2.3rem;
}

.theme-suite-v5 .offering-v3-section-head {
    margin-bottom: 0.8rem;
}

.theme-suite-v5 .offering-v3-section-head .eyebrow {
    margin: 0;
    color: #1f4f84;
}

.theme-suite-v5 .offering-v3-section-head h2 {
    margin: 0.28rem 0 0;
    color: #122f51;
    font-size: clamp(1.3rem, 2.3vw, 1.75rem);
}

.theme-suite-v5 .offering-v3-slider-wrap {
    --ref-per-view: 3;
    --ref-gap: 0.82rem;
    margin-top: 0.48rem;
}

.theme-suite-v5 .offering-v3-slide {
    border: 1px solid color-mix(in srgb, var(--v5-brand) 18%, #c8daee);
    border-radius: 18px;
    background: linear-gradient(165deg, #ffffff 0%, #f4f8ff 58%, #edf5ff 100%);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
    overflow: hidden;
    padding: 0;
    display: grid;
    min-height: 100%;
}

.theme-suite-v5 .offering-v3-slide-media {
    display: block;
    border-bottom: 1px solid #d2e2f0;
    background: linear-gradient(145deg, #edf4ff, #dce9f8);
}

.theme-suite-v5 .offering-v3-slide .card-media {
    margin: 0;
    border-radius: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.theme-suite-v5 .offering-v3-slide-placeholder {
    min-height: 156px;
    display: grid;
    place-content: center;
    color: #2a4f75;
    font-weight: 800;
    letter-spacing: 0.07em;
}

.theme-suite-v5 .offering-v3-slide-body {
    padding: 0.86rem;
    display: grid;
    gap: 0.44rem;
}

.theme-suite-v5 .offering-v3-slide-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.42rem;
    flex-wrap: wrap;
}

.theme-suite-v5 .offering-v3-slide-order {
    min-width: 34px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #bed1e5;
    background: #edf5ff;
    color: #1f4d80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

.theme-suite-v5 .offering-v3-slide-badge {
    min-height: 25px;
    border-radius: 999px;
    border: 1px solid #c6d8ea;
    background: #f8fbff;
    color: #35587d;
    padding: 0 0.56rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    max-width: calc(100% - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.theme-suite-v5 .offering-v3-slide h3 {
    margin: 0;
    color: #133052;
    font-size: 1rem;
    line-height: 1.34;
    letter-spacing: 0.01em;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: manual;
    text-wrap: balance;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.theme-suite-v5 .offering-v3-slide p {
    margin: 0;
    color: #425f7e;
    font-size: 0.84rem;
    line-height: 1.5;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: manual;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.theme-suite-v5 .offering-v3-slide .inline-link {
    margin-top: 0.24rem;
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.24rem;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .theme-suite-v5 .offering-v3-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-suite-v5 .offering-v3-kpis article:last-child {
        grid-column: 1 / -1;
    }

    .theme-suite-v5 .offering-v3-main-grid {
        grid-template-columns: 1fr;
    }

    .theme-suite-v5 .offering-v3-side {
        position: static;
    }

    .theme-suite-v5 .offering-v3-slider-wrap {
        --ref-per-view: 2;
        --ref-gap: 0.68rem;
    }
}

@media (max-width: 860px) {
    .theme-suite-v5 .offering-v3-hero {
        padding-top: 1.8rem;
        padding-bottom: 0.9rem;
    }

    .theme-suite-v5 .offering-v3-hero-shell {
        grid-template-columns: 1fr;
        padding: 0.86rem;
        border-radius: 18px;
    }

    .theme-suite-v5 .offering-v3-hero-visual img {
        max-height: 280px;
    }

    .theme-suite-v5 .offering-v3-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.42rem;
    }

    .theme-suite-v5 .offering-v3-actions .btn {
        width: 100%;
        min-width: 0;
        padding-inline: 0.5rem;
    }
}

@media (max-width: 680px) {
    .theme-suite-v5 .offering-v3-breadcrumb {
        font-size: 0.7rem;
    }

    .theme-suite-v5 .offering-v3-summary {
        font-size: 0.92rem;
    }

    .theme-suite-v5 .offering-v3-tags {
        gap: 0.34rem;
    }

    .theme-suite-v5 .offering-v3-tags span {
        min-height: 28px;
        font-size: 0.73rem;
        padding: 0 0.52rem;
    }

    .theme-suite-v5 .offering-v3-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-suite-v5 .offering-v3-content-card,
    .theme-suite-v5 .offering-v3-side-card {
        border-radius: 16px;
        padding: 0.82rem;
    }

    .theme-suite-v5 .offering-v3-slide-body {
        padding: 0.76rem;
        gap: 0.4rem;
    }

    .theme-suite-v5 .offering-v3-slider-wrap {
        --ref-per-view: 1;
        --ref-gap: 0.5rem;
    }

    .theme-suite-v5 .offering-v3-slide h3 {
        font-size: 0.96rem;
    }

    .theme-suite-v5 .offering-v3-slide p {
        font-size: 0.82rem;
    }
}

@media (max-width: 400px) {
    .theme-suite-v5 .reference-v3-actions,
    .theme-suite-v5 .offering-v3-actions,
    .theme-suite-v5 .reference-v3-kpis,
    .theme-suite-v5 .offering-v3-kpis {
        grid-template-columns: 1fr;
    }

    .theme-suite-v5 .reference-v3-kpis article:last-child,
    .theme-suite-v5 .offering-v3-kpis article:last-child {
        grid-column: auto;
    }
}

/* Suite V5 Theme Color Sync (Public <-> Admin Settings) */
.theme-suite-v5 {
    --v5-brand-soft: color-mix(in srgb, var(--v5-brand) 16%, #ffffff);
    --v5-brand-soft-2: color-mix(in srgb, var(--v5-brand-2) 18%, #ffffff);
    --v5-brand-ink: color-mix(in srgb, var(--v5-brand) 82%, #143656);
}

.theme-suite-v5 .page-hero-standard .page-hero-shell .eyebrow,
.theme-suite-v5 .offerings-index-hero-shell .eyebrow,
.theme-suite-v5 .references-index-hero-shell .eyebrow,
.theme-suite-v5 .offering-v3-card-head .eyebrow,
.theme-suite-v5 .offering-v3-section-head .eyebrow,
.theme-suite-v5 .reference-v3-card-head .eyebrow,
.theme-suite-v5 .reference-v3-section-head .eyebrow,
.theme-suite-v5 .offering-index-order,
.theme-suite-v5 .reference-index-order,
.theme-suite-v5 .inline-link,
.theme-suite-v5 .reference-v3-slide .inline-link,
.theme-suite-v5 .offering-v3-slide .inline-link {
    color: var(--v5-brand-ink) !important;
}

.theme-suite-v5 .hero-kicker {
    border-color: color-mix(in srgb, var(--v5-brand) 24%, #cddff4) !important;
    background: linear-gradient(120deg, var(--v5-brand-soft), var(--v5-brand-soft-2)) !important;
    color: var(--v5-brand-ink) !important;
}

.theme-suite-v5 .offer-filter-chip.is-active {
    background: linear-gradient(
        120deg,
        var(--v5-brand),
        color-mix(in srgb, var(--v5-brand) 54%, var(--v5-brand-2))
    ) !important;
    color: #f8fbff !important;
    border-color: color-mix(in srgb, var(--v5-brand) 45%, transparent) !important;
}

.theme-suite-v5 .reference-v3-gallery-panel .reference-gallery-thumb.is-active {
    border-color: var(--v5-brand) !important;
}

.theme-suite-v5 .contact-channel-icon {
    background: linear-gradient(
        160deg,
        var(--v5-brand),
        color-mix(in srgb, var(--v5-brand-2) 64%, var(--v5-brand))
    ) !important;
}

.theme-suite-v5 .footer-contact-card h4::before,
.theme-suite-v5 .footer-links-block h4::before {
    background: linear-gradient(135deg, var(--v5-brand), var(--v5-brand-2)) !important;
}

.theme-suite-v5 .footer-contact-card h4::after,
.theme-suite-v5 .footer-links-block h4::after {
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--v5-brand) 42%, transparent),
        color-mix(in srgb, var(--v5-brand) 0%, transparent)
    ) !important;
}

/* Global overflow guard (prevents endless right scroll on live environments) */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

.theme-suite-v5 .site-shell,
.theme-suite-v5 main,
.theme-suite-v5 .site-footer,
.theme-suite-v5 .section {
    max-width: 100%;
    overflow-x: clip;
}

@media (min-width: 961px) {
    .theme-suite-v5 .nav-wrap,
    .theme-suite-v5 .utility-row {
        min-width: 0;
    }

    .theme-suite-v5 .site-nav {
        max-width: 100%;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none;
    }

    .theme-suite-v5 .site-nav::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    .theme-suite-v5 .site-nav a {
        flex: 0 0 auto !important;
        white-space: nowrap;
    }
}
