.page-inner {
    --ix-bg: #07090b;
    --ix-surface: #0d1115;
    --ix-surface-raised: #12171c;
    --ix-surface-soft: #0a0d10;
    --ix-ink: #f2f6f4;
    --ix-muted: #a9b4ae;
    --ix-dim: #7e8a84;
    --ix-line: rgba(242, 246, 244, 0.13);
    --ix-line-strong: rgba(242, 246, 244, 0.24);
    --ix-green: #00ff9d;
    --ix-green-ink: #03110a;
    --ix-green-soft: rgba(0, 255, 157, 0.1);
    --ix-purple: #8b3dff;
    --ix-purple-soft: rgba(112, 0, 255, 0.13);
    --ix-danger: #ff7a7a;
    --ix-heading: "Exo 2", sans-serif;
    --ix-body: "Source Sans 3", sans-serif;
    --ix-ease: cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--ix-bg);
    color: var(--ix-ink);
    font-family: var(--ix-body);
}

.page-inner::selection {
    background: var(--ix-green);
    color: var(--ix-green-ink);
}

.page-inner main {
    overflow: clip;
}

.page-inner.ix-dialog-open {
    overflow: hidden;
}

.page-inner .navbar {
    background: rgba(7, 9, 11, 0.9);
    border-bottom-color: rgba(242, 246, 244, 0.08);
    padding: 0.72rem 0;
}

.page-inner .navbar.scrolled {
    background: rgba(7, 9, 11, 0.97);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
}

.page-inner .nav-links li a {
    color: var(--ix-muted);
}

.page-inner .nav-links li a:hover,
.page-inner .nav-links li a.active {
    color: var(--ix-ink);
    background: rgba(242, 246, 244, 0.06);
}

.page-inner .nav-links li a.active i {
    color: var(--ix-green);
}

.page-inner .nav-dropdown-menu {
    background: rgba(11, 15, 18, 0.98);
    border-color: rgba(242, 246, 244, 0.12);
    border-radius: 12px;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.24);
}

.page-inner .btn-cta {
    color: var(--ix-green) !important;
    background: var(--ix-green-soft);
    border-color: rgba(0, 255, 157, 0.4);
    transition: color 240ms var(--ix-ease), background 240ms var(--ix-ease), border-color 240ms var(--ix-ease), transform 240ms var(--ix-ease);
}

.page-inner .btn-cta:hover {
    color: var(--ix-green-ink) !important;
    background: var(--ix-green);
    border-color: var(--ix-green);
    box-shadow: none;
    transform: translateY(-2px);
}

.page-inner .site-footer {
    background: #050708;
    border-top-color: rgba(242, 246, 244, 0.08);
}

.page-inner .site-footer::before {
    background: radial-gradient(ellipse at center top, rgba(0, 255, 157, 0.035), transparent 70%);
}

.page-inner .footer-decoration {
    height: 1px;
    background: rgba(242, 246, 244, 0.08);
}

.page-inner .footer-wave {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.35), rgba(112, 0, 255, 0.25), transparent);
    opacity: 0.5;
}

.page-inner .footer-company-name {
    color: var(--ix-ink);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.page-inner .footer-col h3 {
    color: var(--ix-ink);
}

.page-inner .footer-links a,
.page-inner .footer-tagline,
.page-inner .footer-services-desc,
.page-inner .footer-contact-item {
    color: var(--ix-muted);
}

.page-inner .footer-services-btn {
    color: var(--ix-green);
    background: var(--ix-green-soft);
    border-color: rgba(0, 255, 157, 0.3);
}

.page-inner .footer-services-btn:hover {
    color: var(--ix-green-ink);
    background: var(--ix-green);
    box-shadow: none;
}

.page-inner .back-to-top a {
    color: var(--ix-green-ink);
    background: var(--ix-green);
    box-shadow: none;
}

.ix-scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 1050;
    width: calc(var(--ix-progress, 0) * 100%);
    height: 2px;
    pointer-events: none;
    background: var(--ix-green);
    transform-origin: left center;
}

.ix-page {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    background:
        radial-gradient(circle at var(--ix-pointer-x, 84%) var(--ix-pointer-y, 8%), rgba(112, 0, 255, 0.1), transparent 26rem),
        radial-gradient(circle at 8% 28%, rgba(0, 255, 157, 0.055), transparent 30rem),
        var(--ix-bg);
}

.ix-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 7%, rgba(242, 246, 244, 0.025) 7.05%, transparent 7.1%, transparent 92.9%, rgba(242, 246, 244, 0.025) 92.95%, transparent 93%);
}

.ix-shell {
    width: min(100% - 2.5rem, 1240px);
    margin-inline: auto;
}

.ix-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(35rem, 72vh, 48rem);
    padding: clamp(9.5rem, 14vw, 12rem) 0 clamp(5rem, 9vw, 8rem);
    border-bottom: 1px solid rgba(242, 246, 244, 0.08);
}

.ix-hero::after {
    content: "";
    position: absolute;
    right: max(1.25rem, calc((100vw - 1240px) / 2));
    bottom: 0;
    width: min(42vw, 34rem);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.7));
}

.ix-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    gap: clamp(3rem, 9vw, 8rem);
    align-items: end;
}

.ix-hero-copy {
    min-width: 0;
}

.ix-signal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.45rem;
    color: var(--ix-green);
    font-family: var(--ix-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ix-status-dot {
    flex: 0 0 auto;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: var(--ix-green);
    box-shadow: 0 0 8px rgba(0, 255, 157, 0.72);
    animation: ix-status 2.4s ease-in-out infinite;
}

.ix-title {
    max-width: 13ch;
    margin: 0;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: clamp(3.35rem, 7.5vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 0.98;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.ix-title em,
.ix-title strong {
    color: var(--ix-green);
    font-style: normal;
    font-weight: inherit;
}

.ix-accent,
.ix-inline-link {
    color: var(--ix-green);
}

.ix-inline-link {
    text-underline-offset: 0.2em;
}

.ix-lead {
    max-width: 40rem;
    margin: 2rem 0 0;
    color: var(--ix-muted);
    font-size: clamp(1.08rem, 1.7vw, 1.3rem);
    line-height: 1.65;
    text-wrap: pretty;
}

.ix-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.6rem;
    color: var(--ix-dim);
    font-size: 0.9rem;
}

.ix-lead + .ix-breadcrumb {
    margin-top: 1.5rem;
}

.ix-breadcrumb a {
    color: var(--ix-muted);
    text-decoration: none;
    transition: color 180ms ease;
}

.ix-breadcrumb a:hover {
    color: var(--ix-green);
}

.ix-breadcrumb i,
.ix-breadcrumb span[aria-hidden="true"] {
    color: rgba(242, 246, 244, 0.35);
    font-size: 0.68rem;
}

.ix-hero-panel {
    position: relative;
    padding: 1.4rem;
    border: 1px solid var(--ix-line);
    border-radius: 14px;
    background: rgba(13, 17, 21, 0.78);
}

.ix-hero-panel::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 1.4rem;
    width: 4rem;
    height: 1px;
    background: var(--ix-green);
}

.ix-panel-label {
    margin: 0 0 1rem;
    color: var(--ix-dim);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.ix-panel-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(242, 246, 244, 0.09);
}

.ix-panel-row:first-of-type {
    border-top: 0;
}

.ix-panel-row span {
    color: var(--ix-dim);
    font-size: 0.88rem;
}

.ix-panel-row strong {
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: right;
}

.ix-section {
    position: relative;
    padding: clamp(5.5rem, 9vw, 9rem) 0;
    scroll-margin-top: 6rem;
}

.ix-section + .ix-section {
    border-top: 1px solid rgba(242, 246, 244, 0.06);
}

.ix-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.65fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: end;
    margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.ix-section-title {
    max-width: 17ch;
    margin: 0;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: clamp(2.35rem, 4.8vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1;
    text-wrap: balance;
}

.ix-section-copy {
    max-width: 36rem;
    margin: 0;
    color: var(--ix-muted);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    text-wrap: pretty;
}

.ix-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    padding: 0.38rem 0.72rem;
    border: 1px solid rgba(0, 255, 157, 0.28);
    border-radius: 999px;
    color: var(--ix-green);
    background: var(--ix-green-soft);
    font-size: 0.78rem;
    font-weight: 600;
}

.ix-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.1rem;
    color: var(--ix-dim);
    font-size: 0.86rem;
}

.ix-hero-copy > .ix-meta {
    margin-top: 1.4rem;
}

.ix-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.ix-meta i {
    color: var(--ix-green);
}

.ix-action,
.ix-arrow,
.sd-cta-btn,
.tq-btn,
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 3rem;
    padding: 0.78rem 1.2rem;
    border: 1px solid var(--ix-line-strong);
    border-radius: 999px;
    color: var(--ix-ink);
    background: transparent;
    font-family: var(--ix-body);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: color 220ms var(--ix-ease), background 220ms var(--ix-ease), border-color 220ms var(--ix-ease), transform 220ms var(--ix-ease);
}

.ix-action:hover,
.ix-arrow:hover,
.sd-cta-btn:hover,
.tq-btn:hover,
.cta-btn:hover {
    color: var(--ix-green-ink);
    background: var(--ix-green);
    border-color: var(--ix-green);
    transform: translateY(-2px);
}

.ix-action--primary,
.sd-cta-btn.primary,
.tq-btn-primary,
.cta-btn.primary {
    color: var(--ix-green-ink);
    background: var(--ix-green);
    border-color: var(--ix-green);
}

.ix-action--primary:hover,
.sd-cta-btn.primary:hover,
.tq-btn-primary:hover,
.cta-btn.primary:hover {
    background: #55ffb8;
    border-color: #55ffb8;
}

.ix-action--secondary,
.sd-cta-btn.secondary,
.tq-btn-secondary,
.cta-btn.secondary {
    color: var(--ix-muted);
    background: rgba(242, 246, 244, 0.035);
}

.ix-arrow {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--ix-green);
    background: transparent;
}

.ix-arrow:hover {
    color: var(--ix-ink);
    background: transparent;
    border-color: transparent;
    transform: translateX(4px);
}

i.ix-arrow {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

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

.ix-record {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--ix-line);
    border-radius: 14px;
    background: var(--ix-surface);
    transition: border-color 260ms var(--ix-ease), transform 260ms var(--ix-ease), background 260ms var(--ix-ease);
}

.ix-record:hover {
    border-color: rgba(0, 255, 157, 0.38);
    background: var(--ix-surface-raised);
    transform: translateY(-4px);
}

.ix-record-link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
}

.ix-media {
    position: relative;
    min-height: 15rem;
    overflow: hidden;
    background: var(--ix-surface-soft);
}

.ix-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.04);
    transition: transform 600ms var(--ix-ease), filter 600ms var(--ix-ease);
}

.ix-record:hover .ix-media img {
    transform: scale(1.035);
    filter: saturate(0.95) contrast(1.03);
}

.ix-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(7, 9, 11, 0.65));
}

.ix-record-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1.1rem;
    padding: clamp(1.35rem, 2.5vw, 2rem);
}

.ix-record-title {
    margin: 0;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
    text-wrap: balance;
}

.ix-record-copy {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--ix-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    text-wrap: pretty;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ix-record-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.25rem;
}

.ix-empty {
    display: grid;
    justify-items: start;
    max-width: 42rem;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid var(--ix-line);
    border-radius: 14px;
    background: var(--ix-surface);
}

.ix-empty i {
    margin-bottom: 1.5rem;
    color: var(--ix-green);
    font-size: 2rem;
}

.ix-empty h2,
.ix-empty h3 {
    margin: 0 0 0.8rem;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    font-weight: 600;
}

.ix-empty p {
    margin: 0;
    color: var(--ix-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.ix-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: clamp(3rem, 6vw, 5rem);
}

.ix-pagination a,
.ix-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.8rem;
    min-height: 2.8rem;
    padding: 0.5rem;
    border: 1px solid var(--ix-line);
    border-radius: 10px;
    color: var(--ix-muted);
    background: var(--ix-surface);
    font-weight: 600;
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ix-pagination a:hover,
.ix-pagination a[aria-current="page"],
.ix-pagination .active {
    color: var(--ix-green-ink);
    background: var(--ix-green);
    border-color: var(--ix-green);
}

.page-blog .ix-record-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-blog .ix-record:first-child {
    grid-column: 1 / -1;
}

.page-blog .ix-record:first-child .ix-record-link {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
}

.page-blog .ix-record:first-child .ix-media {
    min-height: 28rem;
}

.page-blog .ix-record:not(:first-child) .ix-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
}

.page-certificates .ix-record-grid {
    grid-template-columns: minmax(0, 1fr);
}

.page-certificates .ix-record {
    display: grid;
    grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
    min-height: 23rem;
}

.page-certificates .ix-record:nth-child(even) {
    grid-template-columns: minmax(0, 1.28fr) minmax(16rem, 0.72fr);
}

.page-certificates .ix-record:nth-child(even) .ix-media {
    grid-column: 2;
    grid-row: 1;
}

.page-certificates .ix-record:nth-child(even) .ix-record-body {
    grid-column: 1;
    grid-row: 1;
}

.page-certificates .ix-media {
    min-height: 100%;
}

.ix-media-button {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: zoom-in;
}

.ix-media-button img {
    min-height: 100%;
}

.ix-media-hint {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.68rem;
    border-radius: 999px;
    color: var(--ix-ink);
    background: rgba(7, 9, 11, 0.82);
    font-size: 0.78rem;
}

.ix-media-action {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.72rem;
    border-radius: 999px;
    color: var(--ix-ink);
    background: rgba(7, 9, 11, 0.84);
    font-size: 0.78rem;
    font-weight: 600;
}

.ix-media-placeholder {
    display: grid;
    width: 100%;
    min-height: 100%;
    place-items: center;
    color: rgba(0, 255, 157, 0.55);
    background: var(--ix-surface-soft);
    font-size: clamp(2.5rem, 7vw, 5rem);
}

.ix-media-empty {
    display: grid;
    place-items: center;
    color: rgba(0, 255, 157, 0.55);
    font-size: clamp(2.5rem, 7vw, 5rem);
}

.ix-record-meta {
    display: grid;
    gap: 0.7rem;
    margin: 0;
}

.ix-record-meta .ix-meta {
    display: grid;
    grid-template-columns: minmax(7rem, 0.4fr) minmax(0, 1fr);
    gap: 0.75rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--ix-line);
}

.ix-record-meta dt {
    color: var(--ix-dim);
}

.ix-record-meta dd {
    margin: 0;
    color: var(--ix-ink);
}

.ix-chip-link {
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.ix-chip-link:hover {
    color: var(--ix-green-ink);
    background: var(--ix-green);
    border-color: var(--ix-green);
}

.ix-dialog {
    width: min(92vw, 72rem);
    max-width: none;
    max-height: 88vh;
    margin: auto;
    padding: 0;
    overflow: visible;
    border: 1px solid var(--ix-line-strong);
    border-radius: 14px;
    color: var(--ix-ink);
    background: #080b0d;
}

.ix-dialog-frame {
    position: relative;
    display: grid;
    max-height: 88vh;
}

.ix-dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--ix-line);
}

.ix-dialog-header .ix-panel-label {
    margin: 0;
}

.ix-dialog-media {
    display: grid;
    min-height: 12rem;
    max-height: calc(88vh - 4rem);
    place-items: center;
    overflow: auto;
}

.ix-dialog-media img {
    display: block;
    max-width: 100%;
    max-height: calc(88vh - 4rem);
    object-fit: contain;
}

.ix-dialog::backdrop {
    background: rgba(2, 3, 4, 0.9);
    backdrop-filter: blur(8px);
}

.ix-dialog-figure {
    display: grid;
    max-height: 88vh;
    margin: 0;
    place-items: center;
}

.ix-dialog img {
    display: block;
    max-width: 100%;
    max-height: 86vh;
    object-fit: contain;
}

.ix-dialog-close {
    position: absolute;
    top: -1rem;
    right: -1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--ix-line-strong);
    border-radius: 50%;
    color: var(--ix-ink);
    background: #101519;
    cursor: pointer;
}

.ix-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 22rem);
    gap: clamp(3rem, 7vw, 6rem);
    align-items: start;
}

.ix-prose {
    min-width: 0;
    color: var(--ix-muted);
    font-size: clamp(1.03rem, 1.35vw, 1.15rem);
    line-height: 1.82;
}

.ix-prose > :first-child {
    margin-top: 0;
}

.ix-prose > :last-child {
    margin-bottom: 0;
}

.ix-prose h1,
.ix-prose h2,
.ix-prose h3,
.ix-prose h4 {
    max-width: 22ch;
    margin: 2.6em 0 0.8em;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.15;
    text-wrap: balance;
}

.ix-prose h1,
.ix-prose h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}

.ix-prose h3 {
    font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.ix-prose p,
.ix-prose ul,
.ix-prose ol,
.ix-prose blockquote,
.ix-prose pre,
.ix-prose table {
    max-width: 72ch;
    margin: 1.25em 0;
}

.ix-prose ul,
.ix-prose ol {
    padding-left: 1.4em;
}

.ix-prose li + li {
    margin-top: 0.5em;
}

.ix-prose li::marker {
    color: var(--ix-green);
}

.ix-prose a {
    color: var(--ix-green);
    text-decoration-color: rgba(0, 255, 157, 0.45);
    text-underline-offset: 0.2em;
}

.ix-prose strong {
    color: var(--ix-ink);
    font-weight: 600;
}

.ix-prose blockquote {
    padding: 1.25rem 1.4rem;
    border: 1px solid rgba(0, 255, 157, 0.25);
    border-radius: 12px;
    color: var(--ix-ink);
    background: var(--ix-green-soft);
}

.ix-prose img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 12px;
}

.ix-prose > .ix-media {
    min-height: 0;
    margin: 0 0 clamp(2rem, 5vw, 4rem);
    border-radius: 14px;
}

.ix-prose > .ix-media img {
    width: 100%;
    height: auto;
    max-height: 38rem;
    margin: 0;
    object-fit: cover;
}

.ix-prose .lead {
    color: var(--ix-muted) !important;
}

.ix-prose .lead strong {
    color: var(--ix-ink);
}

.ix-prose pre,
.ix-prose code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.ix-prose pre {
    max-width: 100%;
    padding: 1.2rem;
    overflow: auto;
    border: 1px solid var(--ix-line);
    border-radius: 10px;
    color: #d8e3de;
    background: #050708;
}

.ix-prose table {
    width: 100%;
    border-collapse: collapse;
}

.ix-prose th,
.ix-prose td {
    padding: 0.8rem;
    border-bottom: 1px solid var(--ix-line);
    text-align: left;
    vertical-align: top;
}

.ix-prose th {
    color: var(--ix-ink);
    font-family: var(--ix-heading);
}

.ix-featured-media {
    margin: 0 0 clamp(2rem, 5vw, 4rem);
    overflow: hidden;
    border-radius: 14px;
    background: var(--ix-surface);
}

.ix-featured-media img {
    display: block;
    width: 100%;
    max-height: 38rem;
    object-fit: cover;
}

.ix-aside {
    position: sticky;
    top: 7rem;
    display: grid;
    gap: 1rem;
}

.ix-aside-block {
    padding: 1.3rem;
    border: 1px solid var(--ix-line);
    border-radius: 14px;
    background: var(--ix-surface);
}

.ix-aside-title {
    margin: 0 0 1rem;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.ix-related-list {
    display: grid;
    gap: 0;
}

.ix-related-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.9rem 0;
    border-top: 1px solid var(--ix-line);
    color: inherit;
    text-decoration: none;
}

.ix-related-item:has(> .ix-media) {
    grid-template-columns: 4.25rem minmax(0, 1fr) auto;
}

.ix-related-item > .ix-media {
    width: 4.25rem;
    min-height: 4.25rem;
    border-radius: 8px;
}

.ix-related-item > .ix-media::after {
    display: none;
}

.ix-related-item > .ix-media i {
    display: grid;
    width: 100%;
    height: 4.25rem;
    place-items: center;
    color: var(--ix-green);
    background: var(--ix-green-soft);
}

.ix-related-item:first-child {
    border-top: 0;
}

.ix-related-item img {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 8px;
    object-fit: cover;
}

.ix-related-item strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ix-related-item span,
.ix-related-item time {
    color: var(--ix-dim);
    font-size: 0.76rem;
}

.ix-related-item small {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.3rem;
    color: var(--ix-dim);
    font-size: 0.78rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ix-related-item:hover strong {
    color: var(--ix-green);
}

.ix-callout {
    position: relative;
    padding: clamp(1.6rem, 4vw, 2.5rem);
    overflow: hidden;
    border: 1px solid rgba(0, 255, 157, 0.25);
    border-radius: 14px;
    background: var(--ix-green-soft);
}

.ix-callout h2,
.ix-callout h3 {
    max-width: 18ch;
    margin: 0 0 0.7rem;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: clamp(1.45rem, 2.7vw, 2.1rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.ix-callout p {
    max-width: 50ch;
    margin: 0 0 1.4rem;
    color: var(--ix-muted);
    line-height: 1.65;
}

.page-service .ix-hero-icon,
.sd-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(4rem, 7vw, 5.5rem);
    height: clamp(4rem, 7vw, 5.5rem);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 14px;
    color: var(--ix-green);
    background: var(--ix-green-soft);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.page-service .ix-hero-panel .ix-record-grid {
    display: block;
}

.page-service .ix-hero-panel .ix-record {
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr);
    column-gap: 0.85rem;
    align-items: center;
    min-height: 0;
    padding: 0 0 1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.page-service .ix-hero-panel .ix-record:hover {
    background: transparent;
    transform: none;
}

.page-service .ix-hero-panel .ix-record > .ix-media {
    grid-row: 1 / span 2;
    width: 3.5rem;
    min-height: 3.5rem;
    border-radius: 10px;
}

.page-service .ix-hero-panel .ix-record > .ix-media::after {
    display: none;
}

.page-service .ix-hero-panel .ix-record > .ix-media i {
    display: grid;
    width: 100%;
    height: 3.5rem;
    place-items: center;
    color: var(--ix-green);
    background: var(--ix-green-soft);
}

.page-service .ix-hero-panel .ix-record > span:not(.ix-media) {
    color: var(--ix-dim);
    font-size: 0.82rem;
}

.page-service .ix-hero-panel .ix-record > strong {
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-weight: 500;
}

.sd-content-wrap {
    width: min(100% - 2.5rem, 980px);
    margin-inline: auto;
}

.sd-content {
    color: var(--ix-muted);
}

.sd-cta {
    margin-top: clamp(3rem, 6vw, 5rem);
}

.sd-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

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

.sd-related-card {
    display: flex;
    flex-direction: column;
    min-height: 16rem;
    padding: 1.5rem;
    border: 1px solid var(--ix-line);
    border-radius: 14px;
    color: inherit;
    background: var(--ix-surface);
    text-decoration: none;
    transition: transform 240ms var(--ix-ease), border-color 240ms var(--ix-ease), background 240ms var(--ix-ease);
}

.sd-related-card:hover {
    border-color: rgba(0, 255, 157, 0.38);
    background: var(--ix-surface-raised);
    transform: translateY(-4px);
}

.sd-related-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    color: var(--ix-green);
    background: var(--ix-green-soft);
}

.sd-related-title {
    margin: 0 0 0.6rem;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.sd-related-pre {
    margin: 0 0 1.5rem;
    color: var(--ix-dim);
    line-height: 1.55;
}

.sd-related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    color: var(--ix-green);
    font-weight: 600;
}

.ix-form-shell,
.tq-wrap {
    width: min(100%, 1080px);
    margin-inline: auto;
}

.tq-wrap .ix-form-shell {
    width: 100%;
}

.tq-stepper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.25rem;
    padding: 0.4rem 0;
}

.tq-stepper::before {
    content: "";
    position: absolute;
    top: 1.7rem;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--ix-line);
}

.tq-step {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 0.65rem;
    color: var(--ix-dim);
    text-align: center;
}

.tq-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border: 1px solid var(--ix-line-strong);
    border-radius: 50%;
    color: var(--ix-muted);
    background: var(--ix-bg);
    font-family: var(--ix-heading);
    font-weight: 600;
    transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.tq-step.active .tq-step-num {
    color: var(--ix-green-ink);
    background: var(--ix-green);
    border-color: var(--ix-green);
}

.tq-step.completed .tq-step-num {
    color: var(--ix-green);
    background: var(--ix-green-soft);
    border-color: rgba(0, 255, 157, 0.4);
}

.tq-step-label {
    max-width: 10rem;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
}

.tq-step.active .tq-step-label {
    color: var(--ix-ink);
}

.tq-panel-wrap {
    padding: clamp(1.4rem, 4vw, 3.25rem);
    border: 1px solid var(--ix-line);
    border-radius: 16px;
    background: var(--ix-surface);
}

.tq-panel {
    display: none;
}

.tq-panel.active {
    display: block;
    animation: ix-panel-in 420ms var(--ix-ease) both;
}

.tq-panel-title {
    max-width: 23ch;
    margin: 0 0 0.65rem;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.12;
    text-wrap: balance;
}

.tq-panel-desc {
    max-width: 60ch;
    margin: 0 0 2.2rem;
    color: var(--ix-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.tq-cat-group + .tq-cat-group {
    margin-top: 2.2rem;
}

.tq-cat-group,
fieldset.tq-field {
    min-width: 0;
    margin-inline: 0;
    padding: 0;
    border: 0;
}

.tq-cat-title {
    margin-bottom: 0.8rem;
    color: var(--ix-muted);
    font-family: var(--ix-heading);
    font-size: 0.92rem;
    font-weight: 600;
}

.tq-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.tq-service,
.tq-radio-card {
    position: relative;
    display: flex;
    min-width: 0;
    border: 1px solid var(--ix-line);
    border-radius: 12px;
    color: var(--ix-muted);
    background: var(--ix-surface-soft);
    cursor: pointer;
    transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 200ms var(--ix-ease);
}

.tq-service {
    align-items: center;
    gap: 0.8rem;
    min-height: 5rem;
    padding: 0.9rem;
}

.tq-service:hover,
.tq-radio-card:hover {
    color: var(--ix-ink);
    border-color: var(--ix-line-strong);
    transform: translateY(-2px);
}

.tq-service.checked,
.tq-radio-card.checked {
    color: var(--ix-ink);
    border-color: rgba(0, 255, 157, 0.48);
    background: var(--ix-green-soft);
}

.tq-service input,
.tq-radio-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.tq-service:has(input:focus-visible),
.tq-radio-card:has(input:focus-visible) {
    outline: 2px solid var(--ix-green);
    outline-offset: 3px;
}

.tq-service-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 9px;
    color: var(--ix-green);
    background: var(--ix-green-soft);
}

.tq-service-name {
    min-width: 0;
    font-weight: 600;
    line-height: 1.25;
}

.tq-service-check {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    margin-left: auto;
    border: 1px solid var(--ix-line-strong);
    border-radius: 50%;
    color: transparent;
    font-size: 0.7rem;
}

.tq-service.checked .tq-service-check {
    color: var(--ix-green-ink);
    background: var(--ix-green);
    border-color: var(--ix-green);
}

.tq-counter {
    display: none;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    margin-top: 1rem;
    color: var(--ix-green);
    font-size: 0.88rem;
}

.tq-counter.visible,
.tq-counter:has(#tqCount:not(:empty)) {
    display: flex;
}

.tq-field {
    margin-top: 1.35rem;
}

.tq-label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--ix-ink);
    font-size: 0.92rem;
    font-weight: 600;
}

.tq-label .hint,
.tq-label .optional {
    color: var(--ix-dim);
    font-weight: 400;
}

.tq-label .required {
    color: var(--ix-green);
}

.tq-input,
.tq-textarea {
    width: 100%;
    border: 1px solid var(--ix-line);
    border-radius: 10px;
    outline: none;
    color: var(--ix-ink);
    background: #090c0f;
    font: inherit;
    transition: border-color 180ms ease, background 180ms ease;
}

.tq-input {
    min-height: 3.25rem;
    padding: 0.75rem 0.9rem;
}

.tq-textarea {
    min-height: 9rem;
    padding: 0.9rem;
    resize: vertical;
}

.tq-input::placeholder,
.tq-textarea::placeholder {
    color: #87938d;
    opacity: 1;
}

.tq-input:focus,
.tq-textarea:focus {
    border-color: var(--ix-green);
    background: #0b1013;
}

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

.tq-radio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.tq-radio-card {
    flex-direction: column;
    justify-content: center;
    min-height: 5.8rem;
    padding: 0.95rem;
}

.tq-radio-card-main {
    color: var(--ix-ink);
    font-weight: 600;
    line-height: 1.3;
}

.tq-radio-card-sub {
    margin-top: 0.3rem;
    color: var(--ix-dim);
    font-size: 0.82rem;
    line-height: 1.35;
}

.tq-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 2.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--ix-line);
}

.tq-summary {
    margin: 0 0 2rem;
    padding: 1.2rem;
    border: 1px solid rgba(0, 255, 157, 0.25);
    border-radius: 12px;
    background: var(--ix-green-soft);
}

.tq-summary-title {
    margin-bottom: 0.8rem;
    color: var(--ix-green);
    font-family: var(--ix-heading);
    font-weight: 600;
}

.tq-summary-row {
    display: grid;
    grid-template-columns: minmax(7rem, 0.3fr) minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-top: 1px solid rgba(242, 246, 244, 0.08);
    color: var(--ix-muted);
}

.tq-summary-row strong {
    color: var(--ix-ink);
}

.tq-error {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 122, 122, 0.35);
    border-radius: 10px;
    color: #ffc0c0;
    background: rgba(255, 122, 122, 0.08);
}

.tq-success {
    display: grid;
    justify-items: center;
    padding: clamp(1.5rem, 5vw, 4rem) 0;
    text-align: center;
}

.tq-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    color: var(--ix-green-ink);
    background: var(--ix-green);
    font-size: 1.5rem;
}

.tq-success h2 {
    margin: 0 0 1rem;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
}

.tq-success p {
    max-width: 42rem;
    margin: 1.25rem 0 1.8rem;
    color: var(--ix-muted);
    line-height: 1.65;
}

.tq-success .ref-id {
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--ix-line);
    border-radius: 999px;
    color: var(--ix-green);
    background: var(--ix-surface-soft);
    font-family: var(--ix-heading);
}

.tq-privacy-note {
    margin: 1rem 0 0;
    color: var(--ix-dim);
    font-size: 0.85rem;
    line-height: 1.55;
}

.tq-privacy-note a {
    color: var(--ix-green);
}

.ix-legal-layout,
.legal-wrap {
    display: grid;
    grid-template-columns: minmax(15rem, 19rem) minmax(0, 1fr);
    gap: clamp(2.5rem, 7vw, 6rem);
}

.ix-legal-layout {
    width: 100%;
    padding: 0;
}

.legal-wrap {
    width: min(100% - 2.5rem, 1240px);
    margin-inline: auto;
    padding: clamp(5rem, 9vw, 8rem) 0 clamp(6rem, 10vw, 10rem);
}

.ix-toc,
.legal-toc {
    position: sticky;
    top: 7rem;
    align-self: start;
    padding: 1.2rem;
    border: 1px solid var(--ix-line);
    border-radius: 14px;
    background: var(--ix-surface);
}

.ix-toc-title,
.ix-toc h2,
.legal-toc h2,
.legal-toc h3 {
    margin: 0 0 0.8rem;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: 1rem;
    font-weight: 600;
}

.ix-toc ul,
.ix-toc ol,
.legal-toc ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ix-toc a,
.legal-toc a {
    display: grid;
    grid-template-columns: 1.7rem minmax(0, 1fr);
    gap: 0.5rem;
    padding: 0.7rem 0;
    border-top: 1px solid var(--ix-line);
    color: var(--ix-dim);
    font-size: 0.84rem;
    line-height: 1.35;
    text-decoration: none;
    transition: color 180ms ease;
}

.ix-toc ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ix-toc li:first-child a,
.legal-toc li:first-child a {
    border-top: 0;
}

.ix-toc a:hover,
.ix-toc a[aria-current="location"],
.legal-toc a:hover,
.legal-toc a[aria-current="location"] {
    color: var(--ix-green);
}

.ix-toc .toc-num,
.legal-toc .toc-num {
    color: rgba(242, 246, 244, 0.38);
    font-family: var(--ix-heading);
}

.ix-legal-document {
    min-width: 0;
}

.ix-legal-section,
.legal-section {
    padding: 0;
    scroll-margin-top: 7.5rem;
}

.ix-legal-section + .ix-legal-section,
.legal-section + .legal-section {
    margin-top: clamp(3.5rem, 7vw, 6rem);
    padding-top: clamp(3.5rem, 7vw, 6rem);
    border-top: 1px solid var(--ix-line);
}

.ix-legal-section h2,
.legal-section h2 {
    max-width: 24ch;
    margin: 0 0 1.2rem;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.12;
    text-wrap: balance;
}

.ix-legal-section h3,
.legal-section h3 {
    margin: 2rem 0 0.8rem;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 600;
}

.ix-legal-section .num,
.legal-section .num {
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--ix-green);
    font-size: 0.6em;
    font-variant-numeric: tabular-nums;
    vertical-align: 0.18em;
}

.ix-legal-section p,
.ix-legal-section li,
.legal-section p,
.legal-section li {
    max-width: 74ch;
    color: var(--ix-muted);
    font-size: 1.02rem;
    line-height: 1.78;
}

.ix-legal-section p,
.legal-section p {
    margin: 0 0 1.1rem;
}

.ix-legal-section ul,
.ix-legal-section ol,
.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1.5rem;
    padding-left: 1.35rem;
}

.ix-legal-section li + li,
.legal-section li + li {
    margin-top: 0.55rem;
}

.ix-legal-section li::marker,
.legal-section li::marker {
    color: var(--ix-green);
}

.ix-legal-section a,
.legal-section a {
    color: var(--ix-green);
    text-underline-offset: 0.2em;
}

.info-card {
    margin: 1.5rem 0;
    padding: 1.2rem;
    border: 1px solid var(--ix-line);
    border-radius: 12px;
    background: var(--ix-surface);
}

.info-card h4 {
    margin: 0 0 0.8rem;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: 1.05rem;
    font-weight: 600;
}

.info-row {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
    padding: 0.6rem 0;
    color: var(--ix-muted);
}

.info-row i {
    margin-top: 0.25rem;
    color: var(--ix-green);
}

.cookie-table-wrap {
    max-width: 100%;
    margin: 1.5rem 0;
    overflow-x: auto;
    border: 1px solid var(--ix-line);
    border-radius: 12px;
}

.cookie-table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
    background: var(--ix-surface);
}

.cookie-table th,
.cookie-table td {
    padding: 0.9rem;
    border-bottom: 1px solid var(--ix-line);
    color: var(--ix-muted);
    text-align: left;
    vertical-align: top;
}

.cookie-table th {
    color: var(--ix-ink);
    background: var(--ix-surface-raised);
    font-family: var(--ix-heading);
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: 0;
}

.legal-cta {
    margin-top: clamp(3rem, 6vw, 5rem);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid rgba(0, 255, 157, 0.25);
    border-radius: 14px;
    background: var(--ix-green-soft);
}

.legal-cta h2,
.legal-cta h3 {
    margin: 0 0 0.7rem;
    color: var(--ix-ink);
    font-family: var(--ix-heading);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 600;
}

.legal-cta p {
    margin: 0 0 1.2rem;
    color: var(--ix-muted);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.last-updated {
    margin-top: 2rem;
    color: var(--ix-dim);
    font-size: 0.85rem;
}

.ix-motion-ready .ix-reveal {
    opacity: 0;
    transform: translateY(1.4rem);
    transition: opacity 700ms var(--ix-ease), transform 700ms var(--ix-ease);
}

.ix-motion-ready .ix-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ix-motion-ready .ix-record-grid .ix-reveal:nth-child(2) {
    transition-delay: 70ms;
}

.ix-motion-ready .ix-record-grid .ix-reveal:nth-child(3) {
    transition-delay: 140ms;
}

.ix-motion-ready .ix-record-grid .ix-reveal:nth-child(4) {
    transition-delay: 210ms;
}

@keyframes ix-status {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ix-panel-in {
    from {
        opacity: 0;
        transform: translateY(0.75rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .ix-hero-grid,
    .ix-section-heading {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
    }

    .ix-hero-panel {
        max-width: 38rem;
    }

    .ix-article-layout {
        grid-template-columns: minmax(0, 1fr) 18rem;
        gap: 3rem;
    }

    .sd-related-grid,
    .tq-service-grid,
    .tq-radio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ix-legal-layout,
    .legal-wrap {
        grid-template-columns: minmax(13rem, 16rem) minmax(0, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 820px) {
    .ix-shell,
    .ix-form-shell,
    .tq-wrap,
    .legal-wrap {
        width: min(100% - 2rem, 46rem);
    }

    .ix-hero {
        min-height: auto;
        padding-top: 8.5rem;
    }

    .ix-title {
        max-width: 15ch;
        font-size: clamp(2.85rem, 11vw, 4.8rem);
    }

    .ix-record-grid,
    .page-blog .ix-record-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-blog .ix-record:first-child {
        grid-column: auto;
    }

    .page-blog .ix-record:first-child .ix-record-link {
        display: flex;
    }

    .page-blog .ix-record:first-child .ix-media {
        min-height: 20rem;
    }

    .page-certificates .ix-record,
    .page-certificates .ix-record:nth-child(even) {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .page-certificates .ix-record:nth-child(even) .ix-media,
    .page-certificates .ix-record:nth-child(even) .ix-record-body {
        grid-column: auto;
        grid-row: auto;
    }

    .page-certificates .ix-media {
        min-height: 20rem;
    }

    .ix-article-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .ix-aside {
        position: static;
    }

    .ix-legal-layout,
    .legal-wrap {
        grid-template-columns: minmax(0, 1fr);
    }

    .ix-toc,
    .legal-toc {
        position: static;
    }

    .ix-toc ul,
    .legal-toc ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 1rem;
    }

    .sd-related-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .ix-page::before {
        display: none;
    }

    .ix-hero {
        padding: 7.6rem 0 4.5rem;
    }

    .ix-hero-grid {
        gap: 2rem;
    }

    .ix-title {
        font-size: clamp(2.55rem, 13vw, 3.75rem);
        letter-spacing: -0.03em;
    }

    .ix-lead {
        margin-top: 1.4rem;
        font-size: 1.03rem;
    }

    .ix-section {
        padding: 4.5rem 0;
    }

    .ix-section-title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .ix-section-heading {
        margin-bottom: 2.5rem;
    }

    .page-blog .ix-record:first-child .ix-media,
    .page-certificates .ix-media {
        min-height: 15rem;
    }

    .ix-dialog {
        width: calc(100vw - 1.5rem);
    }

    .ix-dialog-close {
        top: 0.5rem;
        right: 0.5rem;
    }

    .tq-stepper {
        margin-inline: -0.25rem;
    }

    .tq-step-label {
        font-size: 0.7rem;
    }

    .tq-step-num {
        width: 2.35rem;
        height: 2.35rem;
    }

    .tq-stepper::before {
        top: 1.55rem;
    }

    .tq-service-grid,
    .tq-radio-grid,
    .tq-grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .tq-actions {
        flex-direction: column-reverse;
    }

    .tq-actions .tq-btn {
        width: 100%;
    }

    .tq-summary-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.2rem;
    }

    .ix-toc ul,
    .legal-toc ul {
        grid-template-columns: minmax(0, 1fr);
    }

    .btn-group,
    .sd-cta-buttons {
        flex-direction: column;
    }

    .btn-group .cta-btn,
    .sd-cta-buttons .sd-cta-btn {
        width: 100%;
    }

    .page-quote .whatsapp-float {
        display: none;
    }
}

@media (max-width: 360px) {
    .ix-shell,
    .ix-form-shell,
    .tq-wrap,
    .legal-wrap {
        width: min(100% - 1.25rem, 46rem);
    }

    .ix-title {
        font-size: 2.45rem;
    }

    .ix-hero-panel,
    .tq-panel-wrap {
        padding: 1rem;
    }

    .tq-step-label {
        display: none;
    }

    .tq-stepper {
        margin-bottom: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ix-status-dot,
    .tq-panel.active,
    .page-inner .footer-wave {
        animation: none;
    }

    .ix-motion-ready .ix-reveal,
    .ix-motion-ready .ix-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ix-record,
    .ix-media img,
    .ix-action,
    .ix-arrow,
    .sd-cta-btn,
    .tq-btn,
    .cta-btn,
    .tq-service,
    .tq-radio-card,
    .sd-related-card {
        transition-duration: 0.01ms;
    }
}
