/* Accessibility Testing — premium page theme */
.a11y-page {
    --a11y-teal: #0d9488;
    --a11y-teal-light: #14b8a6;
    --a11y-blue: #0066ff;
    --a11y-indigo: #4f46e5;
    --a11y-ink: #0a1128;
    --a11y-slate: #475569;
    --a11y-muted: #64748b;
    --a11y-surface: #f8fafc;
    --a11y-border: rgba(15, 23, 42, 0.08);
    --a11y-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --a11y-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
    --a11y-radius: 1.25rem;
    --a11y-gradient: linear-gradient(135deg, var(--a11y-teal) 0%, var(--a11y-blue) 52%, var(--a11y-indigo) 100%);
}

/* Hero overrides */
.a11y-page .wm-hero {
    --wm-next-bg: #f8fafc;
    padding-bottom: clamp(2.25rem, 4vw, 3rem);
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(13, 148, 136, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 70% 55% at 88% 15%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(79, 70, 229, 0.05) 0%, transparent 55%),
        linear-gradient(165deg, #f8faff 0%, #f0fdf9 38%, #f4f8fb 100%);
}
/* Curve sits above content (z-index 4) in base styles — hide it here; why section handles the transition */
.a11y-page .wm-hero-curve { display: none; }
.a11y-page .wm-hero::before { height: 80px; }
.a11y-page .wm-hero-inner {
    z-index: 5;
}
.a11y-page .wm-hero-content {
    position: relative;
    z-index: 2;
}
.a11y-page .wm-hero-decor .hero-orb--1 {
    background: radial-gradient(circle, rgba(13, 148, 136, 0.35), transparent 70%);
}
.a11y-page .wm-hero-decor .hero-orb--2 {
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3), transparent 70%);
}
.a11y-page .wm-hero-title-accent {
    width: 64px;
    height: 4px;
    background: var(--a11y-gradient);
}
.a11y-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
    padding-bottom: 0.25rem;
    position: relative;
    z-index: 3;
}
.a11y-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.65rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.92rem;
    color: #fff;
    background: var(--a11y-gradient);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.a11y-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 102, 255, 0.35);
    color: #fff;
}
.a11y-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.45rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--a11y-ink);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--a11y-border);
    backdrop-filter: blur(8px);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.a11y-btn-ghost:hover {
    border-color: rgba(0, 102, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: var(--a11y-shadow);
    color: var(--a11y-ink);
}
.a11y-hero-visual { position: relative; }
.a11y-hero-badges {
    position: absolute;
    inset: auto 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    z-index: 5;
    transform: translate(8%, 12%);
}
.a11y-hero-badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--a11y-ink);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    white-space: nowrap;
    backdrop-filter: blur(12px);
}
.a11y-hero-badge-chip i {
    color: var(--a11y-teal);
    font-size: 0.75rem;
}
.a11y-hero-badge-chip:nth-child(2) { margin-left: 1.5rem; }
.a11y-hero-badge-chip:nth-child(3) { margin-left: 0.5rem; }

/* Entrance motion */
@keyframes a11yEnterUp {
    from {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes a11yEnterVisual {
    from {
        opacity: 0;
        transform: translate3d(28px, 18px, 0) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}
@keyframes a11yEnterChip {
    from {
        opacity: 0;
        transform: translate3d(0, 10px, 0) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

/* Hero — cascaded load animation */
.a11y-page .a11y-hero-item {
    opacity: 0;
    animation: a11yEnterUp 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.08s + var(--enter-i, 0) * 0.09s);
}
.a11y-page .a11y-hero-item--visual {
    animation-name: a11yEnterVisual;
    animation-duration: 0.78s;
    animation-delay: calc(0.18s + var(--enter-i, 0) * 0.06s);
}
.a11y-page .a11y-hero-visual .a11y-hero-badge-chip {
    opacity: 0;
    animation: a11yEnterChip 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.72s + var(--chip-i, 0) * 0.08s);
}

/* Scroll reveals — staggered children inside each section */
.a11y-page .a11y-reveal .a11y-enter {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
        opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(min(var(--enter-i, 0), 14) * 0.055s + 0.03s);
    will-change: opacity, transform;
}
.a11y-page .a11y-reveal.in-view .a11y-enter {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}
.a11y-page .a11y-enter--left {
    transform: translate3d(-24px, 0, 0);
}
.a11y-page .a11y-reveal.in-view .a11y-enter--left {
    transform: translate3d(0, 0, 0);
}
.a11y-page .a11y-enter--right {
    transform: translate3d(24px, 0, 0);
}
.a11y-page .a11y-reveal.in-view .a11y-enter--right {
    transform: translate3d(0, 0, 0);
}
.a11y-page .a11y-enter--zoom {
    transform: translate3d(0, 18px, 0) scale(0.96);
}
.a11y-page .a11y-reveal.in-view .a11y-enter--zoom {
    transform: translate3d(0, 0, 0) scale(1);
}
.a11y-page .a11y-why-section--intro .a11y-enter {
    transform: translate3d(0, 16px, 0) scale(0.98);
}
.a11y-page .a11y-why-section--intro .a11y-reveal.in-view .a11y-enter {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Section system */
.a11y-page .section { padding: clamp(4.5rem, 8vw, 6rem) 0; }
.a11y-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
    transform: translateY(1px);
}
.a11y-wave svg {
    display: block;
    width: 100%;
    height: 48px;
}

.a11y-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--a11y-teal);
    margin-bottom: 0.9rem;
}
.a11y-eyebrow::before {
    content: "";
    width: 1.25rem;
    height: 2px;
    border-radius: 9999px;
    background: var(--a11y-gradient);
}
.a11y-section-head--center .a11y-eyebrow::before { display: none; }
.a11y-section-head--center .a11y-eyebrow {
    justify-content: center;
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.12);
}
.a11y-eyebrow--light { color: #5eead4; }
.a11y-eyebrow--light::before { background: linear-gradient(90deg, #5eead4, #38bdf8); }
.a11y-eyebrow--dark { color: var(--a11y-slate); }
.a11y-eyebrow--dark::before { background: var(--a11y-gradient); }

.a11y-section-head { max-width: 34rem; margin-bottom: 0; }
.a11y-section-head--center {
    max-width: 52rem;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 3rem;
}
.a11y-section-head h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(1.9rem, 3.8vw, 2.65rem);
    font-weight: 800;
    color: var(--a11y-ink);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.12;
    text-align: inherit;
}
.a11y-section-head p {
    color: var(--a11y-slate);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0;
}

/* Why section */
.a11y-why-section {
    position: relative;
    background: var(--a11y-surface);
    overflow: hidden;
    padding-top: clamp(2.5rem, 4vw, 3.5rem);
    padding-bottom: clamp(3rem, 5vw, 4rem);
}
.a11y-why-section--intro {
    margin-top: -1.5rem;
    padding-top: 0;
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13, 148, 136, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.a11y-page .wm-hero + .a11y-why-section--intro {
    margin-top: -2.5rem;
}
.a11y-why-section--intro + .a11y-services-section {
    padding-top: clamp(2rem, 3.5vw, 2.75rem);
}
.a11y-why-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.07) 0%, transparent 70%);
    pointer-events: none;
}
.a11y-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}
.a11y-why-grid--solo {
    grid-template-columns: 1fr;
    max-width: 52rem;
    margin-inline: auto;
}
.a11y-intro-panel {
    position: relative;
    max-width: none !important;
    text-align: center;
    padding: clamp(2.25rem, 4.5vw, 3.25rem) clamp(1.75rem, 4vw, 3rem);
    background: #fff;
    border: 1px solid var(--a11y-border);
    border-radius: calc(var(--a11y-radius) + 0.35rem);
    box-shadow: var(--a11y-shadow-lg);
    overflow: hidden;
}
.a11y-intro-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--a11y-gradient);
}
.a11y-intro-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(0, 102, 255, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(13, 148, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.a11y-intro-panel-icon {
    position: relative;
    z-index: 1;
    width: 3.75rem;
    height: 3.75rem;
    margin: 0 auto 1.25rem;
    border-radius: 1.1rem;
    background: var(--a11y-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 12px 28px rgba(0, 102, 255, 0.22);
}
.a11y-intro-panel .a11y-eyebrow::before { display: none; }
.a11y-intro-panel .a11y-eyebrow {
    position: relative;
    z-index: 1;
    justify-content: center;
    padding: 0.35rem 0.95rem;
    border-radius: 9999px;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.12);
}
.a11y-intro-panel h2,
.a11y-intro-panel p {
    position: relative;
    z-index: 1;
    text-align: center;
}
.a11y-intro-panel h2 {
    max-width: 38rem;
    margin-inline: auto;
}
.a11y-intro-panel p {
    max-width: 42rem;
    margin-inline: auto;
}
.a11y-checklist {
    display: grid;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.a11y-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.05rem 1.25rem;
    background: #fff;
    border: 1px solid var(--a11y-border);
    border-radius: 1rem;
    color: #334155;
    font-size: 0.94rem;
    line-height: 1.45;
    box-shadow: var(--a11y-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.a11y-checklist li:hover {
    transform: translateX(6px);
    border-color: rgba(13, 148, 136, 0.2);
    box-shadow: var(--a11y-shadow-lg);
}
.a11y-checklist li i {
    width: 2rem;
    height: 2rem;
    border-radius: 0.65rem;
    background: rgba(13, 148, 136, 0.1);
    color: var(--a11y-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* Services grid — equal-height rows, no row-span bento */
.a11y-services-section {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding-top: clamp(3rem, 5vw, 4rem);
}
.a11y-services-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 800px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--a11y-border), transparent);
}
.a11y-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}
.a11y-service-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.a11y-service-grid .a11y-service-card:last-child:nth-child(odd):not(:only-child) {
    grid-column: 1 / -1;
    max-width: calc((100% - 1.25rem) / 2);
    justify-self: center;
    width: 100%;
}
.a11y-service-grid--3 .a11y-service-card:last-child:nth-child(odd):not(:only-child) {
    max-width: calc((100% - 2.5rem) / 3);
}
.a11y-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem 1.85rem;
    background: #fff;
    border: 1px solid var(--a11y-border);
    border-radius: var(--a11y-radius);
    box-shadow: var(--a11y-shadow);
    isolation: isolate;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.a11y-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--a11y-gradient);
    opacity: 0.75;
    z-index: 1;
}
.a11y-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--a11y-shadow-lg);
    border-color: rgba(0, 102, 255, 0.15);
}
.a11y-service-card:hover::before { opacity: 1; }
.a11y-service-card-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.9rem;
}
.a11y-service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    background: var(--a11y-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.22);
}
.a11y-service-card h3 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--a11y-ink);
    margin: 0.2rem 0 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}
.a11y-service-intro {
    color: var(--a11y-slate);
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}
.a11y-service-bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem 1.25rem;
    color: #334155;
    font-size: 0.87rem;
    line-height: 1.55;
}
.a11y-service-bullets li {
    position: relative;
    padding-left: 0.95rem;
}
.a11y-service-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--a11y-teal);
}

/* Standards */
.a11y-standards-section {
    position: relative;
    background: var(--a11y-ink);
    padding-block: clamp(5rem, 9vw, 6.5rem);
    overflow: hidden;
}
.a11y-standards-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(13, 148, 136, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 30%, rgba(0, 102, 255, 0.12) 0%, transparent 55%);
    pointer-events: none;
}
.a11y-standards-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}
.a11y-standards-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}
.a11y-standards-copy h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: #fff;
    font-size: clamp(1.9rem, 3.8vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.12;
    text-align: left;
}
.a11y-standards-copy p {
    color: #94a3b8;
    margin: 0;
    line-height: 1.75;
    font-size: 1.05rem;
}
.a11y-standards-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}
.a11y-standards-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: #e2e8f0;
    font-size: 0.88rem;
    line-height: 1.45;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.a11y-standards-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(94, 234, 212, 0.35);
    transform: translateY(-3px);
}
.a11y-standards-list li i {
    width: 2rem;
    height: 2rem;
    border-radius: 0.55rem;
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

/* Process timeline */
.a11y-process-section {
    position: relative;
    background:
        radial-gradient(ellipse 70% 50% at 10% 0%, rgba(13, 148, 136, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 60% 45% at 95% 100%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #fff 0%, var(--a11y-surface) 45%, #fff 100%);
    overflow: hidden;
}
.a11y-process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.04) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.a11y-process-section .container {
    position: relative;
    z-index: 1;
}
.a11y-process-track {
    position: relative;
    padding-top: 0.75rem;
}
.a11y-process-rows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.a11y-process-track--split .a11y-process-rows {
    gap: 0;
}
.a11y-process-track--split .a11y-process-grid {
    width: calc(var(--row-items) / var(--process-cols) * 100%);
    max-width: 100%;
    margin-inline: auto;
}
.a11y-process-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(var(--process-cols, 5), minmax(0, 1fr));
    gap: 1.15rem;
    align-items: stretch;
    padding-top: 0.25rem;
}
.a11y-process-grid::before {
    content: "";
    position: absolute;
    top: 1.85rem;
    left: calc((100% / var(--process-cols, 5)) / 2);
    right: calc((100% / var(--process-cols, 5)) / 2);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(13, 148, 136, 0.15) 0%,
        rgba(13, 148, 136, 0.45) 20%,
        rgba(0, 102, 255, 0.45) 50%,
        rgba(79, 70, 229, 0.45) 80%,
        rgba(79, 70, 229, 0.15) 100%
    );
    z-index: 0;
    pointer-events: none;
}
.a11y-process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
    height: 100%;
}
.a11y-process-node {
    position: relative;
    flex-shrink: 0;
}
.a11y-process-node::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--a11y-gradient);
    opacity: 0.12;
    transform: scale(0.85);
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.a11y-process-step:hover .a11y-process-node::before {
    transform: scale(1);
    opacity: 0.2;
}
.a11y-process-num {
    position: relative;
    width: 3.65rem;
    height: 3.65rem;
    border-radius: 50%;
    background: #fff;
    color: var(--a11y-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 2px solid rgba(13, 148, 136, 0.12);
    box-shadow:
        0 0 0 6px #fff,
        0 10px 28px rgba(0, 102, 255, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}
.a11y-process-step:hover .a11y-process-num {
    transform: scale(1.06);
    color: #fff;
    background: var(--a11y-gradient);
    border-color: transparent;
    box-shadow:
        0 0 0 6px #fff,
        0 14px 36px rgba(0, 102, 255, 0.28);
}
.a11y-process-card {
    position: relative;
    flex: 1;
    width: 100%;
    padding: 1.45rem 1.3rem 1.35rem;
    background: #fff;
    border: 1px solid var(--a11y-border);
    border-radius: var(--a11y-radius);
    box-shadow: var(--a11y-shadow);
    text-align: left;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.a11y-process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--a11y-gradient);
    opacity: 0.85;
}
.a11y-process-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(13, 148, 136, 0.03) 0%, transparent 45%);
    pointer-events: none;
}
.a11y-process-step:hover .a11y-process-card {
    transform: translateY(-6px);
    box-shadow: var(--a11y-shadow-lg);
    border-color: rgba(13, 148, 136, 0.18);
}
.a11y-process-label {
    position: relative;
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--a11y-teal);
    margin-bottom: 0.55rem;
}
.a11y-process-card h3 {
    position: relative;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--a11y-ink);
    margin: 0 0 0.65rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}
.a11y-process-card p {
    position: relative;
    font-size: 0.86rem;
    color: var(--a11y-muted);
    line-height: 1.65;
    margin: 0;
}
.a11y-process-bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.35rem 0 0.85rem;
}
.a11y-process-bridge-line {
    width: 2px;
    height: 1.75rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.35), rgba(13, 148, 136, 0.35));
}
.a11y-process-bridge-dot {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(13, 148, 136, 0.15);
    color: var(--a11y-teal);
    font-size: 0.65rem;
    box-shadow: var(--a11y-shadow);
}

/* Benefits */
.a11y-benefits-section {
    background: linear-gradient(180deg, var(--a11y-surface) 0%, #fff 100%);
}
.a11y-benefits-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1080px;
}
.a11y-benefit-card {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.2rem 1.3rem;
    background: #fff;
    border: 1px solid var(--a11y-border);
    border-radius: 1rem;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.45;
    box-shadow: var(--a11y-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.a11y-benefit-card:nth-child(n + 5) { grid-column: span 4; }
.a11y-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 148, 136, 0.25);
    box-shadow: var(--a11y-shadow-lg);
}
.a11y-benefit-card i {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 0.55rem;
    background: var(--a11y-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Split panels */
.a11y-split-section { background: #fff; }
.a11y-split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}
.a11y-split-grid--single {
    grid-template-columns: 1fr;
    max-width: 42rem;
    margin-inline: auto;
}
.a11y-split-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.25rem 2rem 2rem;
    border: 1px solid var(--a11y-border);
    border-radius: calc(var(--a11y-radius) + 0.15rem);
    background: #fff;
    height: 100%;
    box-shadow: var(--a11y-shadow);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.a11y-split-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--a11y-gradient);
}
.a11y-split-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--a11y-shadow-lg);
}
.a11y-split-panel--accent {
    background: linear-gradient(160deg, #f0fdfa 0%, #fff 45%, #eff6ff 100%);
}
.a11y-split-panel h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--a11y-ink);
    margin-bottom: 0.6rem;
    letter-spacing: -0.025em;
    line-height: 1.15;
    text-align: left;
}
.a11y-split-panel p {
    color: var(--a11y-slate);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 1.35rem;
}
.a11y-split-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1.15rem;
    flex: 1;
}
.a11y-split-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.4;
}
.a11y-split-list li i {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    background: rgba(13, 148, 136, 0.1);
    color: var(--a11y-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.72rem;
}
.a11y-split-panel--accent .a11y-split-list li i {
    background: rgba(0, 102, 255, 0.1);
    color: var(--a11y-blue);
}

/* CTA */
.a11y-page .cta-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.a11y-cta {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.a11y-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 20% 100%, rgba(13, 148, 136, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 60% 70% at 90% 20%, rgba(0, 102, 255, 0.18) 0%, transparent 50%);
    pointer-events: none;
}
.a11y-cta .a11y-cta-copy {
    position: relative;
    max-width: 680px;
    margin: 0 auto 2rem;
}
.a11y-cta-lead {
    color: #cbd5e1 !important;
    margin-bottom: 0.85rem !important;
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
}
.a11y-cta-note {
    color: #94a3b8 !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
}
.a11y-cta .btn-white {
    position: relative;
    font-weight: 800;
    padding: 1.05rem 2.25rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.a11y-cta .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.wm-hero-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdfa, #eff6ff);
}
.wm-hero-image-placeholder i {
    font-size: 4.5rem;
    background: var(--a11y-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 1100px) {
    .a11y-service-grid,
    .a11y-service-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .a11y-service-grid .a11y-service-card:last-child:nth-child(odd):not(:only-child),
    .a11y-service-grid--3 .a11y-service-card:last-child:nth-child(odd):not(:only-child) {
        max-width: calc((100% - 1.25rem) / 2);
    }
    .a11y-service-bullets { grid-template-columns: 1fr; }
    .a11y-process-grid::before { display: none; }
    .a11y-process-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .a11y-process-track--split .a11y-process-grid {
        width: 100%;
        grid-template-columns: repeat(var(--process-cols, 3), minmax(0, 1fr));
    }
    .a11y-benefit-card,
    .a11y-benefit-card:nth-child(n + 5) { grid-column: span 6; }
}

@media (max-width: 1024px) {
    .a11y-why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .a11y-standards-panel { grid-template-columns: 1fr; }
    .a11y-standards-list { grid-template-columns: 1fr; }
    .a11y-process-grid::before { display: none; }
    .a11y-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
    .a11y-process-track--split .a11y-process-grid {
        width: 100%;
        grid-template-columns: repeat(min(var(--process-cols, 2), 2), minmax(0, 1fr));
    }
    .a11y-process-bridge { padding: 0.25rem 0 0.5rem; }
    .a11y-benefit-card,
    .a11y-benefit-card:nth-child(n + 5) { grid-column: span 6; }
    .a11y-split-grid { grid-template-columns: 1fr; }
    .a11y-split-list { grid-template-columns: 1fr; }
    .a11y-hero-badges { transform: translate(0, 8%); }
}

@media (max-width: 768px) {
    .a11y-hero-actions { flex-direction: column; align-items: stretch; }
    .a11y-hero-actions a { justify-content: center; }
    .a11y-hero-badges {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        transform: none;
        margin-top: 1rem;
        justify-content: center;
    }
    .a11y-hero-badge-chip,
    .a11y-hero-badge-chip:nth-child(2),
    .a11y-hero-badge-chip:nth-child(3) { margin-left: 0; }
    .a11y-section-head--center { margin-bottom: 2.25rem; }
    .a11y-service-grid,
    .a11y-service-grid--3 { grid-template-columns: 1fr; }
    .a11y-service-grid .a11y-service-card:last-child:nth-child(odd):not(:only-child),
    .a11y-service-grid--3 .a11y-service-card:last-child:nth-child(odd):not(:only-child) {
        max-width: 100%;
    }
    .a11y-intro-panel { padding: 1.75rem 1.25rem; }
    .a11y-process-grid,
    .a11y-process-track--split .a11y-process-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 1rem;
    }
    .a11y-process-step {
        flex-direction: row;
        align-items: stretch;
        gap: 1rem;
    }
    .a11y-process-node {
        padding-top: 1.35rem;
    }
    .a11y-process-num {
        width: 3rem;
        height: 3rem;
        font-size: 0.95rem;
    }
    .a11y-process-card {
        padding: 1.2rem 1.1rem;
    }
    .a11y-process-bridge { display: none; }
    .a11y-benefits-grid { grid-template-columns: 1fr; }
    .a11y-benefit-card,
    .a11y-benefit-card:nth-child(n + 5) { grid-column: auto; }
    .a11y-split-panel { padding: 1.65rem; }
}

@media (prefers-reduced-motion: reduce) {
    .a11y-page .a11y-hero-item,
    .a11y-page .a11y-hero-visual .a11y-hero-badge-chip {
        opacity: 1;
        transform: none;
        animation: none;
    }
    .a11y-page .a11y-reveal .a11y-enter {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .a11y-checklist li:hover,
    .a11y-service-card:hover,
    .a11y-standards-list li:hover,
    .a11y-process-step:hover .a11y-process-card,
    .a11y-process-step:hover .a11y-process-num,
    .a11y-benefit-card:hover,
    .a11y-split-panel:hover { transform: none; }
}
