:root {
    --ai-bg: #0f1115;
    --ai-surface: #131820;
    --ai-surface-2: #181c24;
    --ai-text: #f5f7fa;
    --ai-muted: #a9b2bd;
    --ai-accent: #66ec57;
    --ai-accent-2: #66ec57;
    --ai-border: rgba(255, 255, 255, 0.08);
    --ai-glow: rgba(102, 236, 87, 0.35);
}

body.ai-page {
    background-color: var(--ai-bg);
    color: var(--ai-text);
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    padding-top: 64px;
    background-image:
        linear-gradient(180deg, #0f1115 0%, #131820 55%, #0f1115 100%),
        radial-gradient(circle at 12% 18%, rgba(46, 63, 80, 0.28), transparent 52%),
        radial-gradient(circle at 88% 12%, rgba(36, 52, 68, 0.22), transparent 55%),
        radial-gradient(circle at 70% 85%, rgba(102, 236, 87, 0.08), transparent 45%);
}

body.ai-page main {
    overflow: hidden;
}

.ai-page h1,
.ai-page h2,
.ai-page h3,
.ai-page h4 {
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
}

.ai-page p {
    color: var(--ai-muted);
}

.ai-page a {
    text-decoration: none;
}

.ai-reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: ai-rise 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes ai-rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-hero {
    position: relative;
    padding: 120px 0 90px;
}

.ai-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(46, 63, 80, 0.35), transparent 60%),
        radial-gradient(circle at top right, rgba(30, 44, 58, 0.28), transparent 55%),
        radial-gradient(circle at 65% 20%, rgba(102, 236, 87, 0.08), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.ai-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 17, 21, 0) 0%, rgba(15, 17, 21, 0.6) 100%);
    pointer-events: none;
    z-index: 0;
}

.ai-hero .container {
    position: relative;
    z-index: 1;
}

.ai-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(102, 236, 87, 0.18);
    color: #e8ffe8;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.ai-display {
    font-size: clamp(2.6rem, 3.8vw, 4.2rem);
    font-weight: 600;
    line-height: 1.05;
    margin: 1rem 0 1.3rem;
}

.ai-lead {
    font-size: 1.1rem;
    max-width: 520px;
}

.ai-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.ai-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ai-btn-primary {
    background: var(--ai-accent);
    color: #0f1115;
    box-shadow: 0 20px 40px rgba(102, 236, 87, 0.25);
}

.ai-btn-primary:hover,
.ai-btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 30px 50px rgba(102, 236, 87, 0.35);
    color: #0c0f12;
}

.ai-btn-ghost {
    color: var(--ai-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.ai-btn-ghost:hover,
.ai-btn-ghost:focus {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    color: var(--ai-text);
}

.ai-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.ai-metric {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(19, 24, 32, 0.9);
    border: 1px solid var(--ai-border);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.ai-metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ai-text);
}

.ai-metric-label {
    font-size: 0.85rem;
    color: var(--ai-muted);
}

.ai-hero-visual {
    position: relative;
    min-height: 420px;
}

.ai-hero-panel {
    position: relative;
    padding: 1.6rem;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(19, 24, 32, 0.98), rgba(15, 17, 21, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.ai-hero-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.2rem;
}

.ai-status-pill {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    background: rgba(102, 236, 87, 0.18);
    color: #e8ffe8;
}

.ai-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ai-hero-card {
    padding: 0.9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-hero-card p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.6);
}

.ai-hero-card h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--ai-text);
}

.ai-hero-card span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.ai-hero-stream {
    margin-top: 1.4rem;
    display: grid;
    gap: 0.7rem;
}

.ai-stream-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.ai-stream-chip {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(102, 236, 87, 0.18);
    color: #e8ffe8;
    font-size: 0.72rem;
}

.ai-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(0px);
    opacity: 0.5;
    animation: ai-float 12s ease-in-out infinite;
}

.ai-orb-1 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(102, 236, 87, 0.45), transparent 70%);
    top: -40px;
    left: 10%;
}

.ai-orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102, 236, 87, 0.3), transparent 70%);
    bottom: -60px;
    right: 0;
    animation-delay: -3s;
}

@keyframes ai-float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-18px);
    }
}

.ai-floating-card {
    position: absolute;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(11, 17, 24, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 220px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ai-float-1 {
    top: 18%;
    right: -6%;
}

.ai-float-2 {
    bottom: 8%;
    left: -4%;
}

.ai-floating-title {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 0.4rem;
}

.ai-trust {
    padding: 40px 0 60px;
}

.ai-trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ai-logo-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    flex: 1;
}

.ai-logo {
    padding: 0.65rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}

.ai-section {
    padding: 90px 0;
}

.ai-section-alt {
    background: rgba(19, 24, 32, 0.6);
}

.ai-kicker {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(102, 236, 87, 0.8);
    margin-bottom: 0.8rem;
}

.ai-section-title {
    font-size: clamp(2rem, 2.8vw, 3rem);
    margin-bottom: 1rem;
}

.ai-section-text {
    max-width: 560px;
}

.ai-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.ai-list li {
    padding-left: 1.7rem;
    position: relative;
    color: var(--ai-text);
}

.ai-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--ai-accent);
    box-shadow: 0 0 8px rgba(102, 236, 87, 0.45);
}

.ai-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.ai-stat-card {
    padding: 1.4rem;
    border-radius: 20px;
    background: rgba(19, 24, 32, 0.85);
    border: 1px solid var(--ai-border);
}

.ai-stat-card h3 {
    margin: 0.6rem 0;
    font-size: 1.7rem;
}

.ai-stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.ai-section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ai-card {
    height: 100%;
    padding: 1.6rem;
    border-radius: 22px;
    background: rgba(19, 24, 32, 0.9);
    border: 1px solid var(--ai-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ai-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
}

.ai-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 236, 87, 0.16);
    color: #e8ffe8;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.ai-card-link {
    display: inline-block;
    margin-top: 1.2rem;
    color: rgba(102, 236, 87, 0.85);
    font-size: 0.85rem;
}

.ai-section-light {
    background: linear-gradient(165deg, rgba(19, 24, 32, 0.96), rgba(15, 17, 21, 0.98));
    color: var(--ai-text);
    position: relative;
    overflow: hidden;
}

.ai-section-light::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(102, 236, 87, 0.14), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(102, 236, 87, 0.08), transparent 40%);
    opacity: 0.9;
    pointer-events: none;
}

.ai-section-light > .container {
    position: relative;
    z-index: 1;
}

.ai-section-light p,
.ai-section-light .ai-section-text,
.ai-section-light .ai-kicker,
.ai-section-light .ai-light-metric p {
    color: rgba(255, 255, 255, 0.68);
}

.ai-section-light .ai-section-title {
    color: var(--ai-text);
}

.ai-section-light .ai-kicker {
    color: rgba(255, 255, 255, 0.55);
}

.ai-iso-card {
    position: relative;
    min-height: 280px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(19, 24, 32, 0.95), rgba(15, 17, 21, 0.95));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.ai-iso-card-alt {
    background: linear-gradient(145deg, rgba(24, 28, 36, 0.95), rgba(15, 17, 21, 0.95));
}

.ai-iso-core {
    position: absolute;
    width: 140px;
    height: 140px;
    background: linear-gradient(145deg, rgba(102, 236, 87, 0.35), rgba(102, 236, 87, 0.2));
    border-radius: 22px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.ai-iso-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(102, 236, 87, 0.08));
    border-radius: 18px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
}

.ai-iso-node-1 {
    top: 18%;
    left: 18%;
}

.ai-iso-node-2 {
    bottom: 18%;
    right: 18%;
}

.ai-iso-node-3 {
    top: 18%;
    right: 18%;
}

.ai-iso-label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(12, 18, 26, 0.8);
    padding: 0.55rem 0.9rem;
    border-radius: 12px;
    font-size: 0.85rem;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
}

.ai-iso-label strong {
    display: block;
    color: var(--ai-text);
    font-size: 1rem;
}

.ai-light-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.ai-light-metric {
    padding: 1rem;
    border-radius: 16px;
    background: rgba(19, 24, 32, 0.92);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-light-metric h4 {
    margin-bottom: 0.4rem;
    color: var(--ai-text);
}

.ai-console {
    padding: 2.4rem;
    border-radius: 26px;
    background: rgba(19, 24, 32, 0.88);
    border: 1px solid var(--ai-border);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

.ai-console-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.ai-tab-group {
    display: inline-flex;
    gap: 0.4rem;
    padding: 0.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-tab {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: default;
}

.ai-tab.is-active {
    background: rgba(102, 236, 87, 0.2);
    color: #e8ffe8;
}

.ai-console-card {
    padding: 1.6rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-terminal {
    background: #0f1115;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    font-family: "JetBrains Mono", monospace;
}

.ai-terminal-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.ai-terminal-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.ai-terminal pre {
    margin: 0;
    padding: 1.2rem;
    color: #e8ffe8;
    font-size: 0.85rem;
    background: transparent;
}

.ai-quote {
    padding: 80px 0;
}

.ai-quote-card {
    border-radius: 24px;
    padding: 2.4rem;
    background: linear-gradient(140deg, rgba(19, 24, 32, 0.95), rgba(15, 17, 21, 0.95));
    border: 1px solid var(--ai-border);
    text-align: center;
}

.ai-quote-card blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--ai-text);
    margin: 0 0 1.5rem;
}

.ai-quote-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.6);
}

.ai-quote-name {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.ai-quote-company {
    font-size: 0.85rem;
}

.ai-cta {
    padding: 90px 0 120px;
}

.ai-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2.6rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(102, 236, 87, 0.18), rgba(102, 236, 87, 0.08));
    border: 1px solid rgba(102, 236, 87, 0.25);
}

.ai-cta-card h2 {
    color: var(--ai-text);
}

.ai-cta-card p {
    color: rgba(255, 255, 255, 0.7);
}

.ai-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 991.98px) {
    body.ai-page {
        padding-top: 72px;
    }

    .ai-hero {
        padding: 100px 0 70px;
    }

    .ai-hero-visual {
        min-height: 360px;
    }

    .ai-float-1,
    .ai-float-2 {
        position: static;
        margin-top: 1.5rem;
    }

    .ai-console {
        padding: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .ai-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ai-hero-grid {
        grid-template-columns: 1fr;
    }

    .ai-trust-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ai-cta-card {
        padding: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ai-reveal,
    .ai-orb,
    .ai-card:hover,
    .ai-btn:hover {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* ========================================
   Accelerated Computing Template Styles
   ======================================== */

body.ai-page.accelerated-template {
    --ai-bg: #000000;
    --ai-surface: #111722;
    --ai-surface-2: #121924;
    --ai-text: #f6f8fb;
    --ai-muted: rgba(255, 255, 255, 0.65);
    --ai-accent: #09b850;
    --ai-accent-2: #09b850;
    --ai-border: rgba(255, 255, 255, 0.1);
    --ai-glow: rgba(9, 184, 80, 0.2);
    --bs-primary: #09b850;
    --bs-primary-rgb: 9, 184, 80;
    --bs-link-color: #09b850;
    --bs-link-color-rgb: 9, 184, 80;
    --bs-link-hover-color: #08aa4f;
    --bs-link-hover-color-rgb: 8, 170, 79;
    background:
        radial-gradient(ellipse at 50% 18%, rgba(26, 35, 50, 0.7) 0%, rgba(15, 18, 24, 0.25) 45%, transparent 72%),
        linear-gradient(180deg, #000000 0%, #0a0e14 50%, #0f1419 100%);
}

body.ai-page.accelerated-template main {
    background: transparent;
}

body.ai-page.accelerated-template main > section {
    background: transparent !important;
    position: relative;
}

body.ai-page.accelerated-template .ai-hero {
    overflow: hidden;
    padding-top: clamp(7rem, 10vw, 9rem) !important;
    padding-bottom: clamp(4rem, 8vw, 6.5rem) !important;
    background-image: none !important;
    background-color: transparent !important;
}

body.ai-page.accelerated-template .accelerated-anchor-section {
    scroll-margin-top: 136px;
}

@media (max-width: 991.98px) {
    body.ai-page.accelerated-template .accelerated-anchor-section {
        scroll-margin-top: 84px;
    }
}

body.ai-page.accelerated-template .ai-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(26, 35, 50, 0.35), transparent 60%),
        radial-gradient(circle at top right, rgba(18, 25, 36, 0.28), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

body.ai-page.accelerated-template .ai-hero::after {
    background: none !important;
}

body.ai-page.accelerated-template .ai-hero .container {
    position: relative;
    z-index: 1;
}

body.ai-page.accelerated-template .ai-orb,
body.ai-page.accelerated-template .ai-orb-1,
body.ai-page.accelerated-template .ai-orb-2 {
    display: none !important;
    background: none !important;
}

body.ai-page.accelerated-template main .bg-light,
body.ai-page.accelerated-template main .bg-dark,
body.ai-page.accelerated-template main .bg-body {
    background: transparent !important;
    background-color: transparent !important;
}

body.ai-page.accelerated-template .card,
body.ai-page.accelerated-template .card-glass,
body.ai-page.accelerated-template .ai-stat-card,
body.ai-page.accelerated-template .accordion-item,
body.ai-page.accelerated-template .inner-container {
    background: rgba(30, 30, 30, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
    color: #f6f8fb;
}

@supports ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
    body.ai-page.accelerated-template .inner-container,
    body.ai-page.accelerated-template .ai-hero .ai-hero-panel {
        position: relative;
        isolation: isolate;
    }

    body.ai-page.accelerated-template .inner-container::after,
    body.ai-page.accelerated-template .ai-hero .ai-hero-panel::after {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1px;
        border-radius: inherit;
        background: conic-gradient(
            from var(--angle),
            transparent 0%,
            transparent 70%,
            rgba(9, 184, 80, 0.28) 75%,
            rgba(9, 184, 80, 0.78) 80%,
            rgba(228, 255, 238, 0.9) 82.5%,
            rgba(9, 184, 80, 0.78) 85%,
            rgba(9, 184, 80, 0.28) 90%,
            transparent 95%,
            transparent 100%
        );
        -webkit-mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
        mask-composite: exclude;
        pointer-events: none;
        z-index: 1;
        opacity: 0.92;
        animation: rotateBorder 8s linear infinite;
    }

    body.ai-page.accelerated-template .inner-container > :not(figure),
    body.ai-page.accelerated-template .ai-hero .ai-hero-panel > * {
        position: relative;
        z-index: 2;
    }

    body.ai-page.accelerated-template .inner-container > figure {
        z-index: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.ai-page.accelerated-template .inner-container::after,
    body.ai-page.accelerated-template .ai-hero .ai-hero-panel::after {
        animation: none;
    }
}

body.ai-page.accelerated-template .ai-stat-card .ai-stat-label {
    color: rgba(255, 255, 255, 0.6) !important;
}

body.ai-page.accelerated-template .ai-stat-card p {
    color: rgba(255, 255, 255, 0.65) !important;
}

body.ai-page.accelerated-template .card-body,
body.ai-page.accelerated-template .card-footer {
    background: transparent !important;
}

body.ai-page.accelerated-template .swiper .card.card-img-scale.bg-body,
body.ai-page.accelerated-template .swiper .card.card-img-scale {
    background:
        linear-gradient(132deg, rgba(48, 56, 70, 0.66) 0%, rgba(31, 39, 52, 0.68) 58%, rgba(20, 29, 43, 0.78) 100%) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.34),
        0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

body.ai-page.accelerated-template .swiper .card.card-img-scale .card-body,
body.ai-page.accelerated-template .swiper .card.card-img-scale .card-footer.bg-body {
    background: transparent !important;
}

body.ai-page.accelerated-template .swiper .card.card-img-scale .card-footer {
    border-top-color: rgba(255, 255, 255, 0.14) !important;
}

body.ai-page.accelerated-template h1,
body.ai-page.accelerated-template h2,
body.ai-page.accelerated-template h3,
body.ai-page.accelerated-template h4,
body.ai-page.accelerated-template h5,
body.ai-page.accelerated-template h6 {
    color: #f6f8fb;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

body.ai-page.accelerated-template p,
body.ai-page.accelerated-template li,
body.ai-page.accelerated-template small,
body.ai-page.accelerated-template .heading-color,
body.ai-page.accelerated-template .text-muted {
    color: rgba(255, 255, 255, 0.74) !important;
}

body.ai-page.accelerated-template .rws-v2-subnav .subnav-link,
body.ai-page.accelerated-template .rws-v2-subnav .subnav-link i {
    color: rgba(var(--bs-white-rgb), 0.72) !important;
    text-shadow: none !important;
}

body.ai-page.accelerated-template .rws-v2-subnav .subnav-link:hover,
body.ai-page.accelerated-template .rws-v2-subnav .subnav-link:focus,
body.ai-page.accelerated-template .rws-v2-subnav .subnav-link:hover i,
body.ai-page.accelerated-template .rws-v2-subnav .subnav-link:focus i {
    color: rgba(var(--bs-white-rgb), 0.72) !important;
}

body.ai-page.accelerated-template .rws-v2-subnav .subnav-link.active,
body.ai-page.accelerated-template .rws-v2-subnav .subnav-link.active i {
    color: rgba(var(--bs-white-rgb), 0.96) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.24) !important;
}

body.ai-page.accelerated-template .rws-v2-subnav .subnav-indicator {
    display: none !important;
}

body.ai-page.accelerated-template .rws-v2-subnav .subnav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.45);
    opacity: 0;
    transform: scaleX(0.9);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

body.ai-page.accelerated-template .rws-v2-subnav .subnav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

body.ai-page.accelerated-template .alert-light,
body.ai-page.accelerated-template .text-bg-primary,
body.ai-page.accelerated-template .badge.text-bg-dark {
    background: rgba(9, 184, 80, 0.12) !important;
    border: 1px solid rgba(9, 184, 80, 0.3) !important;
    color: rgba(220, 255, 233, 0.94) !important;
}

/* Hero Badge Glass Effect */
body.ai-page.accelerated-template .hero-badge-glass {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    color: #fff !important;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.15;
    text-transform: uppercase;
}

@supports ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
    body.ai-page.accelerated-template .hero-badge-glass {
        position: relative;
        isolation: isolate;
        border: none !important;
    }

    body.ai-page.accelerated-template .hero-badge-glass::after {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1px;
        border-radius: inherit;
        background: conic-gradient(
            from var(--pill-angle, 0deg),
            transparent 0%,
            transparent 78%,
            rgba(9, 184, 80, 0.3) 82%,
            rgba(9, 184, 80, 0.85) 85%,
            rgba(228, 255, 238, 0.95) 86.5%,
            rgba(9, 184, 80, 0.85) 88%,
            rgba(9, 184, 80, 0.3) 92%,
            transparent 96%,
            transparent 100%
        );
        -webkit-mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
        mask-composite: exclude;
        pointer-events: none;
        z-index: 1;
        opacity: 0.85;
        animation: rotatePillBorder 6s linear infinite;
    }

    body.ai-page.accelerated-template .hero-badge-glass > * {
        position: relative;
        z-index: 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.ai-page.accelerated-template .hero-badge-glass::after {
        animation: none;
    }
}

/* Featured Solutions Section - Smooth Background Transition */
.featured-solutions-section {
    background: linear-gradient(180deg, #f0f4f8 0%, #e8eef5 50%, #dfe6f0 100%);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    .featured-solutions-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

[data-bs-theme="dark"] .featured-solutions-section {
    background: linear-gradient(180deg, #000000 0%, #0a0e14 50%, #0f1419 100%);
}

/* Smooth sticky behavior */
[data-sticky] {
    transition: top 0.3s ease-out;
}

body.ai-page.accelerated-template .ai-eyebrow,
body.ai-page.accelerated-template .ai-status-pill,
body.ai-page.accelerated-template .ai-stream-chip,
body.ai-page.accelerated-template .ai-tab.is-active {
    background: rgba(9, 184, 80, 0.12);
    color: rgba(220, 255, 233, 0.9);
}

body.ai-page.accelerated-template .ai-btn-primary {
    background: #08aa4f;
    color: #0b0d12;
    box-shadow: 0 18px 36px rgba(9, 184, 80, 0.18);
}

body.ai-page.accelerated-template .ai-btn-primary:hover,
body.ai-page.accelerated-template .ai-btn-primary:focus {
    color: #0b0d12;
    box-shadow: 0 24px 44px rgba(9, 184, 80, 0.24);
}

body.ai-page.accelerated-template .ai-hero .ai-btn-primary {
    background: linear-gradient(145deg, rgba(141, 221, 194, 0.96), rgba(84, 181, 151, 0.95));
    color: #071711;
    border: 1px solid rgba(186, 248, 223, 0.55);
    box-shadow:
        0 20px 48px rgba(72, 167, 139, 0.28),
        inset 0 1px 0 rgba(235, 255, 247, 0.5);
}

body.ai-page.accelerated-template .ai-hero .ai-btn-primary:hover,
body.ai-page.accelerated-template .ai-hero .ai-btn-primary:focus {
    color: #071711;
    border-color: rgba(206, 255, 235, 0.72);
    box-shadow:
        0 24px 52px rgba(78, 180, 150, 0.34),
        inset 0 1px 0 rgba(245, 255, 251, 0.62);
}

body.ai-page.accelerated-template .ai-kicker {
    color: rgba(9, 184, 80, 0.68);
}

body.ai-page.accelerated-template .ai-list li::before {
    background: #09b850;
    box-shadow: 0 0 6px rgba(9, 184, 80, 0.3);
}

body.ai-page.accelerated-template #hybrid-cloud .ai-list li::before {
    background: #09de82;
    box-shadow:
        0 0 10px rgba(9, 184, 80, 0.34),
        0 0 18px rgba(9, 184, 80, 0.22);
}

body.ai-page.accelerated-template .ai-card-icon {
    background: rgba(9, 184, 80, 0.12);
    color: rgba(220, 255, 233, 0.9);
}

body.ai-page.accelerated-template .ai-card-link {
    color: rgba(142, 232, 188, 0.82);
}

body.ai-page.accelerated-template .app-list-title {
    color: #09de82 !important;
}

body.ai-page.accelerated-template .ai-iso-core {
    background: linear-gradient(145deg, rgba(9, 184, 80, 0.24), rgba(9, 184, 80, 0.13));
}

body.ai-page.accelerated-template .ai-iso-node {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(9, 184, 80, 0.05));
}

/* Icon Glass Effect - Simpler liquid glass for rounded icons */
body.ai-page.accelerated-template .icon-glass {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Simple green checkmarks for accelerator cards */
body.ai-page.accelerated-template .ai-check-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border-radius: 0;
    vertical-align: middle;
    transform: none;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.ai-page.accelerated-template .ai-check-glass i {
    color: var(--bs-primary) !important;
    font-size: 1rem;
    line-height: 1;
    filter: none;
}

body.ai-page.accelerated-template #accelerator-types .accelerator-card {
    display: flex;
    flex-direction: column;
}

body.ai-page.accelerated-template #accelerator-types .accelerator-card > h6 {
    margin-top: auto;
    padding-top: 0.45rem;
}

body.ai-page.accelerated-template #enterprise-ai .enterprise-ai-card {
    display: flex;
    flex-direction: column;
}

body.ai-page.accelerated-template #enterprise-ai .enterprise-ai-card > ul {
    margin-top: auto;
    padding-top: 0.35rem;
}

/* Glass Button - Primary Green */
body.ai-page.accelerated-template .btn-primary.glass-button {
    background: linear-gradient(135deg, 
        rgba(78, 159, 82, 0.96) 0%,
        rgba(72, 151, 76, 0.97) 55%,
        rgba(66, 140, 71, 0.96) 100%) !important;
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border: 1px solid rgba(118, 214, 111, 0.62) !important;
    box-shadow:
        0 8px 24px rgba(62, 159, 88, 0.26),
        inset 0 1px 0 rgba(236, 255, 236, 0.2) !important;
    color: white !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

body.ai-page.accelerated-template .btn-primary.glass-button:hover {
    background: linear-gradient(135deg, 
        rgba(83, 166, 87, 0.98) 0%,
        rgba(70, 147, 74, 0.98) 100%) !important;
    border: 1px solid rgba(132, 226, 123, 0.72) !important;
    box-shadow:
        0 10px 28px rgba(62, 159, 88, 0.3),
        inset 0 1px 0 rgba(244, 255, 244, 0.24) !important;
    transform: none;
    color: white !important;
}

body.ai-page.accelerated-template .btn {
    border-radius: 999px;
    letter-spacing: 0.01em;
    font-weight: 600;
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
    transition: all 0.25s ease;
}

body.ai-page.accelerated-template .btn-primary,
body.ai-page.accelerated-template .btn-dark {
    background: rgba(9, 184, 80, 0.15) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(9, 184, 80, 0.35) !important;
    color: rgba(220, 255, 233, 0.96) !important;
    box-shadow:
        0 4px 16px rgba(9, 184, 80, 0.2),
        inset 0 1px 0 rgba(9, 184, 80, 0.1) !important;
}

body.ai-page.accelerated-template .btn-primary:hover,
body.ai-page.accelerated-template .btn-primary:focus,
body.ai-page.accelerated-template .btn-dark:hover,
body.ai-page.accelerated-template .btn-dark:focus {
    background: rgba(9, 184, 80, 0.25) !important;
    border-color: rgba(9, 184, 80, 0.5) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(9, 184, 80, 0.3),
        inset 0 1px 0 rgba(9, 184, 80, 0.15) !important;
}

body.ai-page.accelerated-template .btn-white,
body.ai-page.accelerated-template .btn-outline-light {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #f8fbff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.14),
        0 10px 24px rgba(0, 0, 0, 0.35) !important;
}

body.ai-page.accelerated-template .btn-outline-light:hover,
body.ai-page.accelerated-template .btn-outline-light:focus,
body.ai-page.accelerated-template .btn-white:hover,
body.ai-page.accelerated-template .btn-white:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    color: #ffffff !important;
}

body.ai-page.accelerated-template .ai-plan-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: nowrap;
}

body.ai-page.accelerated-template .ai-plan-actions .btn {
    min-width: 7.05rem;
}

body.ai-page.accelerated-template .ai-hero-stream-actions {
    width: 100%;
    justify-content: stretch;
    gap: 0.7rem;
    margin-top: 0.2rem;
}

body.ai-page.accelerated-template .ai-hero-stream-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    text-align: center;
}

body.ai-page.accelerated-template .ai-plan-btn-contact {
    background: #ffffff !important;
    color: #0b0d12 !important;
    border: 1px solid rgba(255, 255, 255, 0.68) !important;
    box-shadow:
        0 10px 24px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
}

body.ai-page.accelerated-template .ai-plan-btn-contact:hover,
body.ai-page.accelerated-template .ai-plan-btn-contact:focus {
    color: #0b0d12 !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow:
        0 12px 26px rgba(255, 255, 255, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.65) !important;
}

body.ai-page.accelerated-template .ai-plan-btn-specs {
    background:
        linear-gradient(145deg, rgba(60, 60, 65, 0.56), rgba(35, 35, 40, 0.74)) !important;
    color: rgba(240, 240, 245, 0.95) !important;
    border: 1px solid rgba(180, 180, 190, 0.34) !important;
    box-shadow:
        0 10px 24px rgba(10, 10, 15, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
}

body.ai-page.accelerated-template .ai-plan-btn-specs:hover,
body.ai-page.accelerated-template .ai-plan-btn-specs:focus {
    color: #f8f8fb !important;
    border-color: rgba(200, 200, 210, 0.52) !important;
    box-shadow:
        0 12px 28px rgba(15, 15, 20, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

@media (max-width: 575.98px) {
    body.ai-page.accelerated-template .ai-plan-actions {
        gap: 0.45rem;
    }

    body.ai-page.accelerated-template .ai-plan-actions .btn {
        min-width: 6.2rem;
        font-size: 0.75rem;
        padding-inline: 0.75rem;
    }

    body.ai-page.accelerated-template .ai-hero-stream-actions {
        justify-content: stretch;
        gap: 0.55rem;
    }

    body.ai-page.accelerated-template .ai-hero-stream-actions .btn {
        font-size: 0.8rem;
    }
}

body.ai-page.accelerated-template .bg-primary {
    background-color: #08aa4f !important;
    border-color: #08aa4f !important;
}

body.ai-page.accelerated-template .text-primary {
    color: #09b850 !important;
}

body.ai-page.accelerated-template .border-primary {
    border-color: rgba(9, 184, 80, 0.45) !important;
}

body.ai-page.accelerated-template .border-primary-hover:hover {
    border-color: rgba(9, 184, 80, 0.45) !important;
}

body.ai-page.accelerated-template .accordion-button {
    background: rgba(255, 255, 255, 0.03) !important;
    color: #f6f8fb !important;
    box-shadow: none !important;
}

body.ai-page.accelerated-template .accordion-button:not(.collapsed) {
    background: rgba(9, 184, 80, 0.16) !important;
    color: rgba(221, 255, 235, 0.95) !important;
}

body.ai-page.accelerated-template .accordion-button::after {
    filter: invert(1) brightness(1.7);
}

body.ai-page.accelerated-template #accordionFaq .accordion-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    margin-bottom: 0.9rem !important;
}

body.ai-page.accelerated-template #accordionFaq .accordion-item:last-child {
    margin-bottom: 0 !important;
}

body.ai-page.accelerated-template #accordionFaq .accordion-button {
    position: relative;
    padding: 1.12rem 4.2rem 1.12rem 1.45rem;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background:
        radial-gradient(circle at calc(100% - 2rem) 50%, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03) 58%, transparent 70%),
        linear-gradient(132deg, rgba(54, 60, 70, 0.7) 0%, rgba(33, 40, 51, 0.66) 58%, rgba(24, 30, 40, 0.76) 100%) !important;
    color: rgba(243, 248, 252, 0.95) !important;
    font-size: clamp(1.02rem, 1.35vw, 1.15rem);
    font-weight: 600;
    line-height: 1.34;
    letter-spacing: -0.01em;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
    backdrop-filter: blur(18px) saturate(165%);
    -webkit-backdrop-filter: blur(18px) saturate(165%);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

body.ai-page.accelerated-template #accordionFaq .accordion-button:not(.collapsed) {
    color: rgba(226, 255, 240, 0.96) !important;
    border-color: rgba(9, 184, 80, 0.36) !important;
    background:
        radial-gradient(circle at calc(100% - 2rem) 50%, rgba(9, 184, 80, 0.22), rgba(9, 184, 80, 0.07) 60%, transparent 75%),
        linear-gradient(134deg, rgba(44, 51, 62, 0.78) 0%, rgba(29, 36, 46, 0.7) 60%, rgba(24, 30, 40, 0.78) 100%) !important;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.36),
        0 0 0 1px rgba(9, 184, 80, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

body.ai-page.accelerated-template #accordionFaq .accordion-button:focus {
    border-color: rgba(255, 255, 255, 0.16) !important;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
}

body.ai-page.accelerated-template #accordionFaq .accordion-button:not(.collapsed):focus {
    border-color: rgba(9, 184, 80, 0.36) !important;
    box-shadow:
        0 0 0 1px rgba(9, 184, 80, 0.38),
        0 0 0 0.18rem rgba(9, 184, 80, 0.14),
        0 14px 30px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

body.ai-page.accelerated-template #accordionFaq .accordion-button::before,
body.ai-page.accelerated-template #accordionFaq .accordion-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.74rem !important;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: rgba(244, 249, 255, 0.96) !important;
    transform: translateY(-50%) rotate(0deg) !important;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.18),
        0 0 10px rgba(255, 255, 255, 0.16);
    transition: transform 0.24s ease, opacity 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

body.ai-page.accelerated-template #accordionFaq .accordion-button::after {
    transform: translateY(-50%) rotate(90deg) !important;
}

body.ai-page.accelerated-template #accordionFaq .accordion-button:not(.collapsed)::before {
    background: rgba(220, 255, 233, 0.92) !important;
    box-shadow:
        0 0 0 1px rgba(9, 184, 80, 0.18),
        0 0 12px rgba(9, 184, 80, 0.26);
}

body.ai-page.accelerated-template #accordionFaq .accordion-button:not(.collapsed)::after {
    opacity: 0;
    transform: translateY(-50%) rotate(0deg) !important;
}

body.ai-page.accelerated-template #accordionFaq .accordion-collapse {
    border: none !important;
}

body.ai-page.accelerated-template #accordionFaq .accordion-body {
    margin-top: 0.72rem !important;
    padding: 1.15rem 1.35rem 1.25rem !important;
    border-radius: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(134deg, rgba(28, 34, 44, 0.72) 0%, rgba(20, 26, 35, 0.66) 100%) !important;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    color: rgba(230, 237, 245, 0.84) !important;
    line-height: 1.65;
}

@media (max-width: 767.98px) {
    body.ai-page.accelerated-template #accordionFaq .accordion-button {
        padding: 1rem 3.35rem 1rem 1.1rem;
        font-size: 1rem;
    }

    body.ai-page.accelerated-template #accordionFaq .accordion-button::before,
    body.ai-page.accelerated-template #accordionFaq .accordion-button::after {
        right: 1.36rem !important;
    }

    body.ai-page.accelerated-template #accordionFaq .accordion-body {
        padding: 1rem 1.05rem 1.08rem !important;
    }
}

body.ai-page.accelerated-template .table {
    color: rgba(245, 248, 251, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
}

body.ai-page.accelerated-template .table > :not(caption) > * > * {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body.ai-page.accelerated-template hr {
    border-color: rgba(255, 255, 255, 0.14);
}

body.ai-page.accelerated-template .icon-lg.bg-primary,
body.ai-page.accelerated-template .bg-primary.bg-opacity-10 {
    background: rgba(9, 184, 80, 0.15) !important;
    border: 1px solid rgba(9, 184, 80, 0.22);
}

body.ai-page.accelerated-template .ai-typed-cursor {
    display: inline-block;
    margin-left: 0.02em;
    margin-right: -0.58ch;
    pointer-events: none;
    color: #7cf0ad;
    background: linear-gradient(180deg, rgba(224, 255, 239, 0.95) 0%, rgba(124, 240, 173, 0.95) 48%, rgba(9, 184, 80, 0.85) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(9, 184, 80, 0.55), 0 0 20px rgba(9, 184, 80, 0.35);
    filter: blur(0) drop-shadow(0 0 10px rgba(9, 184, 80, 0.35));
    animation: ai-cursor-blink 0.9s steps(1, end) infinite;
    transform-origin: center 65%;
}

body.ai-page.accelerated-template .ai-typed-cursor.ai-typed-cursor-done {
    animation: ai-cursor-fade-out 0.58s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

body.ai-page.accelerated-template .ai-typed-heading.ai-typed-pending,
body.ai-page.accelerated-template .ai-typed-heading.ai-typed-pending * {
    color: transparent !important;
    text-shadow: none !important;
}

@keyframes ai-cursor-blink {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}

@keyframes ai-cursor-fade-out {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0) drop-shadow(0 0 10px rgba(9, 184, 80, 0.35));
    }
    35% {
        opacity: 1;
        transform: translate3d(0, -0.02em, 0) scale(1.12);
        filter: blur(0.15px) drop-shadow(0 0 15px rgba(9, 184, 80, 0.5));
    }
    100% {
        opacity: 0;
        transform: translate3d(0, -0.18em, 0) scale(0.72);
        filter: blur(1.8px) drop-shadow(0 0 18px rgba(9, 184, 80, 0));
    }
}
