/* Base Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Theme Variables */
:root {
    --navy-deep: #071422;
    --navy: #0d2137;
    --navy-mid: #1a3a5c;
    --navy-card: #183350;
    --primary: #29b6d1;
    --primary-hover: #1f9cb4;
    --primary-light: #5cd4e8;
    --primary-muted: rgba(41, 182, 209, 0.08);
    --primary-border: rgba(41, 182, 209, 0.2);
    --brand-blue: #2a6496;
    --brand-blue-hover: #1e4f7a;
    --white: #ffffff;
    --bg-ice: #f0f6fa;
    --hero-tint: #e4f0f7;
    --border: #dce8f0;
    --border-accent: rgba(42, 100, 150, 0.22);
    --border-dark: rgba(255, 255, 255, 0.12);
    --text-body: #000;
    --card-shadow: 0 4px 22px rgba(7, 20, 34, 0.06);
    --card-shadow-hover: 0 10px 32px rgba(41, 182, 209, 0.12);
    --shadow: 0 2px 14px rgba(7, 20, 34, 0.05);
    --btn-shadow-hover: 0 6px 22px rgba(41, 182, 209, 0.38);
    --radius: 10px;
    --radius-lg: 14px;
    --radius-btn: 50px;
    --footer-cta-overlap: 88px;
    --accent-yellow: #f5b301;
}

@font-face {
    font-family: 'Parkinsans';
    src: url('../fonts/Parkinsans-Bold.eot');
    src: url('../fonts/Parkinsans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Parkinsans-Bold.woff2') format('woff2'),
        url('../fonts/Parkinsans-Bold.woff') format('woff'),
        url('../fonts/Parkinsans-Bold.ttf') format('truetype'),
        url('../fonts/Parkinsans-Bold.svg#Parkinsans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Parkinsans';
    src: url('../fonts/Parkinsans-Light.eot');
    src: url('../fonts/Parkinsans-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Parkinsans-Light.woff2') format('woff2'),
        url('../fonts/Parkinsans-Light.woff') format('woff'),
        url('../fonts/Parkinsans-Light.ttf') format('truetype'),
        url('../fonts/Parkinsans-Light.svg#Parkinsans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Parkinsans';
    src: url('../fonts/Parkinsans-Medium.eot');
    src: url('../fonts/Parkinsans-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Parkinsans-Medium.woff2') format('woff2'),
        url('../fonts/Parkinsans-Medium.woff') format('woff'),
        url('../fonts/Parkinsans-Medium.ttf') format('truetype'),
        url('../fonts/Parkinsans-Medium.svg#Parkinsans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Parkinsans';
    src: url('../fonts/Parkinsans-Regular.eot');
    src: url('../fonts/Parkinsans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Parkinsans-Regular.woff2') format('woff2'),
        url('../fonts/Parkinsans-Regular.woff') format('woff'),
        url('../fonts/Parkinsans-Regular.ttf') format('truetype'),
        url('../fonts/Parkinsans-Regular.svg#Parkinsans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Parkinsans';
    src: url('../fonts/Parkinsans-SemiBold.eot');
    src: url('../fonts/Parkinsans-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Parkinsans-SemiBold.woff2') format('woff2'),
        url('../fonts/Parkinsans-SemiBold.woff') format('woff'),
        url('../fonts/Parkinsans-SemiBold.ttf') format('truetype'),
        url('../fonts/Parkinsans-SemiBold.svg#Parkinsans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Global Elements */
html {
    scroll-behavior: smooth;
}

/* Responsive Styles */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
body {
    font-family: 'Parkinsans',system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

/* Common Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Parkinsans', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
h2 {
    font-size: 45px;
    font-weight: 700;
}
h3 {
    font-size: 30px;
    font-weight: 700;
}
h4 {
    font-size: 25px;
    font-weight: 600;
}
h5 {
    font-size: 20px;
    font-weight: 600;
}
h6 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
a.inline-link {
    color: var(--primary);
    text-decoration: underline;
}
.display-none{
    display: none;
}
a:focus-visible {
    outline: none !important;
}

/* Common Grid Utilities — add class directly on any wrapper */
.grid {
    display: grid;
}
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-4-sm { grid-template-columns: repeat(4, 1fr); }
.gap-10 { gap: 10px; }
.gap-14 { gap: 14px; }
.gap-16 { gap: 16px; }
.gap-18 { gap: 18px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-20-24 { gap: 20px 24px; }
.grid-stack-md,
.grid-stack-sm { grid-template-columns: repeat(3, 1fr); }

.lazy-blur {
    filter: blur(20px);
    transition: filter 0.4s ease-out;
}
.lazy-loaded {
    filter: blur(0);
}
.images-container img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
COMMON COMPONENTS — shared classes used in HTML (apd-*, hero-pills, grid)
========================================================================== */
/* Hero pills */
.hero-pills-section {
    width: 100%;
    overflow: hidden;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}
.hero-pills {
    width: 100%;
    overflow: hidden;
}
.hero-pills__track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: strip-marquee 30s linear infinite;
    will-change: transform;
    opacity: 0;
}
.hero-pills__track.is-ready {
    opacity: 1;
}
.hero-pills__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
}
.apd-hero .hero-pill {
    font-size: 15px;
    padding: 6px 12px;
    flex: 0 0 auto;
    white-space: nowrap;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    box-shadow: var(--shadow);
}
.hero-pill strong{
    margin-right: 5px;
}
.hero-content-container {
    width: 100%;
}
/* Dark navy card — one class for format + tech tiles */
.apd-card-dark {
    display: flex;
    flex-direction: column;
    background: var(--navy-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 20px 18px 22px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.apd-card-dark:hover {
    transform: translateY(-3px);
    border-color: var(--primary-border);
    box-shadow: var(--card-shadow-hover);
}
.apd-card-dark h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px;
    line-height: 1.2;
}
.apd-migration-section .apd-card-dark h3 {
    margin-bottom: 15px;
}
.apd-migration-section .apd-link-list li{
    margin-bottom: 10px;
}
.apd-migration-section .apd-link-list a {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.apd-card-dark p {
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 10px;
}
.apd-card-dark p:last-child {
    margin-bottom: 0;
}
.apd-card-dark h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-light);
    margin: 0 0 5px;
}
.apd-card-dark .apd-feat-standard{
    color: var(--primary-light);
}
.apd-card-dark h4 + .apd-check-list {
    margin-bottom: 5px;
}
.apd-card-dark .link-more {
    margin-top: auto;
}
.apd-card-dark h4 + .apd-check-list.apd-check-list--cons{
    margin-bottom: 10px;
}

/* Light white card — one class for feature + market tiles */
.apd-card-light {
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.apd-card-light:hover {
    border-color: var(--border-accent);
    box-shadow: var(--card-shadow-hover);
}
.apd-card-light h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 10px;
    line-height: 1.2;
}
.apd-card-light p {
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
    margin-bottom: 10px;
}
.apd-card-light p:last-child {
    margin-bottom: 0;
}


/* Labels — each class is self-contained (no section parent needed) */
.apd-tech-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--primary-light);
}
.apd-card-light .apd-tech-label {
    color: var(--primary);
}
.apd-feat-standard {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.35;
    color: var(--brand-blue);
}

/* Card head + icon */
.apd-format-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.apd-format-head-content {
    flex: 1;
}
.apd-format-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary) 0%, var(--brand-blue) 100%);
    transition: background 0.25s ease;
}
.apd-format-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.apd-card-dark:hover .apd-format-icon {
    background: var(--white);
}
.apd-card-dark:hover .apd-format-icon img {
    filter: brightness(0) saturate(100%) invert(76%) sepia(31%) saturate(871%) hue-rotate(147deg) brightness(70%) contrast(100%);
}
.apd-card-light:hover .apd-format-icon {
    background: linear-gradient(135deg, var(--navy-card) 0%, var(--brand-blue) 100%);
}
ul.apd-link-list a:hover {
    transform: translateX(10px);
    color: var(--primary-light);
}
ul.apd-link-list a {
    transition: all 0.3s ease;
    display: block;
}
ul.apd-link-list li{
    line-height: 1.4;
    margin-bottom: 8px;
}
ul.apd-link-list li:last-child{
    margin-bottom: 0;
}
/* Check / cross lists */
.apd-check-list {
    list-style: none;
    margin: 16px 0 5px;
    padding: 0;
    width: 100%;
}
a.link-more.margin-top-auto{
    margin-top: auto;
}
.margin-top-auto{
    margin-top: auto;
}
.apd-card-dark .apd-check-list {
    margin-top: 0;
}
.apd-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 6px;
}
.apd-check-list li i {
    flex-shrink: 0;
    margin-top: 6px;
    font-size: 14px;
    color: var(--primary);
}
.apd-check-list--cons li i {
    color: rgba(255, 255, 255, 0.55);
}

/* Platform compare box — Choose Your Platform section */
.platform-box {
    display: flex;
    flex-direction: column;
    background: var(--navy-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.platform-box:hover {
    transform: translateY(-3px);
    border-color: var(--primary-border);
    box-shadow: 0 12px 36px rgba(41, 182, 209, 0.12);
}
.platform-box__inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px 20px;
    height: 100%;
}
.platform-box__head {
    display: flex;
    flex-direction: column;
}
.platform-box__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: 5px;
}
.platform-box__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
}
.platform-box__brand h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}
.platform-box__desc {
    font-size: 14px;
    line-height: 1.5;
}
.platform-box .link-more {
    margin-top: auto;
    align-self: flex-start;
}
.platform-box__lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.platform-box__pros,
.platform-box__cons {
    padding: 14px 14px 10px;
    border-radius: var(--radius);
    border: 1px solid;
}
.platform-box__pros {
    background: #29d15e17;
    border-color: #29d15e;
}
.platform-box__cons {
    background: rgba(232, 93, 93, 0.1);
    border-color: rgba(232, 93, 93, 0.25);
}
.platform-box__list-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 10px;
    line-height: 1.2    ;
}
.platform-box__pros .platform-box__list-head {
    color: #29d15e;
}
.platform-box__pros .platform-box__list-head i {
    font-size: 15px;
}
.platform-box__cons .platform-box__list-head {
    color: #e85d5d;
}
.platform-box__cons .platform-box__list-head i {
    font-size: 15px;
}
.platform-box .apd-check-list {
    margin: 0;
}
.platform-box__pros .apd-check-list li,
.platform-box__cons .apd-check-list li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.platform-box__pros .apd-check-list li:last-child,
.platform-box__cons .apd-check-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.platform-box__pros .apd-check-list li i {
    color: #29d15e;
}
.platform-box__cons .apd-check-list li i {
    color: #e85d5d;
}

/* Sticky sidebar + grid layout */
.apd-features-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
    gap: 40px 48px;
    align-items: start;
}
.apd-features-intro {
    position: sticky;
    top: 88px;
    align-self: start;
    z-index: 2;
}

/* Homepage auction types */
.auction-type-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    min-height: 72px;
    padding: 14px 16px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    background: var(--white);
    border: 1px solid var(--border);
}
.auction-type-card:hover {
    border-color: rgba(92, 212, 232, 0.42);
    box-shadow: 0 16px 34px rgba(41, 182, 209, 0.22);
}
.auction-type-card__icon {
    width: 70px;
    height: 70px;
    padding: 5px;
}
.auction-type-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(78%) sepia(36%) saturate(2912%) hue-rotate(150deg) brightness(86%) contrast(89%);
}
.auction-type-card__label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}

/* Industry cards */

.apd-industry-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.2s ease;
    padding-top: 10px;
}
.apd-card-light:hover .apd-industry-card__link{
    color: var(--navy-card);
    transform: translateY(-5px);
}

.industries-grid .apd-card-light{
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
}

/* White-label info list + box */
.apd-whitelabel-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}
.apd-whitelabel-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.5;
}
.apd-whitelabel-list li i {
    color: var(--primary-light);
    margin-top: 3px;
    flex-shrink: 0;
}
.apd-whitelabel-best {
    background: var(--navy-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 15px 20px;
}
.apd-whitelabel-best strong {
    display: block;
    color: var(--primary-light);
    font-size: 18px;
    margin-bottom: 12px;
}
.apd-whitelabel-best ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.apd-whitelabel-best ul li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    line-height: 1.5;
}
.apd-whitelabel-best ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.apd-whitelabel-table-block {
    margin-top: 32px;
}
.apd-whitelabel-table-wrap {
    border: 1px solid rgba(83, 139, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(16, 31, 58, 0.97) 0%, rgba(8, 18, 38, 0.98) 70%, rgba(6, 13, 30, 1) 100%);
    box-shadow: 0 24px 56px rgba(2, 8, 24, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
}
.apd-whitelabel-table-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(43, 174, 255, 0.14), transparent 40%, rgba(87, 129, 255, 0.12));
    pointer-events: none;
}
.apd-whitelabel-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    z-index: 1;
}
.apd-whitelabel-table th,
.apd-whitelabel-table td {
    padding: 13px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(143, 184, 255, 0.12);
    font-size: 15px;
    line-height: 1.45;
}
.apd-whitelabel-table thead th {
    background: linear-gradient(180deg, rgba(25, 57, 108, 0.95) 0%, rgba(12, 32, 67, 0.95) 100%);
    border-bottom: 1px solid rgba(111, 170, 255, 0.22);
    border-right: 1px solid rgba(111, 170, 255, 0.16);
    padding-top: 18px;
    padding-bottom: 14px;
}
.apd-whitelabel-table thead th:last-child {
    border-right: none;
}
.apd-table-head-title {
    display: block;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
}
.apd-table-head-sub {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(204, 227, 255, 0.86);
    line-height: 1.35;
}
.apd-whitelabel-table tbody th {
    font-weight: 500;
    color: #ecf5ff;
    width: 28%;
    display: table-cell;
    vertical-align: middle;
}
.apd-whitelabel-table tbody th i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9fd4ff;
    background: rgba(68, 129, 255, 0.18);
    border: 1px solid rgba(125, 179, 255, 0.25);
    border-radius: 50%;
    font-size: 13px;
    margin-right: 10px;
    vertical-align: middle;
}
.apd-whitelabel-table tbody td {
    color: rgba(255, 255, 255, 0.92);
    width: 36%;
    vertical-align: middle;
}
.apd-cell-value {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    line-height: 1.35;
    font-size: 15px;
}
.apd-cell-value i {
    font-size: 17px;
    flex-shrink: 0;
}
.apd-cell-value--yes {
    color: #d7fff2;
}
.apd-cell-value--yes i {
    color: #31d585;
}
.apd-cell-value--no {
    color: #ffd9d9;
}
.apd-cell-value--no i {
    color: #ff5f6d;
}
.apd-whitelabel-table tbody tr {
    transition: background-color 0.2s ease;
}
.apd-whitelabel-table tbody tr:hover {
    background: rgba(65, 122, 239, 0.16);
}
.apd-whitelabel-table tbody tr td:nth-child(2) {
    background: linear-gradient(90deg, rgba(30, 189, 127, 0.08) 0%, rgba(30, 189, 127, 0) 100%);
}
.apd-whitelabel-table tbody tr td:nth-child(3) {
    background: linear-gradient(90deg, rgba(255, 91, 117, 0.08) 0%, rgba(255, 91, 117, 0) 100%);
}
.apd-whitelabel-table tbody tr:last-child th,
.apd-whitelabel-table tbody tr:last-child td {
    border-bottom: none;
}

/* Animations */
@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0); opacity: 0.85; }
    50% { transform: translate(-18px, 14px); opacity: 1; }
}
@keyframes orb-drift-reverse {
    0%, 100% { transform: translate(0, 0); opacity: 0.75; }
    50% { transform: translate(14px, -12px); opacity: 1; }
}

/* Header and Navigation */
.navbar .logo-link .site-logo {
    max-height: 58px;
    max-width: 135px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}
.navbar .logo-link{
    display: block;
    width: 135px;
    height: 100%;
}

header {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
    min-height: 64px;
}
.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
.menu li {
    list-style: none;
    position: static;
}
.menu > li > a,
.menu > li .menu-parent-link {
    text-decoration: none;
    color: var(--text-body);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 25px 0;
    display: block;
}
.menu-submenu-toggle {
    border: 0;
    background: transparent;
    color: var(--text-body);
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.menu-dropdown-arrow {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.25s ease;
}
.header-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--brand-blue) 100%);
    color: var(--white)!important;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid transparent;
    transition: all 0.25s ease;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.menu-toggle:hover {
    border-color: var(--primary);
    background: var(--bg-light, #f8fafc);
}
.menu-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}
.site-header.menu-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-header.menu-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}
.site-header.menu-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.menu-overlay {
    display: none;
}
body.nav-locked {
    overflow: hidden;
}
.menu-drawer-head,
.menu-drawer-extra,
.menu-drawer-cta-wrap {
    display: none;
}
.menu-panel {
    display: contents;
}
.menu > li.has-dropdown {
    position: relative;
}
.menu > li.has-dropdown > .menu-parent-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.dropdown-menu {
    background: var(---dark-white-color);
   text-align: left;
   border: 1px solid #0d172014;
   min-width: 300px;
   margin: 0;
   display: block;
   position: absolute;
   top: 100%;
   left: 0;
   right: 0;
   opacity: 0;
   visibility: hidden;
}
@media (min-width: 993px) {
    .menu > li.has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        animation: .45s linear fade-up;
    }
    .menu > li.has-dropdown:hover > .menu-parent-row .menu-parent-link {
        color: var(--primary);
    }
    .menu li:hover > a .menu-dropdown-arrow,
    .menu li:hover > .menu-parent-link .menu-dropdown-arrow,
    .menu li:hover > .menu-parent-row .menu-dropdown-arrow {
        transform: rotate(180deg);
    }
    .menu > li > a:hover,
    .menu > li .menu-parent-link:hover {
        color: var(--primary);
        opacity: 1;
    }
    .header-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--btn-shadow-hover);
    }
}
@keyframes fade-up {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }
}
.dropdown-menu li {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}
.dropdown-menu li:last-child {
    border-bottom: none;
}
.dropdown-menu__link {
    color: var(--navy);
    text-transform: capitalize;
    border: none;
    border-radius: 0;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: all .4s ease-out;
    display: block;
    position: relative;
}
.dropdown-menu__link::before{
    content: "";
    transform-origin: 0;
    z-index: 1;
    background: linear-gradient(90deg, #fff, #0faff5, #fff);
    width: 100%;
    height: 1px;
    transition: all .4s ease-in;
    position: absolute;
    bottom: -1px;
    left: 0;
    transform: scaleX(0);
}
.dropdown-menu__link:hover::before{
    transform: scale(1);
}
.dropdown-menu__link:hover {
    color: var(--primary);
}
.dropdown-menu__icon {
    width: 20px;
    height: 20px;
    min-width: 32px;
    object-fit: contain;
    object-fit: contain;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 7px;
    display: inline-block;
}

/* Footer Section */
.footer-logo-link {
    padding: 0;
    margin-bottom: 8px;
}
.footer-logo-link .site-logo {
    max-height: 70px;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.mt-25{
    margin-top: 25px;
}
.mt-0{
    margin-top: 0!important;
}
.section-header.margin-bottom-0{
    margin-bottom: 0;
}
.margin-bottom-15{
    margin-bottom: 15px;
}
.mt-15{
    margin-top: 15px;
}
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 25px;
}
.text-center {
    text-align: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-btn);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: 1.5px solid transparent;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--brand-blue) 100%);
    color: var(--white);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(41, 182, 209, 0.35);
    color: var(--white);
}
.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid rgba(7, 20, 34, 0.4);
    font-weight: 700;
    box-shadow: none;
    text-decoration: none;
}
.btn-secondary:hover {
    background: rgba(7, 20, 34, 0.04);
    color: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(7, 20, 34, 0.08);
    text-decoration: none;
}
.section-dark .btn-secondary,
.btn-secondary--dark,
.footer-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
    font-weight: 700;
    box-shadow: none;
    text-decoration: none;
}
.section-dark .btn-secondary:hover,
.btn-secondary--dark:hover,
.footer-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}
.btn-small {
    padding: 8px 18px;
    font-size: 13px;
    gap: 6px;
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
    font-weight: 600;
    box-shadow: none;
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}
.link-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-blue);
    transition: color 0.25s ease, opacity 0.25s ease;
}
.link-more:hover {
    color: var(--primary-hover);
}
.text-highlight {
    color: var(--primary);
}
.dark-bg-grid{
    pointer-events: none;
    background-image: linear-gradient(#0faff517 1px, #0000 1px), linear-gradient(90deg, #0faff517 1px, #0000 1px);
    background-size: 50px 50px;
    position: absolute;
    inset: 0;
    -webkit-mask-image: radial-gradient(#000 30%, #0000 75%);
    mask-image: radial-gradient(#000 30%, #0000 75%);
}
.section-title .text-highlight {
    display: inline;
    background: linear-gradient(135deg, var(--primary), #0062a9);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.section-dark .text-highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.section-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.15;
    text-transform: capitalize;
}

/* Shared Section Styles */
.section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.section.video-testimonials-list-section{
    overflow: visible;
}
.section > .container {
    position: relative;
    z-index: 1;
}
.section-light {
    background: #f9f9f9;
    color: var(--text-body);
}
.section-white {
    background: var(--white);
    color: var(--text-body);
}
.section-light-blue{
    background: linear-gradient(180deg, var(--hero-tint) 0%, rgba(184, 212, 232, 0.35) 100%);
    border-top: 1px solid var(--border);
}

/* Solutions Section */
.solutions-section::before,
.solutions-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.solutions-section::before {
    width: min(480px, 55vw);
    height: min(480px, 55vw);
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(41, 182, 209, 0.14) 0%, transparent 68%);
    animation: orb-drift 14s ease-in-out infinite;
}
.solutions-section::after {
    width: min(360px, 42vw);
    height: min(360px, 42vw);
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(42, 100, 150, 0.12) 0%, transparent 68%);
    animation: orb-drift-reverse 16s ease-in-out infinite;
}
.process-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--hero-tint) 100%);
    border-top: 1px solid var(--border);
}

/* Blog Section */
.section-dark {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
    color: var(--white);
}
.capabilities-section.section-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 70%, var(--navy-card) 100%);
}

/* Portfolio Section */
.portfolio-section.section-dark {
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Feature check lists — two/three column plain lists (light & dark) */
.feature-check-section .two-col-same-width {
    align-items: start;
}
.feature-check-title {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 28px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}
.section-dark .feature-check-title {
    color: var(--white);
}
.feature-check-block--spaced {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--navy-mid);
}
.section-dark .feature-check-block--spaced {
    border-top: 1px solid var(--white);
}
.feature-check-block .grid{
    row-gap: 14px
}
.feature-check-section .apd-check-list {
    margin: 0;
}
.feature-check-section .apd-check-list li {
    margin-bottom: 14px;
    color: var(--text-body);
}
.section-dark.feature-check-section .apd-check-list li {
    color: var(--white);
}
.feature-check-section .apd-check-list li:last-child {
    margin-bottom: 0;
}
.feature-check-section .apd-check-list li i {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 10px;
}
.section-dark.feature-check-section .apd-check-list li i {
    background: var(--white);
    color: var(--navy-deep);
}
.feature-check-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 40px;
    justify-content: space-between;
}
.feature-check-row li {
    flex: 1;
    margin-bottom: 0;
}
.section-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-body);
    margin-bottom: 16px;
    text-transform: capitalize;
}
.section-dark .section-title {
    color: var(--white);
}
.section-title.dark {
    color: var(--text-body);
}
.section-desc {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 15px;
}
.section-desc:last-of-type {
    margin-bottom: 0;
}
.section-dark .section-desc {
    color: var(--white);
}
.section-desc.dark {
    color: var(--text-body);
}
.section-header {
    margin-bottom: 40px;
}
.section-header.text-center {
    text-align: center;
}
.section-header--narrow {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #04c2e1;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    line-height: normal;
    margin-bottom: 15px;
}
.section-label .dot {
    background: #04c2e1;
    width: 7px;
    height: 7px;
    box-shadow: 0 0 12px #04c2e1;
    border-radius: 50%;
    animation: 2s ease-in-out infinite ts-pulse;
}
@keyframes ts-pulse {
    0%,to {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(.7)
    }
}
.section-header.text-center .section-title {
    margin-bottom: 14px;
}
.section-header.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.5;
}
.section-intro--left {
    text-align: left;
}
.blog-toolbar {
    margin: 25px 0 0px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 55px 0 60px;
    overflow: hidden;
    background: linear-gradient(125deg, #b8d4e870 0%, #e4f0f736 35%, var(--bg-ice) 70%, var(--hero-tint) 100%)
}
.hv-hero__three{
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    position: absolute;
    inset: 0;
}
.hero-canvas{
    width: 100%;
    height: 100%;
    z-index: 999999;
    position: relative;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(68px);
    will-change: transform;
}
.hero-blob--teal {
    width: min(540px, 58vw);
    height: min(500px, 54vw);
    left: -20%;
    top: -5%;
    opacity: 0.82;
    background: radial-gradient(circle, rgba(41, 182, 209, 0.5) 0%, rgba(31, 156, 180, 0.15) 55%, transparent 72%);
}
.hero-blob--blue {
    width: min(520px, 54vw);
    height: min(480px, 50vw);
    right: -12%;
    top: -8%;
    opacity: 0.78;
    background: radial-gradient(circle, rgba(42, 100, 150, 0.58) 0%, rgba(30, 79, 122, 0.12) 55%, transparent 72%);
}
.hero-blob--navy {
    width: min(420px, 48vw);
    height: min(380px, 44vw);
    left: 32%;
    bottom: -20%;
    opacity: 0.55;
    filter: blur(80px);
    background: radial-gradient(circle, rgba(7, 20, 34, 0.32) 0%, rgba(7, 20, 34, 0.08) 50%, transparent 75%);
}
.hero .container {
    position: relative;
    z-index: 1;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 400px);
    gap: clamp(24px, 3.5vw, 40px);
    align-items: start;
}
.hero-content {
    max-width: none;
    margin: 0;
    text-align: left;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    text-align: left;
    line-height: 1.4;
}
.hero-badge__tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--brand-blue) 100%);
}
.hero-title {
    font-size: clamp(2rem, 3.6vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.hero-accent {
    display: inline;
}
.hero-accent--highlight {
    background: linear-gradient(90deg, var(--primary) 0%, var(--brand-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title-plain {
    color: var(--navy);
}
.btn-secondary--hero,
.hero .btn-secondary--hero {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid rgba(7, 20, 34, 0.45);
    font-weight: 700;
    text-decoration: none;
    box-shadow: none;
}
.btn-secondary--hero:hover,
.hero .btn-secondary--hero:hover {
    background: var(--white);
    color: var(--brand-blue-hover);
    border-color: var(--brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(7, 20, 34, 0.1);
    text-decoration: none;
}
.btn-secondary i,
.btn-secondary--hero i,
.hero .btn-secondary--hero i {
    font-size: 13px;
    transition: transform 0.25s ease;
}
.btn-secondary:hover i,
.btn-secondary--hero:hover i,
.hero .btn-secondary--hero:hover i {
    transform: translateX(3px);
}
.hero-desc {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
}
.hero-stats-bar {
    display: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(20px, 4vw, 48px);
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    max-width: none;
    margin-top: 28px;
}
.hero-stats-bar .stat-item {
    text-align: left;
    padding: 0;
    border: none;
}
.hero-stats-bar .stat-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.hero-stats-bar .stat-star {
    font-size: 0.55em;
    -webkit-text-fill-color: var(--accent-yellow);
    color: var(--accent-yellow);
    margin-left: 2px;
}
/* Hero form – content left, form right */
.hero-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    box-shadow: 0 16px 48px rgba(7, 20, 34, 0.1);
}
.hero-form-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 14px;
    line-height: 1.25;
}
.hero form.hero-form .grid {
    grid-template-columns: 1fr;
    gap: 10px;
}
.hero form.hero-form .input,
.hero form.hero-form select.input,
.hero form.hero-form textarea.input {
    padding: 10px 14px;
    font-size: 14px;
}
.hero form.hero-form textarea.input {
    min-height: 72px;
}
.hero form.hero-form #hero_book_form_button {
    width: 100%;
    margin-top: 2px;
    cursor: pointer;
    border: none;
}
.hero form.hero-form .number-filed {
    width: 120px;
    min-width: 120px;
    padding: 10px 8px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    color: var(--navy) !important;
    -webkit-text-fill-color: var(--navy) !important;
    background-color: #fff;
    background-image: url(../image/cat.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-shadow: 0 1px 0 #fff, 0 0 6px rgba(255, 255, 255, 0.9);
}
.hero-form-note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin: 10px 0 0;
    line-height: 1.45;
}
.hero-stats-bar .stat-label {
    display: block;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-body);
    margin-top: 8px;
}
.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}
.stat-label {
    font-size: 13px;
    color: var(--text-body);
}
.solution-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 0;
    overflow: hidden;
    height: 100%;
}
.solution-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--card-shadow-hover);
}
.solution-card-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    margin-bottom: 18px;
}
.solution-card-inner .solution-icon-container {
    margin: 0px;
}
.solution-card-inner .solution-title-content {
    margin: 0px;
    flex: 1;
    line-height: 1.2;
}
.solution-icon-container {
    width: 75px;
    height: 75px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    transition: background 0.25s ease;
    position: relative;
    box-shadow: 0 8px 20px #00a9e24d;
    background: linear-gradient(90deg, var(--primary) 0%, var(--brand-blue) 100%);
}
.solution-icon-container::after {
    content: "";
    border: 2px solid #29b6d180;
    border-radius: 10px;
    animation: 2.4s ease-out infinite pr-node-pulse;
    position: absolute;
    inset: -3px;
}
.solution-card .link-more {
    padding-top: 10px;
}
@keyframes pr-node-pulse {
    0% {
        opacity: .7;
        transform: scale(1)
    }
    to {
        opacity: 0;
        transform: scale(1.4)
    }
}
.solution-card img.solution-icon {
    width: 100%;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    margin-bottom: 0;
    display: block;
    background: transparent;
    border-radius: 0;
    filter: brightness(0) invert(1);
}
a.link-more {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 16px;
}
.solution-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-body);
    margin: 0 0 8px;
    line-height: 1.2;
    transition: color 0.2s ease;
    text-transform: capitalize;
}
.solution-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.45;
    margin: 0;
}
.two-col {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.19fr);
    gap: 56px 64px;
    align-items: center;
}
.two-col-same-width {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px 64px;
    align-items: center;
}
.two-col.reverse > .grid {
    order: -1;
}
.about-us-image img {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    height: auto;
}
.car-dealership-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Why Us Section */
.why-cyblance-section {
    background:
        radial-gradient(ellipse 90% 55% at 50% -10%, rgba(41, 182, 209, 0.1) 0%, transparent 60%),
        var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.why-cyblance-card {
    background: var(--navy-card);
    border-radius: 24px;
    padding: 22px 22px 24px;
    transition: border-color 0.25s ease, transform 0.25s ease;
    position: relative;
    overflow: hidden;
}
.why-cyblance-card:hover {
    transform: translateY(-1px);
}
.why-cyblance-card__icon-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 84px;
    height: 78px;
    background: var(--navy-deep);
    padding: 0 6px 8px 8px;
    z-index: 1;
}
.why-cyblance-card__icon {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -o-border-radius: 17px;
    -ms-border-radius: 17px;
    border-radius: 17px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    line-height: 0;
}
.why-cyblance-card__icon-container::before {
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: 0px;
    height: 40px;
    width: 22px;
    box-shadow: 0 22px 0 0 var(--navy-card);
    right: 74%;
    border-bottom-left-radius: 22px;
    z-index: -1;
}
.why-cyblance-card__icon-container::after{
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: -31px;
    height: 40px;
    width: 22px;
    box-shadow: 0 22px 0 0 var(--navy-deep);
    left: 62%;
    border-bottom-right-radius: 22px;
    transform: rotate(267deg);
    z-index: -1;
}
article.why-cyblance-card::after {
    content: "";
    position: absolute;
    background-color: transparent;
    top: -9px;
    height: 40px;
    width: 22px;
    box-shadow: 0 22px 0 0 var(--navy-deep);
    right: 93px;
    border-bottom-right-radius: 22px;
    transform: rotate(270deg);
    z-index: 0;
}
.why-cyblance-card__icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) saturate(100%) invert(76%) sepia(31%) saturate(871%) hue-rotate(147deg) brightness(70%) contrast(100%);
}
article.why-cyblance-card:hover .why-cyblance-card__icon{
    background-color: var(--primary);
    transform: rotateY(180deg);
}
article.why-cyblance-card:hover .why-cyblance-card__icon img {
    filter: brightness(0) invert(1);
}
.why-cyblance-card__head h3 {
    font-size: 19px;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
    width: 75%;
    margin-bottom: 16px;
    font-weight: 600;
    min-height: 52px;
}
.why-cyblance-card p {
    font-size: 15px;
    color: var(--white);
    line-height: 1.45;
    margin: 0;
    z-index: 9;
    position: relative;
}
.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px 16px;
    text-align: center;
    transition: all 0.25s;
    min-height: 110px;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}
a.platform-card {
    text-decoration: none;
    color: inherit;
}
.platform-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 16px 40px rgba(41, 182, 209, 0.15);
}
.platform-card:hover .platform-card-shine {
    opacity: 1;
}
.platform-card-shine {
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(41, 182, 209, 0.18), transparent 50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
    position: absolute;
    inset: 0;
}
.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}
.platform-card:hover .platform-icon{
    transform: scale(1.15) rotate(-3deg);
}
.platform-card:nth-child(1) .platform-icon {
    color: #95bf47;
}
.platform-card:nth-child(2) .platform-icon {
    color: #f46f25;
}
.platform-card:nth-child(3) .platform-icon {
    color: #21759b;
}
.platform-card:nth-child(4) .platform-icon {
    color: var(--primary);
}
.platform-card:nth-child(5) .platform-icon {
    color: #f59e0b;
}
.platform-card:nth-child(6) .platform-icon {
    color: #6366f1;
}
.platform-logo {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-body);
}
.process-timeline {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}
.pr-line {
    position: absolute;
    top: 0;
    left: 40px;
    transform: translateX(-50%);
    width: 2px;
    height: 93%;
    background: repeating-linear-gradient(180deg, rgba(41, 182, 209, 0.4) 0 8px, transparent 8px 16px);
    background-size: 100% 16px;
    animation: pr-flow .9s linear infinite;
    overflow: visible;
}
.pr-line__fill {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform-origin: top;
    background: linear-gradient(180deg, transparent, var(--primary));
    animation: pr-fill 9s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes pr-fill {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }
    6% {
        opacity: 1;
    }
    92% {
        opacity: 1;
        transform: scaleY(1);
    }
    100% {
        opacity: 0;
        transform: scaleY(1);
    }
}
.pr-line__comet {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--white) 8%, var(--primary-light) 40%, rgba(41, 182, 209, 0.6) 65%, transparent 75%);
    box-shadow: 0 0 22px 6px rgba(41, 182, 209, 0.65), 0 0 50px 10px rgba(41, 182, 209, 0.25);
    animation: pr-comet 9s cubic-bezier(.4,0,.2,1) infinite;
}
.pr-line__comet:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(92, 212, 232, 0.8));
    border-radius: 3px;
}
@keyframes pr-comet {
    0% {
        opacity: 0;
        top: 0%;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 100%;
    }
}
@keyframes pr-flow {
    to {
        background-position: 0 16px;
    }
}

/* Horizontal process line — step-track */
.pr-line--horizontal {
    top: auto;
    left: 10%;
    right: 10%;
    bottom: 50px;
    width: auto;
    height: 2px;
    transform: none;
    background: repeating-linear-gradient(90deg, rgba(41, 182, 209, 0.4) 0 8px, transparent 8px 16px);
    background-size: 16px 100%;
    animation: pr-flow-h .9s linear infinite;
}
.pr-line--horizontal .pr-line__fill {
    transform-origin: left;
    background: linear-gradient(90deg, transparent, var(--primary));
    animation: pr-fill-h 9s cubic-bezier(.4,0,.2,1) infinite;
}
.pr-line--horizontal .pr-line__comet {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    animation: pr-comet-h 9s cubic-bezier(.4,0,.2,1) infinite;
}
.pr-line--horizontal .pr-line__comet:before {
    left: 8px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(92, 212, 232, 0.8));
}
@keyframes pr-fill-h {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    6% {
        opacity: 1;
    }
    92% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0;
        transform: scaleX(1);
    }
}
@keyframes pr-comet-h {
    0% {
        opacity: 0;
        left: 0%;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        left: 100%;
    }
}
@keyframes pr-flow-h {
    to {
        background-position: 16px 0;
    }
}
.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 22px 28px;
    align-items: start;
    margin-bottom: 28px;
}
.process-step:last-child {
    margin-bottom: 0;
}
.process-step__watermark{
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: rgba(41, 182, 209, 0.16);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.process-step__marker {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(41, 182, 209, 0.12);
    transition: all 0.25s;
}
.process-step__marker::after {
    content: "";
    border: 2px solid #29b6d180;
    border-radius: 50%;
    animation: 1.8s ease-out infinite pr-node-pulse;
    position: absolute;
    inset: -3px;
}
.process-step:hover .process-step__marker {
    background: var(--primary);
    border-color: var(--primary);
}
.process-step:hover .process-step__marker .process-step__icon img{
    filter: brightness(0) invert(1);
}
.process-step__icon img{
    transition: all 0.25s;
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(76%) sepia(31%) saturate(871%) hue-rotate(147deg) brightness(70%) contrast(100%);
}
.process-step__icon {
    width: 45px;
    height: 45px;
    line-height: 1;
}
.process-step__card {
    background: var(--white);
    border-radius: 12px;
    padding: 22px 26px 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    position: relative;
}
.process-step__card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--card-shadow-hover);
    transform: translateX(4px);
}
.process-step__card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 10px;
    line-height: 1.35;
}
.process-step__card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.45;
    margin: 0;
}
.process-step__card::before {
    content: "";
    position: absolute;
    top: 23px;
    left: -17px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 17px solid var(--border);
}
.process-step__card::after {
    content: "";
    position: absolute;
    top: 24px;
    left: -15px;
    transform: unset;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 15px solid var(--white);
}
/* ==========================================================================
Tab Section — shared (all tab sections; add --light for light background)
========================================================================== */
.tab-section {
    max-width: 920px;
    margin: 0 auto;
}
.tab-section__nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 4px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 28px;
    padding: 5px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.tab-section__nav::-webkit-scrollbar {
    display: none;
}
.tab-section__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: max-content;
    padding: 12px 22px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Parkinsans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.tab-section__tab-icon {
    font-size: 14px;
    transition: color 0.3s ease;
}
.tab-section__tab:hover:not(.active) {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.06);
}
.tab-section__tab.active {
    background: var(--white);
    color: var(--navy);
    font-weight: 600;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.16);
}
.tab-section__tab.active .tab-section__tab-icon {
    color: var(--primary);
}
.tab-section--light .tab-section__nav {
    background: var(--white);
    border: 1px solid rgba(7, 20, 34, 0.07);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(7, 20, 34, 0.08);
    padding: 6px;
}
.tab-section--light .tab-section__tab {
    color: rgba(7, 20, 34, 0.5);
}
.tab-section--light .tab-section__tab:hover:not(.active) {
    color: var(--navy);
    background: rgba(7, 20, 34, 0.04);
}
.tab-section--light .tab-section__tab.active {
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(7, 20, 34, 0.14);
}
.tab-section__panel.hidden {
    display: none;
}
.tab-section--filter [data-category].hidden {
    display: none;
}
.tab-section__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
    max-width: none;
    margin: 0;
    padding: 4px 2px 0;
}
.tab-section__link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
}
.tab-section__icon {
    width: 148px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: 12px;
    border: 1px solid rgba(7, 20, 34, 0.08);
    background: var(--white);
    box-shadow: 0 4px 18px rgba(7, 20, 34, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.tab-section__icon img {
    max-width: 110px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.tab-section__name {
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
}
.tab-section--dark .tab-section__name {
    color: var(--white);
}
.tab-section__link:hover .tab-section__icon {
    border-color: rgba(41, 182, 209, 0.35);
    box-shadow: 0 10px 24px rgba(41, 182, 209, 0.16);
    background: var(--white);
    transform: translateY(-3px);
}
.tech-stack-section .section-header {
    margin-bottom: 28px;
}
.tech-stack-section .tech-framework-hint {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
}
.tech-stack-section .awb-tech-process {
    margin-top: 52px;
}
.portfolio-card.hidden {
    display: none;
}
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.portfolio-tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
}
.section-dark .link-more {
    color: var(--primary-light);
}
.section-dark .link-more:hover {
    color: var(--white);
}

/* Case study image cards */
.case-study-section .case-study-card {
    position: relative;
    aspect-ratio: 16 / 13;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
}
.case-study-section .case-study-card__media,
.case-study-section .case-study-card__media img {
    width: 100%;
    height: 100%;
    background-color: var(--white);
}
.case-study-section .case-study-card__media img {
    object-fit: contain;
    transition: transform 0.5s ease;
}
.case-study-section .case-study-card:hover .case-study-card__media img {
    transform: scale(1.06);
}
.case-study-section .case-study-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(7, 20, 34, 0.92) 0%, rgba(7, 20, 34, 0.35) 42%, transparent 72%);
    transition: background 0.35s ease;
}
.case-study-section .case-study-card:hover .case-study-card__overlay {
    background: linear-gradient(to top, rgba(7, 20, 34, 0.96) 0%, rgba(7, 20, 34, 0.82) 55%, rgba(7, 20, 34, 0.45) 100%);
}
.case-study-section .case-study-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0;
}
.case-study-section .case-study-card__title {
    margin: 0;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    transition: transform 0.35s ease;
}
.case-study-section .case-study-card__desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.35s ease, max-height 0.35s ease, margin 0.35s ease;
}
.case-study-section .case-study-card__link {
    display: inline-block;
    margin: 0;
    color: var(--primary-light);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.35s ease, max-height 0.35s ease, margin 0.35s ease, color 0.25s ease;
}
.case-study-section .case-study-card__link:hover {
    color: var(--white);
}
.case-study-section .case-study-card:hover .case-study-card__title {
    transform: translateY(-6px);
}
.case-study-section .case-study-card:hover .case-study-card__desc {
    opacity: 1;
    max-height: 4.8em;
    margin-top: 8px;
}
.case-study-section .case-study-card:hover .case-study-card__link {
    opacity: 1;
    max-height: 2em;
    margin-top: 12px;
}
.case-study-slick .slick-list {
    margin: 0 -12px;
}
.case-study-slick .slick-slide {
    padding: 0 12px;
    box-sizing: border-box;
}
.case-study-slick .case-study-card {
    width: 100%;
}
.case-study-slider-wrap {
    overflow: hidden;
    min-width: 0;
}
/* Pre-init layout: prevent tall stack before Slick loads */
.case-study-slick:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.case-study-slick:not(.slick-initialized) .case-study-slick__slide:nth-child(n + 4) {
    display: none;
}
.case-study-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}
.case-study-slider-wrap:not(:has(.case-study-slick__slide:nth-child(4))) + .case-study-nav {
    display: none;
}

/* Platform website screenshot slider */
.platform-slider {
    min-width: 0;
    width: 100%;
}
.platform-slider-wrap {
    overflow: hidden;
    min-width: 0;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.platform-slick:not(.slick-initialized) {
    display: block;
}
.platform-slick:not(.slick-initialized) .platform-slick__slide:nth-child(n + 2) {
    display: none;
}
.platform-slick .slick-slide {
    height: auto;
}
.platform-slick__slide {
    line-height: 0;
}
.platform-slick__slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Portfolio hover cards */
.portfolio-card {
    position: relative;
    background: none;
    border: none;
    border-radius: 0;
}
.portfolio-card:hover {
    box-shadow: none;
    transform: none;
}
.portfolio-card .project__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 16 / 12;
    background: var(--white);
}
.portfolio-card::before {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 70px;
    height: 70px;
    background: var(--navy-deep);
    border-radius: 15px 0 0 0;
    z-index: 2;
}
.portfolio-card .project__thumb::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    z-index: 1;
    background: linear-gradient(to top, rgba(7, 20, 34, 0.95) 0%, rgba(7, 20, 34, 0.6) 40%, transparent 100%);
}
.portfolio-card .project__thumb-img {
    height: 100%;
}
.portfolio-card .project__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio-card .project__title {
    position: absolute;
    left: 25px;
    right: 90px;
    bottom: 20px;
    z-index: 3;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.portfolio-card .project__title h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}
.portfolio-card .project__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--brand-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.portfolio-card .project__content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    padding: 0 25px;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    max-height: 90%;
    overflow-y: auto;
}
.portfolio-card .project__icon {
    position: relative;
    z-index: 3;
}
.portfolio-card .project__icon a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    position: absolute;
    right: 0;
    bottom: 0;
    color: var(--navy-deep);
    z-index: 4;
    transition: color 0.25s ease;
}
.portfolio-card .project__icon::before,
.portfolio-card .project__icon::after {
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: 0;
    height: 40px;
    width: 20px;
    box-shadow: 1px 20px 0 0 var(--navy-deep);
    right: 69px;
    border-bottom-right-radius: 20px;
    z-index: -2;
}
.portfolio-card .project__icon::before {
    top: -109px;
    bottom: auto;
    right: 0;
    z-index: -1;
}
.portfolio-card:hover .project__content {
    opacity: 1;
    visibility: visible;
}
.portfolio-card:hover .project__thumb::after {
    opacity: 0.9;
}
.portfolio-card.light::before {
    background: #e6f0f7;
}
.portfolio-card.light .project__icon::before, .portfolio-card.light .project__icon::after{
    box-shadow: 1px 20px 0 0 #e6f0f7;
}
.portfolio-card.light .project__icon a{
    background: var(--navy);
    color: var(--white);
}
.portfolio-card:hover .project__title {
    opacity: 0;
    transform: translateY(20px);
}
.portfolio-card:hover .project__thumb img {
    transform: scale(1.08);
}
.portfolio-card:hover .project__icon a {
    color: var(--primary);
}
.portfolio-card .project__content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
}
.portfolio-card .project__content p {
    font-size: 14px;
    color: var(--white);
    line-height: 1.65;
    margin-bottom: 16px;
    margin-top: 10px;
}
.portfolio-card .project__content .apd-check-list li{
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--white);
}
.portfolio-card .portfolio-tags,
.portfolio-card .project__content .apd-check-list {
    width: 86%;
}
.portfolio-card .project__content::-webkit-scrollbar {
    width: 2px;
}
.portfolio-card .project__content::-webkit-scrollbar-track {
    background: transparent;
}
.portfolio-card .project__content::-webkit-scrollbar-thumb {
    background: var(--navy-card);
    border-radius: 10px;
}
.portfolio-card .project__content::-webkit-scrollbar-thumb:hover {
    background: var(--white);
}

/* Section decorative graphics — add class on any section */
.section-decor--left::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 363px;
    background-image: url(../image/background-graphic-1.png);
    top: 0;
    left: 0;
    animation: floatUpDown 8s ease-in-out infinite;
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 0.09;
    pointer-events: none;
}
.section-decor--right::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 343px;
    background-image: url(../image/background-graphic.png);
    bottom: 0;
    right: 0;
    animation: floatUpDown 8s ease-in-out infinite;
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.19;
    pointer-events: none;
}
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-40px);
    }
}

/* Testimonials Section */
.testimonials-layout {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 40px 48px;
    align-items: start;
}
.testimonials-nav {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}
.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-btn);
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    transition: all 0.25s ease;
}
.testimonial-nav-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}
.testimonial-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.testimonials-slider-wrap {
    overflow: hidden;
    min-width: 0;
}
.testimonial-card {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 24px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    box-shadow: 0 10px 34px rgba(41, 182, 209, 0.06);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.testimonial-card::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 11H6C6 8.79086 7.79086 7 10 7V5C6.68629 5 4 7.68629 4 11V17H10V11ZM20 11H16C16 8.79086 17.7909 7 20 7V5C16.6863 5 14 7.68629 14 11V17H20V11Z' fill='%23000'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 69px;
    height: 70px;
    position: absolute;
    top: 0px;
    right: 0;
    display: block;
    transform: rotate(180deg);
    opacity: 0.08;
}
@property --pr-bd {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}
.testimonial-card::after {
    content: "";
    border-radius: inherit;
    background: conic-gradient(from var(--pr-bd), rgba(41, 182, 209, 0.18) 0deg, rgba(41, 182, 209, 0.18) 72deg, rgba(92, 212, 232, 0.55) 104deg, var(--hero-tint) 130deg, var(--primary) 156deg, rgba(41, 182, 209, 0.18) 200deg, rgba(41, 182, 209, 0.18) 360deg);
    -webkit-mask-composite: xor;
    pointer-events: none;
    z-index: 1;
    padding: 1.6px;
    animation: 5.5s linear infinite pr-border-spin;
    position: absolute;
    inset: 0;
    -webkit-mask-image: linear-gradient(#fff 0 0),linear-gradient(#fff 0 0);
    -webkit-mask-position: 0 0,0 0;
    -webkit-mask-size: auto,auto;
    -webkit-mask-repeat: repeat,repeat;
    -webkit-mask-clip: content-box,border-box;
    -webkit-mask-origin: content-box,border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-mask-source-type: auto,auto;
    mask-mode: match-source,match-source
}
@keyframes pr-border-spin {
    to {
        --pr-bd: 360deg
    }
}
.testimonial-card > * {
    z-index: 10;
    position: relative;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    color: var(--accent-yellow);
    font-size: 13px;
}
.testimonial-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-body);
    margin: 0 0 12px;
    line-height: 1.35;
}
.testimonial-card-text {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.5;
    margin: 0 0 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.apd-testimonials-section p.testimonial-card-text {
    -webkit-line-clamp: 8;
    line-clamp: 8;
}
.apd-testimonials-section .testimonials-nav{
    display: none;
}
.testimonial-author {
    display: flex;
    align-items: start;
    gap: 12px;
    position: relative;
    z-index: 1;
    margin-top: auto;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
span.testimonial-name-logo {
    display: flex;
    background: var(--navy);
    color: var(--white);
    line-height: normal;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
}
.testimonial-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 2px;
}
.testimonial-role {
    display: block;
    font-size: 0.8rem;
    color: var(--text-body);
    line-height: normal;
}

/* Slick testimonials carousel */
.testimonials-slick .slick-list {
    margin: 0 -12px;
}
.slick-track {
    display: flex !important;
}
.slick-slide {
    height: inherit !important;
    display: flex !important;
}
.testimonials-slick .slick-slide {
    height: auto;
    padding: 0 12px;
    box-sizing: border-box;
}
.testimonials-slick .testimonial-card {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}
.blog-grid-style-two {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0 48px;
    align-items: start;
}
.blog-featured-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.blog-featured-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}
.blog-featured-media {
    display: block;
    overflow: hidden;
}
.blog-featured-media img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
    height: auto;
}
.blog-featured-card:hover .blog-featured-media img {
    transform: scale(1.03);
}
.blog-featured-content {
    padding: 20px;
}
.blog-featured-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px;
}
.blog-featured-desc{
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
}
.blog-read-more i {
    font-size: 12px;
    transition: transform 0.2s ease;
}
.blog-read-more:hover i {
    transform: translate(2px, -2px);
}
.blog-side-list {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.blog-side-card {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #a9c6cb;
    flex: 1;
}
.blog-side-card:first-child {
    padding-top: 0;
}
.blog-side-card:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.blog-side-thumb {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
}
.blog-side-thumb img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
    height: 100%;
    object-position: center right;
}
.blog-side-card:hover .blog-side-thumb img {
    transform: scale(1.04);
}
.blog-side-content {
    min-width: 0;
}
.blog-side-content h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-side-list:has(.blog-side-card:nth-child(-n+2):last-child) { 
    min-height: unset; 
}
.blog-side-list:has(.blog-side-card:nth-child(2)):not(:has(.blog-side-card:nth-child(3))) .blog-side-thumb,
.blog-side-list:not(:has(.blog-side-card:nth-child(2))) .blog-side-thumb {
    aspect-ratio: 16 / 12;
}
main.main-home > section:last-of-type {
    padding-bottom: calc(70px + var(--footer-cta-overlap));
}
.footer-cta-overlap {
    position: relative;
    z-index: 1;
    margin-top: calc(-1 * var(--footer-cta-overlap));
    margin-bottom: calc(-1 * var(--footer-cta-overlap));
}
.site-footer {
    background: var(--white);
    padding: 0;
    border-top: none;
    position: relative;
    z-index: 0;
}
.footer-cta {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
    padding: 44px 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 48px rgba(7, 21, 37, 0.22);
}
.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.footer-cta__text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.25;
}
.footer-cta__text p {
    font-size: 1rem;
    color: var(--white);
    margin: 0;
}
.footer-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-main {
    background: var(--white);
    padding: 40px 0 24px;
    border-top: none;
}
body:has(main.main-home) footer.site-footer{
    padding: calc(30px + var(--footer-cta-overlap)) 0 0px;
}
.footer-logo-link {
    display: inline-block;
    padding: 0;
    margin-bottom: 8px;
    background: transparent;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 30px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 16px 0 10px;
}
.footer-contact p {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 0px;
    margin-top: 10px;
}
.info-content {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}
.info-content p {
    margin-top: -1px;
}
.info-content .info-link {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.info-content .info-link a {
    font-size: 14px;
    color: var(--text-body);
    display: inline-flex;
    align-items: center;
    line-height: normal;
    padding: 0px 0px 6px;
}
.footer-contact a {
    color: var(--text-body);
    transition: color 0.2s;
}
.footer-contact a:hover {
    color: var(--primary);
}
.social-links a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-btn);
    background: var(--bg-ice);
    border: 1px solid var(--primary-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--navy);
    transition: all 0.25s ease;
}
.social-links a:hover {
    color: var(--white);
    border-color: var(--navy);
    background: var(--navy);
    transform: translateY(-2px);
}
.footer-col .footer-col-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-body);
    margin-bottom: 14px;
    line-height: 1.2;
}
.footer-col ul li {
    margin-bottom: 10px;
    line-height: normal;
}
.footer-col ul li:last-child {
    margin-bottom: 0px;
}
.footer-col ul li a {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.2;
    display: block;
    transition: all 0.2s ease;
}
.footer-col ul li a::before{
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0px;
    display: inline-block;
    transition: all 0.2s ease;
    opacity: 0;
    position: absolute;
    left: -18px;
    top: 0;
}
.footer-col ul li a:hover::before {
    opacity: 1;
}
.footer-col ul li a:hover {
    color: var(--brand-blue-hover);
    transform: translateX(16px);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-body);
}
.footer-bottom-content{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}
.fab-icon {
    position: fixed;
    bottom: 75px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}
.fab-icon a {
    width: 55px;
    height: 55px;
    display: block;
    box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
    border-radius: 50%;
}
.fab-icon a img{
    width: 100%;
    height: 100%;
}
/* ==========================================================================
SERVICE PAGES — section-only tweaks (cards/lists use COMMON COMPONENTS)
========================================================================== */
.apd-enterprise-section,
.apd-enterprise-section > .container {
    overflow: visible;
}
.apd-arch-section .apd-card-dark {
    padding: 15px 20px;
}
.apd-arch-section .apd-card-dark:hover {
    transform: translateY(-2px);
}
.apd-arch-section .apd-card-dark h3 {
    font-size: 20px;
}
.apd-arch-section .apd-check-list li {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 0px;
}
.apd-arch-section .apd-check-list li i {
    font-size: 14px;
}
.apd-formats-section .apd-format-head h3 {
    margin: 0;
}
.apd-formats-section .apd-card-dark .apd-tech-label {
    margin-bottom: 5px;
    text-transform: capitalize;
    letter-spacing: 0px;
}
.ecd-cta-section .hero-btns {
    margin-top: 25px;
    margin-bottom: 0;
    justify-content: center;
}
/* Platform showcase — standalone grid (ecommerce + custom software pages) */
.platform-showcase-hint {
    font-size: 15px;
    color: var(--text-body);
    margin: 0;
}
.section-dark .platform-showcase-hint {
    color: rgba(255, 255, 255, 0.72);
}
.platform-showcase-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 35px;
}
.platform-showcase-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
}
.platform-showcase-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border: 1px solid rgba(7, 20, 34, 0.85);
    border-radius: 50%;
    background: var(--white);
    font-size: 10px;
    color: var(--navy);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.platform-showcase-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.platform-showcase-link:hover .platform-showcase-icon img {
    filter: brightness(0) invert(1);
}
.platform-showcase-link:hover .platform-showcase-icon {
    border-color: var(--primary-hover);
    background: var(--primary-hover);
}
.platform-showcase-name::after {
    content: "\f063";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-left: 5px;
    transition: all 0.2s ease;
    font-size: 13px;
    transform: rotate(-135deg);
}
.platform-showcase-link:hover .platform-showcase-name::after {
    transform: rotate(-135deg) translate(2px, 2px);
}
.platform-showcase-link:hover .platform-showcase-name {
    color: var(--primary);
}
.platform-showcase-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy);
}
.platform-showcase-section--dark .platform-showcase-name {
    color: var(--white);
}
.platform-showcase-section--dark .platform-showcase-icon img {
    filter: brightness(0) saturate(100%) invert(9%) sepia(10%) saturate(6071%) hue-rotate(178deg) brightness(99%) contrast(95%);
    width: 35px;
    height: 35px;
}
.platform-showcase-section--dark .platform-showcase-link:hover .platform-showcase-icon img {
    filter: brightness(0) invert(1);
}
.platform-showcase-section .tab-section {
    max-width: none;
}
.platform-showcase-item {
    max-width: 150px;
}

/* Headless CMS — CMS Platforms logo grid */
#hcmdc-platforms {
    padding: 60px 0;
}
#hcmdc-platforms .section-header {
    margin-bottom: 48px;
}
.hcmdc-platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.hcmdc-platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    padding: 24px 20px;
    border: 1px solid rgba(7, 20, 34, 0.12);
    border-radius: 4px;
    background: var(--white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.hcmdc-platform-logo:hover {
    border-color: var(--navy);
    box-shadow: 0 10px 24px rgba(41, 182, 209, 0.18);
    transform: translateY(-3px);
}
.hcmdc-platform-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
}
/* Headless CMS — CMS Platforms logo grid */
.us-market-section {
    background: #f1f1f1;
}
.us-market-section .us-market-col {
    gap: 30px;
}
.us-market-section .apd-card-light {
    border-color: var(--border-accent);
}
.us-market-section .apd-card-light:hover {
    border-color: var(--primary-border);
}
.us-market-section .apd-card-light h3 {
    line-height: 1.3;
    margin-bottom: 10px;
}

/* --- Section 11: Testimonials (#testimonials-apd) --- */
.apd-testimonials-section.section-white {
    background: var(--white);
    border-top: 1px solid var(--border);
}

/* --- Section 12: FAQ (#faq-apd) --- */
.faq-accordion {
    max-width: 920px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-page .faq-item:last-child {
    border-bottom: none;
}
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
.faq-trigger:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}
.faq-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    line-height: 1;
}
.faq-question {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-body);
    line-height: 1.4;
}
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1;
    color: var(--text-body);
    text-align: center;
}
.faq-icon::before {
    content: '+';
}
.faq-item.is-open .faq-num {
    border-color: var(--primary);
    background: #29b6d10a;
    color: var(--primary);
}
.faq-item.is-open .faq-icon {
    color: var(--primary);
}
.faq-item.is-open .faq-icon::before {
    content: '\2212';
}
.faq-panel {
    display: none;
    padding: 0 50px 26px 66px;
}
.faq-item.is-open .faq-panel {
    display: block;
}
.faq-panel[hidden] {
    display: none !important;
}
.faq-item.is-open .faq-panel[hidden] {
    display: block !important;
}
.faq-answer {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.5;
    margin: 0;
    max-width: 1000px;
}

/* Boxed FAQ — dark toggle left, bordered items */
.faq-accordion--boxed {
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-accordion--boxed .faq-item {
    border: 1px solid var(--border);
    background: var(--white);
}
.faq-accordion--boxed .faq-trigger {
    align-items: stretch;
    gap: 0;
    padding: 0;
}
.faq-accordion--boxed .faq-trigger:focus-visible {
    outline-offset: 2px;
    border-radius: 0;
}
.faq-accordion--boxed .faq-icon {
    width: 45px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    font-size: 1.5rem;
}
.faq-accordion--boxed .faq-question {
    align-self: center;
    padding: 12px 16px;
}
.faq-accordion--boxed .faq-item.is-open .faq-icon {
    color: var(--white);
}
.faq-accordion--boxed .faq-panel {
    padding: 0 16px 20px 61px;
}
.faq-accordion--boxed .faq-answer + .faq-answer-list {
    margin-top: 8px;
}
.faq-accordion--boxed .faq-answer-list {
    margin: 0;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.6;
}
.faq-accordion--boxed .faq-answer-list li + li {
    margin-top: 4px;
}
.faq-answer p{
    margin-bottom: 10px;
}
.faq-answer p:last-child{
    margin-bottom: 0;
}
.faq-answer ul{
    list-style: disc;
    padding-left: 20px;
}
/* Migration process — matches reference layout */
.step-track {
    position: relative;
}
.step-track__head {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}
.step-track__rail {
    position: relative;
    z-index: 1;
    padding-bottom: 0px;
}
.step-track__line {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 50px;
    z-index: 9;
    overflow: visible;
}
.step-track__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    list-style: none;
    margin: 0;
    position: relative;
    z-index: 1;
}
.step-track__item {
    list-style: none;
}
.step-track__card {
    position: relative;
    height: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 14px;
    background: var(--white);
    border: 1px solid rgba(220, 232, 240, 0.85);
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(7, 20, 34, 0.06);
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.step-track__icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f8fd;
    border-radius: 50px;
}
.step-track__icon img {
    width: 55px;
    height: 55px;
    filter: brightness(0) saturate(100%) invert(35%) sepia(32%) saturate(1038%) hue-rotate(168deg) brightness(93%) contrast(89%);
}
.step-track__text {
    flex: 1;
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 12px;
    padding: 10px 0;
    border-bottom: 1px solid #00000021;
}
.step-track__text strong {
    color: var(--primary);
    font-weight: 700;
    font-size: 17px;
}
.step-track__num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--brand-blue) 100%);
    border: 4px solid var(--white);
    box-shadow: 0 4px 14px rgba(41, 182, 209, 0.4);
    z-index: 99;
}
.step-track__cta {
    position: relative;
    z-index: 1;
    margin-top: 44px;
}
.apd-industry-card-dark {
    padding: 20px 18px;
    background: var(--navy-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.apd-industry-card-dark:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--brand-blue) 100%);
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(41, 182, 209, 0.22);
    transform: translateY(-2px);
}
.apd-industry-card-dark h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--white);
    line-height: 1.25;
    transition: color 0.2s ease;
}
.apd-industry-card-dark p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255);
    transition: color 0.2s ease;
}
.apd-industry-card-dark:hover h3,
.apd-industry-card-dark:hover p {
    color: var(--white);
}

/* ==========================================================================
Custom Software — Why Choose Section
Reuses: section-light, section-label, section-title.dark, section-desc.dark,
apd-features-layout, apd-features-intro, section-intro--left
========================================================================== */
.csd-why-section .apd-features-layout {
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.56fr);
    gap: 48px 64px;
    align-items: center;
}
.csd-why-section .apd-features-intro {
    position: static;
}
.csd-why-benefits {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.csd-why-benefits__line {
    position: absolute;
    left: 22px;
    top: 22px;
    width: 2px;
    height: calc(100% - 44px);
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.16);
    border-radius: 2px;
    overflow: hidden;
    z-index: 0;
}
.csd-why-benefit {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}
.csd-why-benefit__icon {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--brand-blue) 100%);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(41, 182, 209, 0.28);
}
.csd-why-benefit__body h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--white);
    margin: 0 0 8px;
}
.csd-why-benefit__body p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}
/* ==========================================================================
About Page — Our Story Section
========================================================================== */
.our-story-layout {
    align-items: start;
}
.our-story-narrative p {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    margin: 0 0 18px;
}
.our-story-narrative p:last-child {
    margin-bottom: 0;
}
.our-story-advantage {
    margin-top: 48px;
}
.our-story-advantage__title {
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: center;
}
.our-story-advantage__title .text-highlight {
    display: inline;
    background: linear-gradient(135deg, var(--primary), var(--brand-blue));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.our-story-advantage__divider {
    width: 56px;
    height: 3px;
    margin: 0 auto 28px;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--brand-blue) 100%);
}
.our-story-advantage__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.our-story-advantage-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.our-story-advantage-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}
.our-story-advantage-card__num {
    position: absolute;
    top: 0;
    left: 0;
    min-width: auto;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-lg) 0 var(--radius) 0;
}
.our-story-advantage-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--brand-blue) 100%);
    color: var(--white);
    font-size: 18px;
    box-shadow: 0 4px 14px rgba(41, 182, 209, 0.22);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.our-story-advantage-card:hover .our-story-advantage-card__icon {
    box-shadow: 0 6px 18px rgba(41, 182, 209, 0.32);
    transform: translateY(-1px);
}
.our-story-advantage-card__title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--navy);
    margin: 0 0 10px;
}
.our-story-advantage-card__line {
    display: block;
    width: 32px;
    height: 3px;
    margin: 0 0 10px;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--brand-blue) 100%);
}
.our-story-advantage-card__desc {
    flex: 1;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-body);
    margin: 0;
}

/* Timeline — reuses process-timeline / process-step from style.css */
.our-story-timeline {
    max-width: none;
    margin: 0;
}
.our-story-timeline .pr-line {
    left: 27px;
}
.our-story-step {
    grid-template-columns: 56px 1fr;
    gap: 16px 18px;
    align-items: center;
}
.our-story-step .process-step__marker {
    width: 48px;
    height: 48px;
    justify-self: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--brand-blue) 100%);
    border: 2px solid var(--primary-light);
    box-shadow:
        0 0 0 3px rgba(41, 182, 209, 0.1),
        0 4px 14px rgba(42, 100, 150, 0.18);
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}
.our-story-step .process-step__marker::after {
    border-color: rgba(42, 100, 150, 0.28);
}
.our-story-step .process-step__icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-story-step__icon {
    font-size: 17px;
    color: var(--white);
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}
.our-story-step:hover .process-step__marker {
    background: var(--white);
    border-color: var(--brand-blue);
    box-shadow:
        0 0 0 3px rgba(42, 100, 150, 0.12),
        0 4px 16px rgba(41, 182, 209, 0.24);
    transform: scale(1.06);
}
.our-story-step:hover .our-story-step__icon {
    color: var(--brand-blue);
    transform: scale(1.05);
}
.our-story-step__card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 20px 22px 22px;
    overflow: visible;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.our-story-step__card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--card-shadow-hover);
    transform: none;
}

/* Card pointer — scaled border-triangles aligned to 40px marker center */
.our-story-step__card::before {
    top: 50%;
    left: -14px;
    width: 0;
    height: 0;
    margin-top: -13px;
    background: transparent;
    border: none;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-right: 14px solid var(--border);
    transform: none;
}
.our-story-step__card::after {
    display: block;
    top: 50%;
    left: -12px;
    width: 0;
    height: 0;
    margin-top: -12px;
    background: transparent;
    border: none;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 13px solid var(--white);
    transform: none;
}
.our-story-step__card:hover::before {
    border-right-color: var(--border-accent);
}
.our-story-step__card h3 {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--navy-mid) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin: 0 0 6px;
    line-height: 1.1;
}
.our-story-step__card p {
    font-size: 16px;
    line-height: 1.3;
    color: #000;
}

/* ==========================================================================
About Page — Our Core Expertise Section
Uses common: tab-section, tab-section__tab, apd-card-dark.
Section-specific: grid spacing, card badge (.expertise-card__num).
========================================================================== */
.core-expertise-section {
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.core-expertise-section .grid.grid-cols-4 {
    gap: 40px 16px;
    padding-bottom: 28px;
}
.core-expertise-section .apd-card-dark {
    position: relative;
    overflow: visible;
    padding: 20px 18px 30px;
}
.core-expertise-section .apd-card-dark p {
    margin-bottom: 0;
    font-weight: 500;
    text-align: center;
}
.expertise-card__num {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--brand-blue) 100%);
    border: 4px solid var(--navy-card);
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}
.core-expertise-section .apd-card-dark:hover .expertise-card__num {
    box-shadow: 0 4px 16px rgba(41, 182, 209, 0.28);
}
.core-expertise-section [data-category].hidden {
    display: none;
}
.specialist-diff__layout {
    align-items: stretch;
    gap: 40px;
}
.specialist-diff__column {
    display: flex;
    flex-direction: column;
    padding: 24px 20px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.specialist-diff__column--neg {
    background: var(--white);
    border-color: var(--border);
}
.specialist-diff__column--pos {
    background: linear-gradient(145deg, var(--white) 0%, var(--bg-ice) 100%);
    border-color: var(--border-accent);
    box-shadow: var(--shadow);
}
.specialist-diff__column--neg:hover {
    border-color: rgba(7, 20, 34, 0.14);
    box-shadow: var(--card-shadow);
}
.specialist-diff__column--pos:hover {
    border-color: var(--primary-border);
    box-shadow: var(--card-shadow-hover);
}
.specialist-diff__col-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}
.specialist-diff__col-head-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.specialist-diff__col-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}
.specialist-diff__col-subtitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.4;
}
.specialist-diff__column--neg .specialist-diff__col-title {
    color: #e05c5c;
}
.specialist-diff__column--neg .specialist-diff__col-subtitle {
    color: #000;
}
.specialist-diff__column--pos .specialist-diff__col-title {
    color: var(--brand-blue);
}
.specialist-diff__column--pos .specialist-diff__col-subtitle {
    color: #000;
}
.specialist-diff__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.specialist-diff__col-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: var(--white);
}
.specialist-diff__column--neg .specialist-diff__col-icon {
    background: #f87171;
    color: var(--white);
    box-shadow: 0 2px 10px rgba(248, 113, 113, 0.35);
}
.specialist-diff__column--pos .specialist-diff__col-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--brand-blue) 100%);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(41, 182, 209, 0.35);
}
.specialist-diff__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.specialist-diff__card--neg {
    border-color: var(--border);
}
.specialist-diff__card--pos {
    border-color: rgba(41, 182, 209, 0.18);
}
.specialist-diff__card:hover {
    transform: translateY(-2px);
}
.specialist-diff__card--neg:hover {
    border-color: rgba(7, 20, 34, 0.16);
    box-shadow: var(--card-shadow);
}
.specialist-diff__card--pos:hover {
    border-color: var(--primary-border);
    box-shadow: var(--card-shadow-hover);
}
.specialist-diff__card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    margin-top: 1px;
}
.specialist-diff__card--neg .specialist-diff__card-icon {
    background: rgba(248, 113, 113, 0.14);
    color: #f87171;
}
.specialist-diff__card--pos .specialist-diff__card-icon {
    background: var(--primary-muted);
    color: var(--primary);
}
.specialist-diff__card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
}
.specialist-diff__card--neg p {
    color: #000;
}
.specialist-diff__card--pos p {
    color: #000;
}
.csr-video-grid {
    gap: 14px;
    margin-top: 40px;
}
.csr-video-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 22px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(7, 20, 34, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    aspect-ratio: 16 / 10;
}
.csr-video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.csr-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--navy);
    pointer-events: none;
    opacity: 0.2;
}
.csr-video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(7, 20, 34, 0.2);
}
.csr-video-card--education::before {
    background:
        url("../image/thumbnail-images.webp") center/cover no-repeat,
        url("../image/thumbnail-images.png") center/cover no-repeat,
        url("../image/thumbnail-images.jpg") center/cover no-repeat,
        radial-gradient(circle at 74% 20%, rgba(41, 182, 209, 0.34), transparent 45%),
        radial-gradient(circle at 22% 78%, rgba(12, 84, 143, 0.42), transparent 52%);
}
.csr-video-card--inclusion::before {
    background:
        url("../image/thumbnail-images_1.webp") center/cover no-repeat,
        url("../image/thumbnail-images_1.png") center/cover no-repeat,
        url("../image/thumbnail-images_1.jpg") center/cover no-repeat,
        radial-gradient(circle at 70% 20%, rgba(42, 100, 150, 0.45), transparent 47%),
        radial-gradient(circle at 18% 74%, rgba(41, 182, 209, 0.24), transparent 52%);
}
.csr-video-card__play {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--navy);
    font-size: 22px;
    box-shadow: 0 8px 18px rgba(7, 20, 34, 0.18);
}
.csr-video-card__play i {
    margin-left: 3px;
}
.csr-pillar-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(7, 20, 34, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    aspect-ratio: 4 / 4;
}
.csr-pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(7, 20, 34, 0.22);
}
.csr-pillar-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.csr-pillar-card:hover img.csr-pillar-card__image {
    transform: scale(1.1);
}
.csr-pillar-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 20, 34, 0.08) 0%, rgba(7, 20, 34, 0.45) 42%, rgba(7, 20, 34, 0.88) 100%);
    pointer-events: none;
}
.csr-pillar-card__content {
    position: relative;
    z-index: 1;
    padding: 24px 22px;
    color: var(--white);
}
.csr-pillar-card__content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
}
.csr-pillar-card__content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}
.csr-involve-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.csr-involve-card p {
    flex: 1;
}
.csr-action-section .section-desc {
    margin-bottom: 8px;
}
.car-dealership-image-background{
    background: url(../image/car-dealer-website.webp) 105% 50% / 50% no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
.car-dealership-image-section img{
    display: none;
}
.wp-hire-models .two-col {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    align-items: center;
}
.wp-hire-models .wp-hire-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.wp-hire-models .wp-hire-option {
    display: flex;
    align-items: center;
    gap: 18px;
}
.wp-hire-models .wp-hire-option h3 {
    margin: 0 0 4px;
}
.wp-hire-models .wp-hire-option p {
    font-size: 14px;
    line-height: 1.45;
}
.wp-hire-models .wp-hire-option__icon {
    flex-shrink: 0;
    width: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--navy);
}

/* WordPress website types — dark hub section */
.wp-website-types .two-col {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
}
.wp-website-types .wp-site-types-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--white);
    font-size: 15px;
    line-height: 1.45;
    margin-right: 12px;
}
.wp-website-types .wp-site-types-list li:last-child {
    margin-bottom: 0;
}
.wp-website-types .wp-site-types-list li i {
    margin-top: 4px;
    font-size: 11px;
    color: var(--white);
}
.wp-website-types .wp-site-types-cta {
    margin-top: 20px;
}
.wp-website-types .wp-site-types-cta .section-desc {
    margin-bottom: 0;
}
.wp-hub-diagram {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 1;
    margin: 0 auto;
}
.wp-hub-diagram__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.wp-hub-diagram__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    color: var(--white);
    z-index: 2;
}
.wp-hub-diagram__node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 108px;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.wp-hub-diagram__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.wp-hub-diagram__label {
    font-size: 11px;
    line-height: 1.35;
    color: var(--white);
}
.wp-hub-diagram__node--top { top: 8%; left: 50%; }
.wp-hub-diagram__node--top-right { top: 18%; left: 82%; }
.wp-hub-diagram__node--right { top: 50%; left: 92%; }
.wp-hub-diagram__node--bottom-right { top: 82%; left: 82%; }
.wp-hub-diagram__node--bottom { top: 92%; left: 50%; }
.wp-hub-diagram__node--bottom-left { top: 82%; left: 18%; }
.wp-hub-diagram__node--left { top: 50%; left: 8%; }
.wp-hub-diagram__node--top-left { top: 18%; left: 18%; }

article.eds-store-card {
    overflow: hidden;
    z-index: 99;
    position: relative;
    border-radius: 10px;
    border: 1px solid var(--navy);
    background: #fff;
}
article.eds-store-card .eds-store-image {
    aspect-ratio: 19/10;
    border-bottom: 1px solid var(--border);
}
article.eds-store-card .eds-store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eds-store-content {
    padding: 15px;
}

.eds-store-content h3 {
    font-size: 22px;
}
.eds-store-content .apd-check-list li {
    font-size: 14px;
    margin-bottom: 4px;
}
.eds-store-content  a {
    padding-top: 10px;
    display: block;
}
.image-with {
    width: 100%;
    height: auto;
}
.image-with img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Single case study — label + title at top, content left, mockup right */
.single-case-study {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 48px 72px;
    align-items: center;
}
.single-case-study__content {
    max-width: 520px;
}
.single-case-study__title {
    margin-bottom: 0;
    text-align: left;
}
.single-case-study__name {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-body);
    line-height: 1.3;
    margin: 0 0 16px;
}
.single-case-study__desc {
    margin-bottom: 28px;
}
.single-case-study__content .apd-check-list {
    margin-bottom: 28px;
}
.single-case-study__content .section-desc:last-of-type {
    margin-bottom: 28px;
}
.single-case-study__media {
    display: flex;
    justify-content: center;
    align-items: center;
}
.single-case-study__media img {
    width: 100%;
    max-width: 640px;
    height: auto;
    object-fit: contain;
}
.m2-template-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.m2-template-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 37, 64, 0.12);
}
.m2-template-card__preview {
    padding: 14px 14px 0;
    background: #fff;
}
.m2-template-card__preview img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid rgba(10, 37, 64, 0.08);
    object-fit: cover;
    aspect-ratio: 1 / 1;
}
.m2-template-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 18px;
}
.m2-template-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy, #0a2540);
    line-height: 1.3;
}
.m2-template-card__visit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 72px;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary, #29b6d1) 0%, var(--brand-blue, #1e88b5) 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.m2-template-card__visit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    color: #fff;
}
.video-embed {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 32px auto 0;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.videowrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 53%;
    padding-top: 25px;
    height: 0;
}
span.small-text {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}
.lpdd-purpose-visual {
    width: 100%;
    margin-top: 8px;
}
.lpdd-purpose-visual picture,
.lpdd-purpose-visual img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
/* Map */
.contacts-map-section {
    line-height: 0;
}
.contacts-map {
    display: block;
    width: 100%;
    min-height: 400px;
    border: 0;
}
/* Enquiry grid */
.contacts-enquiries-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.contacts-enquiry-col {
    padding: 25px 20px;
    text-align: center;
    border-right: 1px solid var(--primary-light);
}
.contacts-enquiry-col:last-child {
    border-right: none;
}
.contacts-enquiry-col h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 12px;
    line-height: 1.3;
}
.contacts-enquiry-col p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0;
}
.contacts-enquiry-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.2s ease;
}
.contacts-enquiry-link:hover {
    color: var(--primary-hover);
}
.contacts-enquiry-link svg {
    width: 25px;
    height: 25px;
}
.contacts-enquiry-link i {
    font-size: 18px;
    color: var(--primary);
}
.faq-page .faq-accordion {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--card-shadow-hover);
    padding: 8px 32px;
    max-width: 920px;
}
.privacy-section .section-title {
    text-transform: none;
}
.privacy-section .section-desc {
    margin-bottom: 8px;
}
.privacy-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin: 20px 0 16px;
    padding-top: 20px;
    border-top: 1px solid var(--primary-light);
}
.privacy-section h3 {
    font-size: 25px;
    font-weight:600;
    color: var(--text-body);
    line-height: 1.4;
    margin: 10px 0;
}
.privacy-section p {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-body);
}
.privacy-section ul {
    margin: 0 0 14px;
    padding-left: 1.35rem;
    list-style: disc;
}
.privacy-section ul li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-body);
}
.privacy-section ul li:last-child {
    margin-bottom: 0;
}
a#hero-captcha-refresh-link {
    text-decoration: underline;
}

/* Clientele page */

.clientele-logos-slick .slick-slide {
    padding: 0 9px;
    height: auto;
}
.clientele-logos-slick__slide {
    height: 100%;
}
.clientele-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    height: 100%;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    width: 100%;
}
.clientele-logo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(41, 182, 209, 0.35);
    box-shadow: var(--card-shadow-hover);
}
.clientele-logo-card__img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
}
.clientele-logos-nav {
    justify-content: center;
    margin-top: 24px;
}
.clientele-slider-wrap {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}
.clientele-google-slick:not(.slick-initialized) .clientele-google-slick__slide:nth-child(n + 3),
.clientele-clutch-slick:not(.slick-initialized) .clientele-clutch-slick__slide:nth-child(n + 2) {
    display: none;
}
.clientele-google-slick .slick-slide,
.clientele-clutch-slick .slick-slide {
    padding: 0 10px;
}
.clientele-google-slick__slide img,
.clientele-clutch-slick__slide img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
}
.clientele-clutch-slick__slide a {
    display: block;
    transition: transform 0.2s ease;
}
.clientele-clutch-slick__slide a:hover {
    transform: translateY(-4px);
}
.clientele-slider-nav {
    justify-content: center;
    margin-top: 24px;
}
.clientele-reviews-section .clientele-google-slick__slide img {
    border-color: rgba(255, 255, 255, 0.12);
}
.clientele-form-box {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--card-shadow-hover);
    padding: 32px;
}
/* Careers page - team testimonial slider */
.careers-team-slider {
    max-width: 980px;
    margin: 0 auto;
}
.careers-team-card-shell {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--card-shadow-hover);
    overflow: hidden;
    padding-bottom: 24px;
    --careers-card-pad-x: 36px;
}
.careers-team-slick .slick-list {
    overflow: hidden;
}
.careers-team-slide__card {
    position: relative;
    display: flex;
    min-height: 0;
    padding: 32px var(--careers-card-pad-x) 8px;
    gap: 60px;
    width: 100%;
}
.careers-team-slide__dots {
    position: absolute;
    top: 32px;
    left: var(--careers-card-pad-x);
    width: 56px;
    height: 42px;
    background-image: radial-gradient(circle, rgba(41, 182, 209, 0.55) 2.5px, transparent 3px);
    background-size: 14px 14px;
    pointer-events: none;
    z-index: 3;
}
.careers-team-slide__hero {
    position: relative;
    width: 33%;
    z-index: 9;
}
.careers-team-slide__photo {
    padding: 12px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
    border: 1px solid var(--border);
}
.careers-team-slide__photo img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.careers-team-slide__content {
    position: relative;
    z-index: 1;
    padding: 8px 0 0;
    text-align: left;
    max-width: 100%;
    flex: 1;
}
.careers-team-slide__quote-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 35px;
    margin-bottom: 5px;
}
.careers-team-slide__quote-bg {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: clamp(6rem, 12vw, 9rem);
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--primary-muted);
    pointer-events: none;
    user-select: none;
}
.careers-team-slide__quote {
    position: relative;
    z-index: 1;
    font-size:18px;
    font-style: italic;
    color: var(--text-body);
    margin: 0 0 20px;
    line-height: 1.5;
}
.careers-team-slide__divider {
    display: block;
    width: 56px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin-bottom: 14px;
}
.careers-team-slide__name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.2;
}
.careers-team-slide__role {
    display: block;
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 4px;
}
.careers-team-thumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 10px var(--careers-card-pad-x) 0;
    margin-top: 0;
}
.careers-team-thumb {
    width: 64px;
    height: 64px;
    padding: 0;
    border: 3px solid transparent;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.careers-team-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.careers-team-thumb.is-active,
.careers-team-thumb:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(41, 182, 209, 0.22);
}
.video-div{
    background: var(--white);
    border: 1px solid var(--border);
}
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.video-div .video{
    position: relative;
}
.video-div img {
    aspect-ratio: 560 / 320;
    object-fit: cover;
    vertical-align: middle;
    height: auto;
}
.video-div .video .play-button {
    position: absolute;
    background: var(--brand-blue);
    color: var(--white);
    padding: 5px 8px;
    border-radius: 4px;
    bottom: 10px;
    right: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.video-div .video .play-button svg {
    width: 15px;
    height: 15px;
}
.video-div .video-link {
    display: block;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}
.video-div .video-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.vt-video-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.vt-video-modal[hidden] {
    display: none;
}
.vt-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 34, 0.82);
    cursor: pointer;
}
.vt-video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(800px, 100%);
}
.vt-video-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-body);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.vt-video-modal__close:hover,
.vt-video-modal__close:focus-visible {
    background: var(--primary);
    color: var(--white);
}
.vt-video-modal__frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    background: #000 center / cover no-repeat;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.vt-video-modal__frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.vt-video-modal__frame-wrap.is-loaded iframe {
    opacity: 1;
}
body.vt-modal-open {
    overflow: hidden;
}
.video-div .client-content {
    padding: 15px 20px;
}
.video-div p.short-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}
.video-div p.read-more-text {
    color: var(--primary);
    margin-top: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.video-div p.read-more-text i{
    margin-top: 3px;
}
.video-div .tippy-box[data-theme~=custom] {
    background-color: var(--white);
    color: var(--text-body);
    border-radius: 10px;
    padding: 0;
    max-width: 90vw;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
}
.video-div .tooltip-content ul li {
    list-style-position: outside;
    line-height: normal;
    padding-bottom: 8px
}

.video-div .tooltip-content ul.list-style-none {
    list-style-type: none;
    padding-left: 10px
}
.tippy-content {
    background: #f1fafd;
    border-radius: 10px;
    border: 2px solid #2298c1
}

.video-div .tippy-box[data-theme~=custom][data-placement^=bottom]>.tippy-arrow {
    color: #2298c1;
    left: 50px!important;
    width: 100%;
    transform: none!important
}

.video-div .tippy-box[data-theme~=custom][data-placement^=bottom]>.tippy-arrow::before {
    top: -11px;
    border-width: 0 12px 12px
}
.video-div .tooltip-content {
    max-height: 220px;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
    color: #1a1a1a;
}
.video-div .tooltip-content p:last-child {
    padding-bottom: 0;
}
.video-div .tooltip-content p {
    padding-bottom: 10px;
}
.video-div .tooltip-content::-webkit-scrollbar {
    width: 10px;
    background-color: #c4efff;
    border-radius: 5px;
    border-left: 2px solid #f1fafd;
    border-right: 2px solid #f1fafd;
}
.video-div .tooltip-content::-webkit-scrollbar-thumb {
    background-color: #2298c1;
    border-radius: 5px;
}
.sitemap-page h1{
    font-size: 40px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 20px;
    line-height: 1.2;
}
ul.sitemap_list>li>ul {
    margin-left: 30px;
    list-style-type: disc;
}
ul.sitemap_list>li>ul ul {
    margin-left: 30px;
}
ul.sitemap_list>li>ul ul{
    list-style-type: circle;
}
.section-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}
.section-buttons-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.home-csr-layout {
    align-items: center;
}
.home-csr-video-link {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    line-height: 0;
    cursor: pointer;
    text-decoration: none;
}
.home-csr-video-link:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}
.home-csr-video-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.home-csr-video-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}
.home-csr-video-link__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--navy);
    font-size: 24px;
    box-shadow: 0 8px 22px rgba(7, 20, 34, 0.2);
    pointer-events: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-csr-video-link__play i {
    margin-left: 4px;
}
.home-csr-video-link:hover .home-csr-video-link__play {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 10px 28px rgba(7, 20, 34, 0.24);
}
@media only screen and (min-width: 1700px) {
    .car-dealership-image-background {
        background-position: 100%;
        left: 52%;
        right: unset;
        max-width: 1700px;
        transform: translateX(-50%);
    }
}
@media (max-width: 1200px) {
    .our-story-advantage__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .careers-team-slide__card{
        gap: 45px;
    }
    .careers-team-slide__hero {
        width: 36%;
    }
}
@media (max-width: 1100px) {
    .apd-testimonials-section .testimonials-nav{
        display: block;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .csr-section .about-us-image {
        max-width: min(500px, 100%);
        margin-inline: auto;
    }
}
@media (max-width: 1028px) {
    .solution-card-inner {
        gap: 30px;
    }
}
@media (max-width: 1024px) {
    .step-track__steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .step-track__line {
        display: none;
    }
    .grid-cols-4{
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-cols-4-sm{
        grid-template-columns: repeat(2, 1fr);
    }
    .two-col, .two-col-same-width {
        gap: 40px;
    }
    .two-col.reverse .grid {
        order: 1;
    }
    .car-dealership-image-background {
        background: none;
    }
    .car-dealership-image-section img{
        display: block;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .csr-section .two-col-same-width {
        grid-template-columns: minmax(0, 1fr);
    }
    .csr-section .about-us-image img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    .csr-video-grid {
        max-width: 760px;
        margin: 40px auto 0;
    }
    .case-study-slick:not(.slick-initialized) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .case-study-slider-wrap:not(:has(.case-study-slick__slide:nth-child(4))) + .case-study-nav {
        display: flex;
    }
    .case-study-slider-wrap:not(:has(.case-study-slick__slide:nth-child(3))) + .case-study-nav {
        display: none;
    }
    .solution-card-inner{
        gap: 30px;
    }
    .menu{
        gap: 18px;
    }
}
@media (min-width: 992px) and (max-width: 1022px) {
    .solution-card-inner {
        gap: 20px;
    }
}
@media screen and (max-width: 992px) {
    .section-title{
        font-size: 40px;
    }
    .hero-stats-bar{
        margin-top: 25px;
    }
    .hero-grid {
        gap: 28px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .hero .container{
        max-width: 100%;
    }
    .hero-content{
        width: 100%;
    }
    .hero-form-wrap {
        width: 100%;
        margin: 0 auto;
    }
    .two-col, .two-col-same-width{
        grid-template-columns: 1fr;
    }
    .single-case-study__header {
        margin-bottom: 32px;
    }
    .single-case-study {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .single-case-study__content {
        max-width: none;
    }
    .single-case-study__title {
        font-size: 36px;
    }
    .single-case-study__media img {
        max-width: 100%;
    }
    .csr-video-grid {
        margin-top: 32px;
    }
    .about-us-image img {
        margin: 0 auto;
        max-width: unset;
    }
    .portfolio-card .project__title h3 {
        font-size: 22px;
    }
    .menu-toggle {
        display: flex;
        z-index: 1002;
    }
    .menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(7, 20, 34, 0.5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 1000;
        backdrop-filter: blur(2px);
    }
    .site-header.menu-open .menu-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .site-header.menu-open .menu-toggle {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }
    .navbar {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 10px 0;
        position: relative;
        z-index: 1001;
    }
    .site-header.menu-open {
        z-index: 1001;
    }
    .menu-panel {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        box-shadow: -8px 0 40px rgba(7, 20, 34, 0.14);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }
    .site-header.menu-open .menu-panel {
        transform: translateX(0);
    }
    .menu {
        position: static;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        list-style: none;
        flex: 1 1 auto;
    }
    .menu-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 16px 20px 12px;
        border-bottom: 1px solid var(--border);
        background: var(--white);
        position: sticky;
        top: 0;
        z-index: 2;
    }
    .menu-drawer-logo {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 0;
        text-decoration: none;
        padding: 0px!important;
    }
    .menu-drawer-logo .site-logo {
        max-height: 44px;
        max-width: 160px;
        width: auto;
        height: auto;
    }
    .menu-drawer-close {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        border-radius: 0px;
        background: none;
        color: var(--navy);
        font-size: 25px;
        cursor: pointer;
        transition: border-color 0.2s ease, color 0.2s ease;
    }
    .menu-drawer-close:hover {
        border-color: var(--border);
        color: var(--navy);
    }
    .menu > li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    .menu > li > a,
    .menu > li.has-dropdown .menu-parent-row .menu-parent-link {
        padding: 15px 20px;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-body);
    }
    .menu > li.has-dropdown > .menu-parent-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }
    .menu > li.has-dropdown > .menu-parent-row > .menu-submenu-toggle {
        width: auto;
        height: auto;
        padding: 18px 20px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: var(--text-body);
        flex-shrink: 0;
    }
    .menu > li.has-dropdown > .menu-parent-row .menu-dropdown-arrow {
        margin-left: 0;
        font-size: 12px;
        color: var(--text-body);
    }
    .menu > li.has-dropdown > .menu-parent-row > .menu-submenu-toggle:hover {
        background: transparent;
        color: var(--primary);
    }
    .menu > li.submenu-open > .menu-parent-row > .menu-parent-link {
        color: var(--text-body);
        background: transparent;
    }
    .menu > li.submenu-open > .menu-parent-row {
        background: transparent;
        border-color: transparent;
    }
    .menu > li.submenu-open > .menu-parent-row > .menu-submenu-toggle {
        color: var(--text-body);
    }
    .menu > li.submenu-open > .menu-parent-row .menu-dropdown-arrow {
        transform: rotate(180deg);
        color: var(--primary);
    }
    .menu > li.has-dropdown .dropdown-menu {
        position: relative;
        top: auto;
        left: 0;
        min-width: 0;
        width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid var(--border);
        padding: 0;
        margin-top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        max-height: none;
        overflow: visible;
        animation: none;
    }
    .menu > li.has-dropdown.submenu-open .dropdown-menu {
        display: block;
    }
    .menu > li.has-dropdown .dropdown-menu li a,
    .menu > li.has-dropdown .dropdown-menu .dropdown-menu__link {
        padding: 15px 20px;
        font-size: 15px;
        border-bottom: none;
    }
    .menu > li.has-dropdown .dropdown-menu li {
        border-bottom: 1px solid var(--border);
    }
    .menu > li.has-dropdown .dropdown-menu li:last-child {
        border-bottom: none;
    }
    .menu > li.has-dropdown .dropdown-menu .dropdown-menu__link {
        display: flex;
        align-items: center;
        gap: 16px;
        color: var(--navy);
    }
    .menu > li.has-dropdown .dropdown-menu .dropdown-menu__icon {
        width: 25px;
        height: 25px;
        min-width: 28px;
        margin-right: 0px;
        margin-top: 0px;
    }
    .menu > li.has-dropdown .dropdown-menu li a:hover,
    .menu > li.has-dropdown .dropdown-menu .dropdown-menu__link:hover {
        background: var(--bg-ice);
    }
    .menu-drawer-cta-wrap {
        display: none;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
    }
    .menu-drawer-extra {
        display: block;
        margin-top: auto;
        padding: 20px;
    }
    .menu-drawer-extra .footer-col-title {
        font-size: 18px;
        font-weight: 500;
        color: var(--text-body);
        margin-bottom: 12px;
    }
    .menu-drawer-extra .footer-contact .info-link a {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
    .menu-drawer-extra .footer-contact .info-link i {
        width: 16px;
        margin-top: 2px;
        flex-shrink: 0;
        color: var(--primary);
    }
    .menu-drawer-social {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border);
    }
    .menu-drawer-extra .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .menu-drawer-copy {
        margin: 18px 0 0;
        font-size: 12px;
        line-height: 1.5;
        color: var(--text-body);
        opacity: 0.7;
    }
    .menu-drawer-cta {
        display: block;
        width: 100%;
        text-align: center;
    }
    .navbar .logo-link {
        margin-right: auto;
    }
    .header-btn--bar {
        padding: 8px 16px;
        font-size: 13px;
        white-space: nowrap;
    }
    .menu-drawer-copy-right{
        margin-top: 18px;
        border-top: 1px solid var(--border);
        padding-top: 15px;
    
    }
    .testimonials-layout{
        grid-template-columns: repeat(1, 1fr);
    }
    .blog-grid-style-two{
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .grid-stack-md {
        grid-template-columns: 1fr;
    }
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-cols-4-md{
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-cols-3{
        grid-template-columns: repeat(2, 1fr);
    }
    .build-ecommerce-section .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .us-market-section .us-market-col {
        gap: 0px;
    }
    .apd-features-layout,
    .apd-whitelabel-section .apd-whitelabel-row,
    .csd-why-section .apd-features-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .apd-features-intro {
        position: static;
    }
    .platform-box__lists {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 48px;
    }
    .tab-section__tab span {
        text-align: center;
    }
    .our-story-timeline {
        margin-top: 8px;
    }
    .our-story-advantage {
        margin-top: 40px;
    }
    .our-story-advantage__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .specialist-diff__layout {
        gap: 20px;
    }
    .testimonial-card::before{
        width: 55px;
        height: 55px;
    }
    .wp-hire-models .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .wp-website-types .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .wp-hub-diagram {
        width: min(100%, 360px);
    }
    .wp-website-types .wp-site-types-grid {
        grid-template-columns: 1fr;
    }
    .footer-cta{
        padding: 35px;
    }
    .footer-cta__inner{
        row-gap: 25px
    }
    .contacts-enquiries-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .contacts-enquiry-col {
        border-right: none;
        border-bottom: 1px solid var(--primary-light);
    }
    .contacts-enquiry-col:nth-child(odd) {
        border-right: 1px solid var(--primary-light);
    }
    .contacts-enquiry-col:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .careers-team-slide__card{
        flex-wrap: wrap;
        gap: 25px;
        justify-content: start;
        height: fit-content;
    }
    .careers-team-slide__hero{
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        height: fit-content;
    }
    .careers-team-slide__content{
        width: 100%;
        flex: unset;
        text-align: center;
        padding-top: 0px;
    }
    .careers-team-slide__divider{
        margin: 0 auto 20px;
    }
    .careers-team-slide__quote-bg{
        display: none;
    }
}
@media (max-width: 767px) {
    h1 {
        font-size: 45px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 22px;
    }
    h5 {
        font-size: 18px;
    }
    h6 {
        font-size: 16px;
    }
    .container{
        padding: 0 20px;
    }
    .step-track__steps {
        grid-template-columns: repeat(2 , 1fr);
        gap: 16px;
    }
    .step-track__item {
        min-width: 0;
    }
    .step-track__card {
        min-height: auto;
        padding: 16px 10px;
    }
    .step-track__icon {
        width: 64px;
        height: 64px;
    }
    .step-track__icon img {
        width: 40px;
        height: 40px;
    }
    .step-track__text {
        font-size: 14px;
        line-height: 1.45;
        padding: 8px 0;
        margin-bottom: 10px;
    }
    .step-track__text strong {
        font-size: 14px;
    }
    .step-track__num {
        width: 44px;
        height: 44px;
        font-size: 12px;
        border-width: 3px;
    }
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4,
    .grid-cols-4-md,
    .grid-cols-4-sm {
        grid-template-columns:1fr;
    }
    .auction-types-grid {
        gap: 12px;
    }
    .auction-type-card {
        min-height: 68px;
        padding: 12px 14px;
    }
    .auction-type-card__label {
        font-size: 14px;
    }
    .build-ecommerce-section .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-blob {
        filter: blur(56px);
        opacity: 0.72;
    }
    .hero-blob--teal {
        left: -28%;
        top: -6%;
    }
    .hero-blob--blue {
        right: -28%;
        top: -8%;
    }
    .hero-blob--navy {
        left: 15%;
        bottom: -25%;
    }
    .hero-stats-bar {
        display: none;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px 40px;
        justify-items: center;
        width: 100%;
        max-width: 100%;
    }
    .grid-stack-sm {
        grid-template-columns: 1fr;
    }
    .process-step {
        grid-template-columns: 70px 1fr;
        gap: 16px 20px;
    }
    .process-step__marker {
        width: 60px;
        height: 60px;
    }
    .process-step__icon{
        width: 40px;
        height: 40px;
    }
    .pr-line{
        left: 30px;
    }
    .blog-grid-style-two {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .blog-side-list {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 8px;
    }
    .blog-side-card {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 16px;
    }
    .navbar .logo-link .site-logo {
        max-height: 48px;
        max-width: 180px;
    }
    .hero {
        padding: 40px 0px;
    }
    .hero-stats-bar .stat-item {
        text-align: center;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-desc {
        font-size: 16px;
        font-family: 'Parkinsans',Verdana, sans-serif;
        margin-bottom: 12px;
    }
    .section-title {
        font-size: 35px;
    }
    .section-header{
        margin-bottom: 30px;
    }
    .section-header.text-center .section-desc{
        font-size: 16px;
        line-height: 1.4;
    }
    .why-cyblance-card__head h3{
        min-height: 42px;
    }
    .section-title br{
        display: none;
    }
    .our-story-timeline .pr-line {
        left: 27px;
    }
    .our-story-step {
        grid-template-columns: 52px 1fr;
        gap: 14px 16px;
    }
    .our-story-step .process-step__marker {
        width: 44px;
        height: 44px;
    }
    .our-story-step__icon {
        font-size: 15px;
    }
    .our-story-step__card h3 {
        font-size: 24px;
    }
    .our-story-advantage {
        margin-top: 32px;
    }
    .our-story-advantage__title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .our-story-advantage__divider {
        margin-bottom: 22px;
    }
    .our-story-advantage__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .our-story-advantage-card {
        padding: 28px 16px 20px;
    }
    .our-story-advantage-card__num {
        min-width: 44px;
        padding: 6px 12px;
        font-size: 13px;
    }
    .our-story-advantage-card__icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    .our-story-advantage-card__title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    .our-story-advantage-card__line {
        width: 28px;
        margin-bottom: 8px;
    }
    .our-story-advantage-card__desc {
        font-size: 13px;
        line-height: 1.55;
    }
    .specialist-diff__column {
        padding: 20px 16px 16px;
    }
    .specialist-diff__col-head {
        margin-bottom: 14px;
    }
    .specialist-diff__cards {
        gap: 10px;
    }
    .specialist-diff__card {
        padding: 14px 16px;
    }
    .specialist-diff__card-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
    .specialist-diff__card p {
        font-size: 13px;
        line-height: 1.55;
    }
    .apd-whitelabel-table-block {
        margin-top: 24px;
    }
    .apd-whitelabel-table th,
    .apd-whitelabel-table td {
        padding: 12px 11px;
        font-size: 14px;
    }
    .apd-table-head-title {
        font-size: 15px;
    }
    .apd-table-head-sub {
        font-size: 11px;
    }
    .auction-types-grid.grid-cols-4.grid-cols-4-md{
        grid-template-columns: repeat(2, 1fr);
    }
    .apd-whitelabel-table-wrap {
        border: none;
        background: none;
        box-shadow: none;
    }
    .apd-whitelabel-table {
        border-collapse: separate;
        border-spacing: 0;
    }
    .apd-whitelabel-table thead {
        display: none;
    }
    .apd-whitelabel-table tbody {
        display: grid;
        gap: 12px;
    }
    .apd-whitelabel-table tbody tr {
        display: grid;
        gap: 8px;
        padding: 14px;
        border: 1px solid rgba(111, 170, 255, 0.2);
        border-radius: 14px;
        background: linear-gradient(180deg, rgba(24, 37, 67, 0.9) 0%, rgba(11, 22, 45, 0.96) 100%);
        box-shadow: none;
    }
    .apd-whitelabel-table-wrap::before{
        content: none
    }
    .apd-whitelabel-table tbody tr td:nth-child(2),
    .apd-whitelabel-table tbody tr td:nth-child(3) {
        background: transparent;
    }
    .apd-whitelabel-table tbody th,
    .apd-whitelabel-table tbody td {
        display: block;
        width: 100%;
        border-bottom: none;
        padding: 0;
        font-size: 13px;
        line-height: 1.45;
    }
    .apd-whitelabel-table tbody th {
        font-size: 16px;
        color: var(--white);
        font-weight: 600;
        margin-bottom: 2px;
        display: flex;
    }
    .apd-whitelabel-table tbody th i {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    .apd-whitelabel-table tbody td::before {
        content: attr(data-label);
        display: block;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-bottom: 3px;
        color: #8ec8ff;
        margin-bottom: 5px;
    }
    .apd-whitelabel-table tbody td:nth-child(2) {
        margin-bottom: 5px;
        padding-bottom: 10px;
        border-bottom: 1px dashed rgba(141, 189, 255, 0.25);
    }
    .apd-cell-value {
        font-size: 14px;
        gap: 8px;
    }
    .apd-cell-value i {
        font-size: 15px;
    }
    .hero-stats-bar .stat-num{
        font-size: 40px;
    }
    .platform-showcase-grid {
        gap: 25px;
    }
    .hcmdc-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .hcmdc-platform-logo {
        min-height: 80px;
        padding: 20px 16px;
    }
    .hcmdc-platform-logo img {
        max-height: 40px;
    }
    .tab-section__nav {
        padding: 5px;
    }
    .tab-section__tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    .tab-section__grid {
        justify-content: center;
        gap: 20px 24px;
    }
    .tab-section__icon {
        width: 132px;
        height: 72px;
    }
    .btn{
        display: inline-block;
        white-space: normal;
        font-size: 16px;
        text-align: center;
    }
    .btn i{
        margin-left: 5px;
    }
    .wdc-intro-section .apd-features-layout{
        gap: 0px;
    }
    .case-study-slick:not(.slick-initialized) {
        grid-template-columns: minmax(0, 1fr);
    }
    .case-study-slick:not(.slick-initialized) .case-study-slick__slide:nth-child(n + 2) {
        display: none;
    }
    .feature-check-section .apd-check-list li{
        width: 100%;
        flex: unset
    }
    .lpdd-purpose-section .section-header {
        margin-bottom: 24px;
    }
    .why-cyblance-card p,
    .apd-card-light p,
    .apd-card-dark p,
    .solution-desc,
    .apd-industry-card p,
    .testimonial-card-text,
    .solution-card .apd-check-list li{
        font-size: 14px;
    }
    .faq-answer p{
        font-size: 15px;
    }
    .apd-whitelabel-best ul li,
    .apd-whitelabel-best strong{
        margin-bottom: 5px;
    }
    .testimonials-layout{
        gap: 30px 48px;
    }
    .careers-team-slide__card{
        padding: 20px;
    }
    .clientele-logo-card {
        min-height: 82px;
        padding: 12px 14px;
    }
    .clientele-form-box {
        padding: 22px 18px;
        border-radius: 16px;
    }
    .privacy-section h2{
        font-size: 25px;
    }
    .privacy-section h3{
        font-size: 20px;
    }
    .video-div img {
        width: 100%;
    }
    .portfolio-card .project__title h3{
        font-size: 18px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 600;
    }
    .portfolio-card .project__content{
        padding: 0 15px;
    }
    .portfolio-card .project__content h3{
        font-size: 18px;
        font-family: 600;
    }   
    .portfolio-card .project__content p{
        max-width: 90%;
    }
    .portfolio-card .project__title{
        left: 15px;
    }
}
@media (max-width: 576px) {
    .tab-section__nav {
        -webkit-overflow-scrolling: touch;
    }
    .section{
        padding: 40px 0px;
    }
    .csd-why-benefits__line {
        left: 19px;
        top: 19px;
        height: calc(100% - 38px);
    }
    .csd-why-benefit {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 14px;
    }
    .csd-why-benefit__icon {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
    .csd-why-benefits {
        gap: 22px;
    }
    .hero-stats-bar{
        grid-template-columns: repeat(2, 1fr);
    }
    .m2-template-card__footer {
        padding: 14px 16px 16px;
    }
    .case-study-slider-wrap:not(:has(.case-study-slick__slide:nth-child(3))) + .case-study-nav {
        display: flex;
    }
    .contacts-enquiry-col,
    .contacts-enquiry-col:nth-child(odd) {
        border-right: none;
    }
    .contacts-enquiry-col:not(:last-child) {
        border-bottom: 1px solid var(--border);
    }
    .contacts-enquiries-row{
        grid-template-columns: 1fr;
    }
    .button-center-mobile{
        width: 100%;
        display: block;
        text-align: center;
    }
    .footer-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 480px) {
    .blog-side-thumb img {
        aspect-ratio: 16 / 9;
    }
    .faq-panel{
        padding: 0 20px 26px 10px;
    }
    .faq-accordion--boxed .faq-panel{
        padding: 0 12px 16px 12px;
    }
    .hero-btns {
        flex-direction: column;
    }
    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        width: 100%;
    }
    .hero-stats-bar {
        gap: 24px 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: left;
        justify-content: flex-start;
        gap: 16px;
        align-items: flex-start;
    }
    .footer-cta {
        padding: 24px;
    }
    .footer-cta-overlap {
        margin-top: -108px;
        margin-bottom: -108px;
    }
    main.main-home > section:last-of-type {
        padding-bottom: calc(56px + 108px);
    }
    .footer-main {
        padding-top: 30px;
    }
    body:has(main.main-home) footer.site-footer .footer-main {
        padding-top: calc(40px + 56px);
    }
    .footer-cta__inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-cta__actions {
        width: 100%;
        justify-content: center;
    }
    .footer-cta__actions .btn {
        width: 100%;
        max-width: 280px;
    }
    .process-step__icon{
        width: 30px;
        height: 30px;
    }
    .process-step__card h3{
        padding-right: 20px;
    }
    .process-step__card {
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    main.contacts-page > section:last-of-type{
        padding-bottom: calc(56px + 60px);
    }
    .tab-section__tab span span{
        display: none;
    }
    .portfolio-card .project__content p{
        max-width: 80%;
    }
}

@media (max-width: 400px) {
    .section-label .dot{
        display: inline-block;
        margin-right: 10px;
        vertical-align: middle;
    }
    .section-label {
        display: inline-block;
    }
}

@media (max-width: 320px) {
    .header-btn--bar {
        display: none;
    }
    .menu-drawer-cta-wrap{
        display: block;
    }
}

@keyframes strip-marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(var(--marquee-shift, -50%), 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-pills__track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }
    .hero-pills__group[aria-hidden="true"] {
        display: none;
    }
}