.ts-certified-translations-page #pre-footer {
    display: none !important;
}

.ts-certified,
.ts-certified *,
.ts-certified *::before,
.ts-certified *::after {
    box-sizing: border-box;
}

.ts-certified {
    --tsc-primary: #3f5a67;
    --tsc-primary-dark: #263f4a;
    --tsc-secondary: #cb264d;
    --tsc-secondary-dark: #ac1f40;
    --tsc-ink: #182238;
    --tsc-copy: #52617b;
    --tsc-muted: #5f6b80;
    --tsc-line: #dfe7ef;
    --tsc-canvas: #f4f7fa;
    --tsc-soft-red: #fff0f4;
    --tsc-soft-primary: #eff5f7;
    --tsc-white: #fff;
    position: relative;
    overflow: hidden;
    padding: 24px 20px 72px;
    background:
        radial-gradient(circle at 91% 3%, rgba(63, 90, 103, .08), transparent 25%),
        var(--tsc-canvas);
    color: var(--tsc-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.ts-certified__sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.ts-certified__shell {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.ts-certified h1,
.ts-certified h2,
.ts-certified h3,
.ts-certified p,
.ts-certified ul {
    margin-top: 0;
}

.ts-certified h1,
.ts-certified h2,
.ts-certified h3 {
    color: inherit;
    font-family: inherit;
    text-transform: none;
}

.ts-certified a {
    text-decoration: none;
}

.ts-certified img,
.ts-certified svg {
    max-width: 100%;
}

.ts-certified :is(a, summary):focus-visible {
    outline: 3px solid var(--tsc-secondary);
    outline-offset: 3px;
}

.ts-certified__breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 0 18px;
    color: #606c81;
    font-size: 13px;
}

.ts-certified__breadcrumbs a {
    color: var(--tsc-primary);
    font-weight: 700;
}

.ts-certified__breadcrumbs a:hover {
    color: var(--tsc-secondary);
}

.ts-certified__kicker {
    margin: 0 0 8px;
    color: var(--tsc-secondary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ts-certified__hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.13fr) minmax(350px, .87fr);
    gap: 48px;
    align-items: center;
    overflow: hidden;
    padding: 58px;
    border: 1px solid #e1e9ef;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff 0%, #f7fafc 54%, #edf5f7 100%);
    box-shadow: 0 24px 64px rgba(24, 34, 56, .08);
}

.ts-certified__hero::before {
    position: absolute;
    top: -210px;
    right: -155px;
    width: 460px;
    height: 460px;
    border: 74px solid rgba(203, 38, 77, .035);
    border-radius: 50%;
    content: "";
}

.ts-certified__hero-copy,
.ts-certified__quote-card {
    position: relative;
    z-index: 1;
}

.ts-certified__hero h1 {
    max-width: 650px;
    margin: 0;
    color: #111a2e;
    font-size: clamp(44px, 5.3vw, 66px);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: .99;
}

.ts-certified__hero-lead {
    max-width: 670px;
    margin: 24px 0 0;
    color: var(--tsc-copy);
    font-size: 18px;
    line-height: 1.65;
}

.ts-certified__hero-support {
    max-width: 680px;
    margin: 14px 0 0;
    color: var(--tsc-ink);
    font-size: 16px;
    font-weight: 750;
    line-height: 1.55;
}

.ts-certified__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.ts-certified__button {
    display: inline-flex;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.ts-certified__button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ts-certified__button:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.ts-certified__button--primary {
    background: linear-gradient(135deg, #45c878, #179956);
    box-shadow: 0 12px 28px rgba(23, 153, 86, .24);
    color: #fff;
}

.ts-certified__button--primary:hover,
.ts-certified__button--primary:focus {
    background: linear-gradient(135deg, #3fbd70, #13894c);
    color: #fff;
    box-shadow: 0 15px 32px rgba(23, 153, 86, .32);
}

.ts-certified__button--secondary {
    border-color: #cbd8df;
    background: #fff;
    color: var(--tsc-primary-dark);
}

.ts-certified__button--secondary:hover,
.ts-certified__button--secondary:focus {
    border-color: var(--tsc-primary);
    background: var(--tsc-soft-primary);
    color: var(--tsc-primary-dark);
}

.ts-certified__button--light {
    background: linear-gradient(135deg, #45c878, #179956);
    box-shadow: 0 12px 26px rgba(23, 153, 86, .26);
    color: #fff;
}

.ts-certified__button--light:hover,
.ts-certified__button--light:focus {
    background: linear-gradient(135deg, #3fbd70, #13894c);
    color: #fff;
    box-shadow: 0 15px 30px rgba(23, 153, 86, .32);
}

.ts-certified__button--full {
    width: 100%;
}

.ts-certified__hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 26px;
    color: var(--tsc-copy);
    font-size: 12px;
    font-weight: 750;
}

.ts-certified__hero-proof span {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.ts-certified__hero-proof svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--tsc-secondary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ts-certified__quote-card {
    padding: 28px;
    border: 1px solid #d8e3e9;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(24, 34, 56, .12);
}

.ts-certified__quote-top {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
}

.ts-certified__quote-top small,
.ts-certified__quote-top strong {
    display: block;
}

.ts-certified__quote-top small {
    margin-bottom: 2px;
    color: var(--tsc-secondary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .065em;
    text-transform: uppercase;
}

.ts-certified__quote-top strong {
    color: var(--tsc-ink);
    font-size: 19px;
    line-height: 1.25;
}

.ts-certified__icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border: 1px solid #f3b9c8;
    border-radius: 11px;
    background: var(--tsc-soft-red);
    color: var(--tsc-secondary);
}

.ts-certified__icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ts-certified__price-row {
    display: flex;
    gap: 18px;
    align-items: end;
    justify-content: space-between;
    margin: 24px 0 0;
    padding: 18px 0;
    border-top: 1px solid var(--tsc-line);
    border-bottom: 1px solid var(--tsc-line);
}

.ts-certified__price-row > span {
    color: var(--tsc-muted);
    font-size: 13px;
    font-weight: 700;
}

.ts-certified__price-row strong {
    color: var(--tsc-ink);
    font-size: 22px;
    letter-spacing: -.025em;
    white-space: nowrap;
}

.ts-certified__price-row small {
    color: var(--tsc-muted);
    font-size: 11px;
    letter-spacing: 0;
}

.ts-certified__check-list {
    display: grid;
    gap: 11px;
    margin: 20px 0;
    padding: 0;
    color: var(--tsc-copy);
    font-size: 13px;
    list-style: none;
}

.ts-certified__check-list li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
}

.ts-certified__check-list svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 2px;
    fill: none;
    stroke: var(--tsc-secondary);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ts-certified__trustpilot {
    display: flex;
    justify-content: center;
    margin: 17px auto 0;
    padding-top: 17px;
    border-top: 1px solid var(--tsc-line);
}

.ts-certified__trustpilot img {
    display: block;
    width: 190px;
    height: auto;
}

.ts-certified__trust-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
    padding: 24px 30px;
    border: 1px solid var(--tsc-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(24, 34, 56, .045);
}

.ts-certified__trust-bar > span {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 0 10px;
    align-items: center;
}

.ts-certified__trust-bar svg {
    grid-row: span 2;
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--tsc-secondary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ts-certified__trust-bar b {
    color: var(--tsc-primary-dark);
    font-size: 13px;
    line-height: 1.25;
}

.ts-certified__trust-bar small {
    color: var(--tsc-muted);
    font-size: 11px;
    line-height: 1.35;
}

.ts-certified__section {
    padding: 76px 0 6px;
}

.ts-certified__section--compact {
    padding-top: 68px;
}

.ts-certified__section--tinted {
    position: relative;
    margin-top: 70px;
    padding: 64px 54px;
    border: 1px solid #e1e9ef;
    border-radius: 17px;
    background: linear-gradient(135deg, #f9fbfc, #edf4f7);
}

.ts-certified__section-heading {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.ts-certified__section-heading h2 {
    margin: 0;
    color: var(--tsc-ink);
    font-size: clamp(32px, 4.3vw, 48px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.ts-certified__section-heading > p:last-child {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--tsc-copy);
    font-size: 16px;
    line-height: 1.65;
}

.ts-certified__country-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ts-certified__country-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 22px;
    gap: 18px;
    align-items: center;
    min-height: 164px;
    padding: 24px;
    border: 1px solid var(--tsc-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(24, 34, 56, .035);
    color: var(--tsc-ink);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.ts-certified__country-card:hover {
    border-color: #c5d6de;
    box-shadow: 0 16px 34px rgba(24, 34, 56, .075);
    color: var(--tsc-ink);
    transform: translateY(-2px);
}

.ts-certified__country-card > img {
    display: block;
    width: 56px;
    height: 38px;
    object-fit: cover;
    border: 1px solid #e4e9ef;
    border-radius: 6px;
    box-shadow: 0 5px 14px rgba(24, 34, 56, .08);
}

.ts-certified__country-copy {
    display: grid;
    gap: 3px;
}

.ts-certified__country-copy small {
    color: var(--tsc-secondary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.ts-certified__country-copy strong {
    font-size: 18px;
    font-weight: 650;
    line-height: 1.25;
}

.ts-certified__country-copy > span {
    color: var(--tsc-copy);
    font-size: 13px;
    line-height: 1.5;
}

.ts-certified__country-arrow {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: var(--tsc-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .18s ease;
}

.ts-certified__country-card:hover .ts-certified__country-arrow {
    transform: translateX(3px);
}

.ts-certified__country-card--other {
    grid-column: 1 / -1;
    min-height: 132px;
    background: linear-gradient(135deg, #fff, #f9f1f4);
}

.ts-certified__country-globe {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 1px solid #f2bac9;
    border-radius: 50%;
    background: var(--tsc-soft-red);
    color: var(--tsc-secondary);
}

.ts-certified__country-globe svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.ts-certified__type-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ts-certified__type-card {
    position: relative;
    min-height: 275px;
    padding: 25px;
    border: 1px solid #dce6eb;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(24, 34, 56, .035);
}

.ts-certified__type-number {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #9ca8b9;
    font-size: 21px;
    font-weight: 900;
}

.ts-certified__type-card h3,
.ts-certified__step h3 {
    margin: 19px 0 8px;
    color: var(--tsc-ink);
    font-size: 18px;
    font-weight: 650;
    line-height: 1.25;
}

.ts-certified__type-card p,
.ts-certified__step p {
    margin: 0;
    color: var(--tsc-copy);
    font-size: 13px;
    line-height: 1.58;
}

.ts-certified__inline-help {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin-top: 18px;
    padding: 17px 20px;
    border: 1px solid #edcad4;
    border-radius: 12px;
    background: #fff9fb;
    color: var(--tsc-copy);
    font-size: 14px;
}

.ts-certified__inline-help strong {
    color: var(--tsc-ink);
}

.ts-certified__inline-help > a {
    color: var(--tsc-secondary);
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

.ts-certified__package {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .84fr);
    gap: 50px;
    align-items: center;
    margin-top: 72px;
    padding: 54px;
    border-radius: 17px;
    background: linear-gradient(135deg, #162638 0%, #243e49 100%);
    box-shadow: 0 22px 50px rgba(24, 34, 56, .14);
    color: #fff;
}

.ts-certified__package .ts-certified__kicker {
    color: #ff87a4;
}

.ts-certified__package h2 {
    max-width: 640px;
    margin: 0;
    font-size: clamp(32px, 4.2vw, 47px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.ts-certified__package-copy > p:not(.ts-certified__kicker) {
    max-width: 630px;
    margin: 17px 0 0;
    color: #d5dde5;
    font-size: 15px;
    line-height: 1.65;
}

.ts-certified__package-copy .ts-certified__button {
    margin-top: 24px;
}

.ts-certified__package-list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ts-certified__package-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    color: #eef3f6;
    font-size: 13px;
}

.ts-certified__package-list li > span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 135, 164, .14);
    color: #ff87a4;
}

.ts-certified__package-list svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
}

.ts-certified__document-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ts-certified__document-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 112px;
    padding: 20px;
    border: 1px solid var(--tsc-line);
    border-radius: 13px;
    background: #fff;
    color: var(--tsc-ink);
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.ts-certified__document-card:hover {
    border-color: #efb8c6;
    box-shadow: 0 12px 28px rgba(24, 34, 56, .06);
    color: var(--tsc-ink);
    transform: translateY(-1px);
}

.ts-certified__document-code {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid #f2bac9;
    border-radius: 10px;
    background: var(--tsc-soft-red);
    color: var(--tsc-secondary);
    font-size: 12px;
    font-weight: 900;
}

.ts-certified__document-card > span:last-child {
    display: grid;
    gap: 3px;
}

.ts-certified__document-card strong {
    font-size: 15px;
    font-weight: 650;
    line-height: 1.28;
}

.ts-certified__document-card small {
    color: var(--tsc-copy);
    font-size: 12px;
    line-height: 1.45;
}

.ts-certified__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ts-certified__step {
    position: relative;
    min-height: 242px;
    padding: 25px;
    border: 1px solid var(--tsc-line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(24, 34, 56, .035);
}

.ts-certified__step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #a0aaba;
    font-size: 20px;
    font-weight: 900;
}

.ts-certified__evidence-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 72px;
}

.ts-certified__evidence-card {
    padding: 36px;
    border: 1px solid var(--tsc-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(24, 34, 56, .045);
}

.ts-certified__evidence-card--price {
    background: linear-gradient(145deg, #fff, #f8eef2);
}

.ts-certified__evidence-card h2 {
    margin: 0;
    color: var(--tsc-ink);
    font-size: clamp(27px, 3.4vw, 38px);
    font-weight: 500;
    letter-spacing: -.025em;
    line-height: 1.12;
}

.ts-certified__evidence-card p:not(.ts-certified__kicker) {
    margin: 15px 0 0;
    color: var(--tsc-copy);
    font-size: 14px;
    line-height: 1.65;
}

.ts-certified__evidence-card > a,
.ts-certified__sample-card > div > a,
.ts-certified__text-links a {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    margin-top: 20px;
    color: var(--tsc-secondary);
    font-size: 13px;
    font-weight: 850;
}

.ts-certified__text-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
}

.ts-certified__sample-card {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 36px;
    align-items: center;
    overflow: hidden;
}

.ts-certified__sample-preview {
    display: block;
    overflow: hidden;
    max-height: 250px;
    margin: 0 !important;
    border: 1px solid #dce3ea;
    border-radius: 10px;
    background: #f4f6f8;
    box-shadow: 0 12px 26px rgba(24, 34, 56, .1);
}

.ts-certified__sample-preview img {
    display: block;
    width: 100%;
    height: auto;
}

.ts-certified__standards {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
    gap: 45px;
    align-items: center;
    margin-top: 72px;
    padding: 48px;
    border: 1px solid var(--tsc-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(24, 34, 56, .05);
}

.ts-certified__standards h2 {
    margin: 0;
    font-size: clamp(30px, 3.8vw, 43px);
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: 1.1;
}

.ts-certified__standards-copy > p:not(.ts-certified__kicker) {
    margin: 15px 0 0;
    color: var(--tsc-copy);
    font-size: 14px;
    line-height: 1.65;
}

.ts-certified__company-details {
    display: grid;
    gap: 5px;
    margin-top: 17px;
    color: var(--tsc-copy);
    font-size: 13px;
}

.ts-certified__company-details a {
    color: var(--tsc-primary);
    font-weight: 750;
}

.ts-certified__membership-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.ts-certified__membership-links a {
    padding: 7px 10px;
    border: 1px solid #d9e2e7;
    border-radius: 7px;
    background: var(--tsc-soft-primary);
    color: var(--tsc-primary-dark);
    font-size: 11px;
    font-weight: 850;
}

.ts-certified__standards-copy > small {
    display: block;
    margin-top: 15px;
    color: var(--tsc-muted);
    font-size: 11px;
}

.ts-certified__logos {
    padding: 24px;
    border: 1px solid var(--tsc-line);
    border-radius: 13px;
    background: #f8fafb;
}

.ts-certified__logos img {
    display: block;
    width: 100%;
    height: auto;
}

.ts-certified__logos p {
    margin: 16px 0 0;
    color: var(--tsc-muted);
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.ts-certified__reviews {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    margin-top: 72px;
    padding: 38px 44px;
    border-radius: 16px;
    background: linear-gradient(135deg, #cb264d 0%, #ad2343 100%);
    box-shadow: 0 18px 42px rgba(203, 38, 77, .16);
    color: #fff;
}

.ts-certified__reviews .ts-certified__kicker {
    color: #fff;
}

.ts-certified__reviews h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 43px);
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: 1.08;
}

.ts-certified__reviews p:not(.ts-certified__kicker) {
    max-width: 720px;
    margin: 13px 0 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.ts-certified__reviews > a {
    display: block;
    padding: 14px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(82, 8, 28, .13);
}

.ts-certified__reviews img {
    display: block;
    width: 205px;
    height: auto;
}

.ts-certified__faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ts-certified__faq-item {
    overflow: hidden;
    border: 1px solid var(--tsc-line);
    border-radius: 12px;
    background: #fff;
}

.ts-certified__faq-item summary {
    position: relative;
    padding: 20px 54px 20px 22px;
    color: var(--tsc-ink);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    list-style: none;
}

.ts-certified__faq-item summary::-webkit-details-marker {
    display: none;
}

.ts-certified__faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 18px;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: var(--tsc-soft-red);
    color: var(--tsc-secondary);
    content: "+";
    font-size: 18px;
    font-weight: 800;
    transform: translateY(-50%);
}

.ts-certified__faq-item[open] summary::after {
    content: "\2212";
}

.ts-certified__faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--tsc-copy);
    font-size: 13px;
    line-height: 1.65;
}

.ts-certified__final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    margin-top: 72px;
    padding: 44px 48px;
    border-radius: 16px;
    background: var(--tsc-primary-dark);
    box-shadow: 0 18px 42px rgba(24, 34, 56, .16);
    color: #fff;
}

.ts-certified__final-cta .ts-certified__kicker {
    color: #ff89a6;
}

.ts-certified__final-cta h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: 1.08;
}

.ts-certified__final-cta p:not(.ts-certified__kicker) {
    max-width: 690px;
    margin: 13px 0 0;
    color: #d6e0e5;
    font-size: 14px;
    line-height: 1.6;
}

.ts-certified__final-actions {
    display: grid;
    gap: 11px;
    justify-items: center;
}

.ts-certified__final-actions > a:last-child {
    color: #fff;
    font-size: 12px;
    font-weight: 750;
}

.ts-certified__disclaimer {
    max-width: 900px;
    margin: 24px auto 0;
    color: var(--tsc-muted);
    font-size: 11px;
    line-height: 1.55;
    text-align: center;
}

.ts-certified__mobile-cta {
    display: none;
}

@media (max-width: 1080px) {
    .ts-certified__hero {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .86fr);
        gap: 34px;
        padding: 46px;
    }

    .ts-certified__hero h1 {
        font-size: clamp(42px, 5vw, 56px);
    }

    .ts-certified__type-grid,
    .ts-certified__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ts-certified__type-card,
    .ts-certified__step {
        min-height: 230px;
    }

    .ts-certified__standards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 880px) {
    .ts-certified {
        padding-right: 16px;
        padding-left: 16px;
    }

    .ts-certified__hero {
        grid-template-columns: 1fr;
    }

    .ts-certified__quote-card {
        max-width: 620px;
    }

    .ts-certified__trust-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ts-certified__section--tinted,
    .ts-certified__package,
    .ts-certified__standards {
        padding: 40px;
    }

    .ts-certified__package {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ts-certified__document-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ts-certified__reviews,
    .ts-certified__final-cta {
        grid-template-columns: 1fr;
    }

    .ts-certified__reviews > a {
        width: fit-content;
    }

    .ts-certified__final-actions {
        justify-items: start;
    }
}

@media (max-width: 640px) {
    .ts-certified {
        padding-top: 16px;
        padding-bottom: 92px;
    }

    .ts-certified__breadcrumbs {
        margin-bottom: 14px;
    }

    .ts-certified__hero {
        gap: 30px;
        padding: 30px 22px;
        border-radius: 14px;
    }

    .ts-certified__hero h1 {
        font-size: clamp(39px, 12.5vw, 52px);
        line-height: 1.01;
    }

    .ts-certified__hero-lead {
        margin-top: 18px;
        font-size: 16px;
    }

    .ts-certified__hero-support {
        font-size: 14px;
    }

    .ts-certified__actions {
        display: grid;
    }

    .ts-certified__button {
        width: 100%;
    }

    .ts-certified__hero-proof {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ts-certified__quote-card {
        padding: 22px;
    }

    .ts-certified__price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .ts-certified__trust-bar {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 22px;
    }

    .ts-certified__section {
        padding-top: 58px;
    }

    .ts-certified__section--tinted {
        margin-top: 54px;
        padding: 38px 20px;
    }

    .ts-certified__section-heading {
        margin-bottom: 26px;
    }

    .ts-certified__section-heading h2 {
        font-size: clamp(30px, 10vw, 39px);
    }

    .ts-certified__section-heading > p:last-child {
        font-size: 14px;
    }

    .ts-certified__country-grid,
    .ts-certified__type-grid,
    .ts-certified__document-grid,
    .ts-certified__steps,
    .ts-certified__evidence-grid,
    .ts-certified__faq-grid {
        grid-template-columns: 1fr;
    }

    .ts-certified__country-card,
    .ts-certified__country-card--other {
        grid-column: auto;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
        padding: 20px;
    }

    .ts-certified__country-card > img,
    .ts-certified__country-globe {
        width: 50px;
    }

    .ts-certified__country-globe {
        height: 50px;
    }

    .ts-certified__country-arrow {
        display: none;
    }

    .ts-certified__type-card,
    .ts-certified__step {
        min-height: 0;
    }

    .ts-certified__inline-help {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .ts-certified__inline-help > a {
        grid-column: 2;
    }

    .ts-certified__package,
    .ts-certified__standards,
    .ts-certified__reviews,
    .ts-certified__final-cta {
        margin-top: 56px;
        padding: 34px 22px;
        border-radius: 14px;
    }

    .ts-certified__package h2,
    .ts-certified__standards h2,
    .ts-certified__reviews h2,
    .ts-certified__final-cta h2 {
        font-size: clamp(30px, 9.5vw, 39px);
    }

    .ts-certified__evidence-grid {
        margin-top: 56px;
    }

    .ts-certified__evidence-card {
        padding: 28px 22px;
    }

    .ts-certified__sample-card {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .ts-certified__sample-preview {
        max-width: 220px;
    }

    .ts-certified__standards {
        gap: 28px;
    }

    .ts-certified__logos {
        padding: 16px;
    }

    .ts-certified__reviews > a {
        justify-self: start;
    }

    .ts-certified__mobile-cta {
        position: fixed;
        z-index: 9997;
        right: 12px;
        bottom: 12px;
        left: 12px;
        display: none;
        gap: 14px;
        align-items: center;
        justify-content: space-between;
        padding: 12px 13px 12px 16px;
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 12px;
        background: rgba(24, 34, 56, .97);
        box-shadow: 0 14px 36px rgba(8, 16, 30, .28);
        color: #fff;
        backdrop-filter: blur(9px);
    }

    .ts-certified__mobile-cta > span {
        display: grid;
    }

    .ts-certified__mobile-cta strong {
        font-size: 12px;
        line-height: 1.25;
    }

    .ts-certified__mobile-cta small {
        color: #bac7d0;
        font-size: 10px;
    }

    .ts-certified__mobile-cta > a {
        flex: 0 0 auto;
        padding: 10px 14px;
        border-radius: 7px;
        background: var(--tsc-secondary);
        color: #fff;
        font-size: 12px;
        font-weight: 850;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ts-certified *,
    .ts-certified *::before,
    .ts-certified *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
