```css
/*
 * Bilin — Official Translation
 * Consolidated CSS — Stable Version
 * Palette: Navy + Green + White
 * Accents: Orange + Red
 */

/* =========================================================
   ROOT / BASE
========================================================= */

.official-translation-page {
    direction: rtl;
    background: #f8fbfb;
    color: #17324d;
    overflow: hidden;
}

.official-translation-page *,
.official-translation-page *::before,
.official-translation-page *::after {
    box-sizing: border-box;
}

.official-translation-page .ot-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.official-translation-page h1,
.official-translation-page h2,
.official-translation-page h3,
.official-translation-page p {
    margin-top: 0;
}

.official-translation-page h1,
.official-translation-page h2,
.official-translation-page h3 {
    line-height: 1.55;
}

.official-translation-page p {
    line-height: 2;
}


/* =========================================================
   VARIABLES
========================================================= */

#official-translation {
    --ot-navy: #16324f;
    --ot-navy-dark: #0d2742;
    --ot-navy-soft: #24496b;

    --ot-green: #008f72;
    --ot-green-dark: #00745d;
    --ot-green-light: #eaf7f3;

    --ot-white: #ffffff;
    --ot-bg: #f8fbfb;

    --ot-orange: #f05a28;
    --ot-orange-light: #fff4ec;

    --ot-red: #e45535;
    --ot-red-light: #fff0eb;

    --ot-text: #17324d;
    --ot-muted: #667788;

    --ot-border: #dfe8e7;

    background: var(--ot-bg);
    color: var(--ot-text);
}


/* =========================================================
   EYEBROW
========================================================= */

#official-translation .ot-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;

    color: var(--ot-green);
    font-size: 0.9rem;
    font-weight: 700;
}

#official-translation .ot-eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 10px;
    background: var(--ot-orange);
}


/* =========================================================
   BUTTONS
========================================================= */

#official-translation .ot-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 12px 26px;

    border-radius: 14px;
    text-decoration: none;

    font-weight: 700;
    line-height: 1.4;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

#official-translation .ot-button:hover {
    transform: translateY(-2px);
}

#official-translation .ot-button-primary {
    background: var(--ot-orange) !important;
    border: 2px solid var(--ot-orange) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(240, 90, 40, 0.18);
}

#official-translation .ot-button-primary:hover {
    background: #d94a1f !important;
    border-color: #d94a1f !important;
}

#official-translation .ot-button-secondary {
    background: #ffffff !important;
    border: 2px solid var(--ot-green) !important;
    color: var(--ot-green-dark) !important;
}

#official-translation .ot-button-secondary:hover {
    background: var(--ot-green) !important;
    border-color: var(--ot-green) !important;
    color: #ffffff !important;
}


/* =========================================================
   HERO
========================================================= */

#official-translation .ot-hero {
    position: relative;
    overflow: hidden;

    padding: 78px 0 76px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(240, 90, 40, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(0, 143, 114, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbfb 55%,
            #eef8f6 100%
        );
}

#official-translation .ot-hero::after {
    content: "";

    position: absolute;
    width: 260px;
    height: 260px;

    left: -110px;
    bottom: -140px;

    border-radius: 50%;
    background: rgba(0, 143, 114, 0.08);

    pointer-events: none;
}

#official-translation .ot-hero .ot-container {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.95fr);

    align-items: center;
    gap: 58px;
}

#official-translation .ot-hero-content {
    position: relative;
    z-index: 2;
    text-align: right;
}

#official-translation .ot-hero-content h1 {
    max-width: 720px;
    margin-bottom: 22px;

    color: var(--ot-navy) !important;

    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 800;
}

#official-translation .ot-hero .ot-accent-orange {
    color: var(--ot-orange) !important;
}

#official-translation .ot-hero-description {
    max-width: 700px;
    margin-bottom: 30px;

    color: var(--ot-text) !important;
    font-size: 1.08rem;
}

#official-translation .ot-hero-actions {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 28px;
}

#official-translation .ot-hero-actions .ot-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 200px;
    min-width: 200px;

    height: 54px;
    min-height: 54px;

    margin: 0;
    padding: 12px 14px;

    vertical-align: middle;
    white-space: nowrap;
}

#official-translation .ot-hero-btn-request {
    background: var(--ot-orange) !important;
    border-color: var(--ot-orange) !important;
    color: #ffffff !important;
}

#official-translation .ot-hero-btn-tracking {
    background: var(--ot-green) !important;
    border-color: var(--ot-green) !important;
    color: #ffffff !important;
}

#official-translation .ot-hero-btn-consultation {
    background: var(--ot-navy) !important;
    border-color: var(--ot-navy) !important;
    color: #ffffff !important;
}

#official-translation .ot-hero-btn-consultation-tracking {
    background: #d8c3a5 !important;
    border-color: #d8c3a5 !important;
    color: #17324d !important;
}

#official-translation .ot-hero-btn-request:hover {
    background: #d94a1f !important;
    border-color: #d94a1f !important;
}

#official-translation .ot-hero-btn-tracking:hover {
    background: var(--ot-green-dark) !important;
    border-color: var(--ot-green-dark) !important;
}

#official-translation .ot-hero-btn-consultation:hover {
    background: var(--ot-navy-dark) !important;
    border-color: var(--ot-navy-dark) !important;
}

#official-translation .ot-hero-btn-consultation-tracking:hover {
    background: #c94327 !important;
    border-color: #c94327 !important;
}

#official-translation .ot-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
}

#official-translation .ot-hero-image-wrapper {
    position: relative;

    width: 100%;
    max-width: 560px;

    margin-inline: auto;
}

#official-translation .ot-hero-image {
    display: block !important;

    width: 100% !important;
    max-width: 600px !important;

    height: auto !important;
    max-height: 540px;

    margin: 0 auto;

    object-fit: contain;
    object-position: center;

    visibility: visible !important;
    opacity: 1 !important;

    transform: none !important;
}

#official-translation .ot-hero .ot-document-card {
    display: none !important;
}


/* =========================================================
   TRUST
========================================================= */

#official-translation .ot-trust {
    padding: 25px 0;

    background:
        linear-gradient(
            135deg,
            var(--ot-navy-dark),
            var(--ot-navy)
        ) !important;

    color: #ffffff !important;

    box-shadow: 0 12px 30px rgba(13, 39, 66, 0.16);
}

#official-translation .ot-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

#official-translation .ot-trust-item {
    padding: 18px 25px;

    text-align: center;

    border-left: 1px solid rgba(255, 255, 255, 0.16);

    color: #ffffff !important;
}

#official-translation .ot-trust-item:last-child {
    border-left: 0;
}

#official-translation .ot-trust-item strong {
    display: block;

    margin-bottom: 5px;

    color: #ffffff !important;
    font-size: 1rem;
}

#official-translation .ot-trust-item span {
    color: #dce8ee !important;
    font-size: 0.86rem;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

#official-translation .ot-section {
    padding: 90px 0;
}

#official-translation .ot-section-heading {
    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;
}

#official-translation .ot-section-heading h2 {
    margin-bottom: 12px;

    color: var(--ot-navy) !important;

    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

#official-translation .ot-section-heading p {
    margin-bottom: 0;

    color: var(--ot-muted) !important;
}


/* =========================================================
   DOCUMENT TYPES
========================================================= */

#official-translation .ot-document-types {
    background: #ffffff !important;
}

#official-translation .ot-card-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;

    width: 100%;
    align-items: stretch;
}


/* =========================================================
   DOCUMENT TYPE CARD
========================================================= */

#official-translation .ot-service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;
    min-width: 0;
    min-height: 250px;

    padding: 28px 24px 24px;

    border: 1px solid rgba(22, 50, 79, 0.10) !important;
    border-radius: 22px;

    background: #ffffff !important;

    color: var(--ot-text);

    box-shadow:
        0 6px 20px rgba(22, 50, 79, 0.045);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

#official-translation .ot-service-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 24px;
    left: 24px;

    height: 3px;

    border-radius: 0 0 8px 8px;

    background: var(--ot-green);

    opacity: 0.75;

    transition:
        right 0.25s ease,
        left 0.25s ease,
        opacity 0.25s ease;
}

#official-translation .ot-service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0, 143, 114, 0.25) !important;

    box-shadow:
        0 18px 38px rgba(22, 50, 79, 0.10);
}

#official-translation .ot-service-card:hover::before {
    right: 16px;
    left: 16px;
    opacity: 1;
}


/* =========================================================
   DOCUMENT TYPE ICON
========================================================= */

#official-translation .ot-card-icon {
    display: grid;
    place-items: center;

    flex: 0 0 auto;

    width: 58px;
    height: 58px;

    margin-bottom: 20px;

    border: 1px solid rgba(0, 143, 114, 0.10);
    border-radius: 17px;

    background: var(--ot-green-light);

    color: var(--ot-green) !important;

    font-size: 1.65rem;
    line-height: 1;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

#official-translation .ot-service-card:hover .ot-card-icon {
    transform: scale(1.06);
}

#official-translation .ot-service-card:nth-child(3n) .ot-card-icon {
    background: var(--ot-orange-light);

    color: var(--ot-orange) !important;

    border-color: rgba(230, 126, 34, 0.12);
}


/* =========================================================
   DOCUMENT TYPE TITLE
========================================================= */

#official-translation .ot-service-card h3 {
    margin: 0 0 10px;

    color: var(--ot-navy) !important;

    font-size: 1.08rem;
    font-weight: 700;

    line-height: 1.8;
}


/* =========================================================
   DOCUMENT TYPE DESCRIPTION
========================================================= */

#official-translation .ot-service-card p {
    margin: 0;

    color: var(--ot-muted) !important;

    font-size: 0.91rem;
    line-height: 1.9;
}


/* =========================================================
   DOCUMENT TYPE MORE LINK
========================================================= */

#official-translation .ot-card-more {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: auto;
    padding-top: 20px;

    color: var(--ot-green) !important;

    font-size: 0.86rem;
    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

#official-translation .ot-card-more::after {
    content: "←";

    font-size: 0.95rem;
    line-height: 1;

    transition: transform 0.2s ease;
}

#official-translation .ot-card-more:hover {
    color: var(--ot-orange) !important;
    gap: 10px;
}

#official-translation .ot-card-more:hover::after {
    transform: translateX(-3px);
}


/* =========================================================
   DOCUMENT GUIDE COUNT
========================================================= */

#official-translation .ot-document-guide-count {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-top: 12px;
    margin-bottom: 16px;

    padding: 6px 11px;

    border-radius: 999px;

    background: #eef7f5;

    color: #28756e;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

#official-translation .ot-document-guide-count-empty {
    background: #f6f6f6;
    color: #888;
    font-weight: 500;
}


/* =========================================================
   EMPTY DOCUMENT TYPES
========================================================= */

#official-translation .ot-document-types-empty {
    grid-column: 1 / -1;

    margin: 0;
    padding: 28px;

    border: 1px dashed rgba(22, 50, 79, 0.18);
    border-radius: 18px;

    background: #fafcfd;

    color: var(--ot-muted);

    text-align: center;
}


/* =========================================================
   PURPOSE
========================================================= */

#official-translation .ot-purpose {
    background:
        linear-gradient(
            135deg,
            #f1f8fb,
            #ffffff
        ) !important;
}

#official-translation .ot-purpose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

#official-translation .ot-purpose-item {
    padding: 22px;

    border: 1px solid var(--ot-border) !important;
    border-radius: 18px;

    background: #ffffff !important;

    color: var(--ot-navy);
}

#official-translation .ot-purpose-item strong,
#official-translation .ot-purpose-item h3 {
    display: block;

    margin-bottom: 7px;

    color: var(--ot-navy) !important;
}

#official-translation .ot-purpose-item span {
    color: var(--ot-muted);
}

```css
/* =========================================================
   TRANSLATION LANGUAGES
   ========================================================= */

#official-translation .ot-languages,
.official-translation-page .ot-languages {
    padding: 88px 0;
    background: #f8fbfb;
}

#official-translation .ot-language-grid,
.official-translation-page .ot-language-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    margin-top: 42px;
}


/* ---------------------------------------------------------
   Language Card
   --------------------------------------------------------- */

#official-translation .ot-language-card,
.official-translation-page .ot-language-card {
    display: flex;
    min-width: 0;
    min-height: 250px;
    margin: 0;
    padding: 0;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e4ecec;
    border-radius: 22px;

    box-shadow: 0 10px 30px rgba(23, 50, 77, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

#official-translation .ot-language-card:hover,
.official-translation-page .ot-language-card:hover {
    transform: translateY(-6px);

    border-color: rgba(27, 157, 145, 0.35);

    box-shadow: 0 18px 40px rgba(23, 50, 77, 0.11);
}


/* ---------------------------------------------------------
   Language Card Link
   --------------------------------------------------------- */

#official-translation .ot-language-card-link,
.official-translation-page .ot-language-card-link {
    display: flex;
    flex-direction: column;

    width: 100%;
    min-width: 0;
    height: 100%;

    padding: 28px 24px 24px;

    color: #17324d;
    text-decoration: none;
}

#official-translation .ot-language-card-link:hover,
.official-translation-page .ot-language-card-link:hover {
    color: #17324d;
    text-decoration: none;
}


/* ---------------------------------------------------------
   Language Icon
   --------------------------------------------------------- */

#official-translation .ot-language-icon,
.official-translation-page .ot-language-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;

    margin-bottom: 20px;

    border-radius: 18px;

    background: #eef8f7;

    font-size: 32px;
    line-height: 1;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

#official-translation .ot-language-card:hover .ot-language-icon,
.official-translation-page .ot-language-card:hover .ot-language-icon {
    transform: scale(1.06);
    background: #e3f4f2;
}


/* ---------------------------------------------------------
   Language Title
   --------------------------------------------------------- */

#official-translation .ot-language-card h3,
.official-translation-page .ot-language-card h3 {
    margin: 0 0 12px;

    color: #17324d;

    font-size: 20px;
    font-weight: 800;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   Language Description
   --------------------------------------------------------- */

#official-translation .ot-language-description,
.official-translation-page .ot-language-description {
    flex: 1 1 auto;
    min-width: 0;
}

#official-translation .ot-language-description p,
.official-translation-page .ot-language-description p {
    margin: 0;

    color: #6d7d8b;

    font-size: 14px;
    line-height: 2;
}


/* ---------------------------------------------------------
   Language More Link
   --------------------------------------------------------- */

#official-translation .ot-language-more,
.official-translation-page .ot-language-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 22px;

    color: #1b9d91;

    font-size: 14px;
    font-weight: 800;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

#official-translation .ot-language-card:hover .ot-language-more,
.official-translation-page .ot-language-card:hover .ot-language-more {
    color: #c94327;
    gap: 12px;
}


/* ---------------------------------------------------------
   Empty State
   --------------------------------------------------------- */

#official-translation .ot-empty-state,
.official-translation-page .ot-empty-state {
    margin-top: 36px;
    padding: 32px 24px;

    text-align: center;

    background: #ffffff;
    border: 1px solid #e4ecec;
    border-radius: 18px;
}

#official-translation .ot-empty-state p,
.official-translation-page .ot-empty-state p {
    margin: 0;

    color: #6d7d8b;
    font-size: 15px;
    line-height: 2;
}


/* ---------------------------------------------------------
   Language Cards - Tablet
   --------------------------------------------------------- */

@media (max-width: 1000px) {

    #official-translation .ot-language-grid,
    .official-translation-page .ot-language-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

}


/* ---------------------------------------------------------
   Language Cards - Mobile
   --------------------------------------------------------- */

@media (max-width: 700px) {

    #official-translation .ot-languages,
    .official-translation-page .ot-languages {
        padding: 64px 0;
    }

    #official-translation .ot-language-grid,
    .official-translation-page .ot-language-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 32px;
    }

    #official-translation .ot-language-card,
    .official-translation-page .ot-language-card {
        min-height: 0;
    }

    #official-translation .ot-language-card-link,
    .official-translation-page .ot-language-card-link {
        padding: 24px 22px;
    }

}


/* ---------------------------------------------------------
   Language Cards - Small Mobile
   --------------------------------------------------------- */

@media (max-width: 480px) {

    #official-translation .ot-language-card-link,
    .official-translation-page .ot-language-card-link {
        padding: 22px 20px;
    }

    #official-translation .ot-language-icon,
    .official-translation-page .ot-language-icon {
        width: 60px;
        height: 60px;

        margin-bottom: 16px;

        border-radius: 16px;

        font-size: 28px;
    }

    #official-translation .ot-language-card h3,
    .official-translation-page .ot-language-card h3 {
        font-size: 18px;
    }

}

/* =========================================================
   CERTIFICATIONS
========================================================= */

#official-translation .ot-certifications {
    background:
        linear-gradient(
            135deg,
            #f5faf9,
            #ffffff
        ) !important;
}

#official-translation .ot-certification-grid {
    display: grid;

           grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}

#official-translation .ot-certification-card {
    padding: 30px;

    border: 1px solid var(--ot-border) !important;
    border-radius: 24px;

    background: #ffffff !important;

    box-shadow:
        0 8px 25px rgba(22, 50, 79, 0.055);
}

#official-translation .ot-certification-card h3 {
    margin-bottom: 10px;

    color: var(--ot-navy) !important;
}

#official-translation .ot-certification-card p {
    margin-bottom: 0;

    color: var(--ot-muted) !important;

    font-size: 0.92rem;
}

#official-translation .ot-certification-help {
    background:
        linear-gradient(
            135deg,
            #fffaf0,
            #ffffff
        ) !important;

    border-color: rgba(227, 165, 47, 0.45) !important;
}


/* =========================================================
   GUIDE INTRO
========================================================= */

#official-translation .ot-guide {
    padding: 55px 0;

    background:
        linear-gradient(
            135deg,
            #eaf5f5,
            #f8fbfb
        ) !important;
}

#official-translation .ot-guide-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 35px 40px;

    border: 1px solid var(--ot-border);
    border-radius: 25px;

    background: #ffffff !important;

    box-shadow:
        0 18px 45px rgba(22, 50, 79, 0.09);
}

#official-translation .ot-guide-box h2 {
    margin-bottom: 8px;

    color: var(--ot-navy) !important;
}

#official-translation .ot-guide-box p {
    margin-bottom: 0;

    color: var(--ot-muted) !important;
}


/* =========================================================
   DOCUMENT GUIDES
   IMPORTANT — CARD SYSTEM
========================================================= */

#official-translation .ot-guides {
    background: #ffffff !important;
}

#official-translation .ot-guide-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    width: 100%;

    align-items: stretch;
}


/* =========================================================
   GUIDE CARD — MASTER
========================================================= */

#official-translation .ot-guide-card {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;
    min-width: 0;
    min-height: 100%;

    margin: 0;

    overflow: hidden;

    border: 1px solid var(--ot-border) !important;
    border-radius: 20px;

    background: #ffffff !important;
    color: var(--ot-navy);

    box-shadow:
        0 8px 28px rgba(22, 50, 79, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

#official-translation .ot-guide-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(217, 95, 67, 0.25) !important;

    box-shadow:
        0 16px 40px rgba(22, 50, 79, 0.10);
}


/* =========================================================
   GUIDE CARD — HIDDEN / VISIBLE
========================================================= */

#official-translation .ot-guide-card-hidden {
    display: none !important;
}

#official-translation .ot-guide-card.ot-guide-card-visible {
    display: flex !important;
}


/* =========================================================
   GUIDE CARD — FULL LINK
========================================================= */

#official-translation .ot-guide-card-link {
    display: flex;

    flex-direction: column;

    width: 100%;
    min-width: 0;

    height: 100%;

    color: inherit;

    text-decoration: none;
}

#official-translation .ot-guide-card-link:hover,
#official-translation .ot-guide-card-link:focus {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   GUIDE CARD — IMAGE WRAPPER
========================================================= */

#official-translation .ot-guide-card-image {
    position: relative;

    overflow: hidden;

    width: 100%;

    aspect-ratio: 16 / 10;

    flex: 0 0 auto;

    background: #f4f7f7;
}


/* =========================================================
   GUIDE CARD — IMAGE
========================================================= */

#official-translation .ot-guide-card-thumbnail {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.35s ease;
}

#official-translation .ot-guide-card:hover
.ot-guide-card-thumbnail {
    transform: scale(1.04);
}


/* =========================================================
   GUIDE CARD — CONTENT
========================================================= */

#official-translation .ot-guide-card-content {
    display: flex;

    flex-direction: column;

    flex: 1 1 auto;

    min-width: 0;

    padding: 24px;
}


/* =========================================================
   GUIDE CARD — TITLE
========================================================= */

#official-translation .ot-guide-card-title {
    margin: 0 0 12px;

    color: var(--ot-navy) !important;

    font-size: 20px;
    font-weight: 800;

    line-height: 1.6;

    word-break: normal;
    overflow-wrap: break-word;
}


/* =========================================================
   GUIDE CARD — EXCERPT
========================================================= */

#official-translation .ot-guide-card-excerpt {
    margin: 0 0 18px;

    color: var(--ot-muted) !important;

    font-size: 15px;
    line-height: 1.9;

    overflow-wrap: break-word;
}

#official-translation .ot-guide-card-excerpt p {
    margin: 0;

    color: var(--ot-muted) !important;

    font-size: inherit;
    line-height: inherit;
}


/* =========================================================
   GUIDE CARD — READ MORE
========================================================= */

#official-translation .ot-guide-card-more {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: auto;

    color: #d95f43 !important;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.7;
}

#official-translation .ot-guide-card-more::after {
    content: "←";

    transition:
        transform 0.2s ease;
}

#official-translation .ot-guide-card:hover
.ot-guide-card-more::after {
    transform: translateX(-4px);
}


/* =========================================================
   GUIDE CARD — TOGGLE
========================================================= */

#official-translation .ot-guide-toggle-wrapper {
    display: flex;

    justify-content: center;

    margin-top: 35px;
}

#official-translation .ot-guide-toggle {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 12px 28px;

    border: 1px solid rgba(217, 95, 67, 0.25);
    border-radius: 12px;

    background: #fff8f4;

    color: #d95f43;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

#official-translation .ot-guide-toggle:hover {
    background: #d95f43;

    border-color: #d95f43;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(217, 95, 67, 0.18);
}

#official-translation .ot-guide-toggle:focus-visible {
    outline: 3px solid rgba(217, 95, 67, 0.25);
    outline-offset: 3px;
}


/* =========================================================
   GUIDE EMPTY
========================================================= */

#official-translation .ot-guide-empty {
    padding: 50px 30px;

    text-align: center;

    background: #fafafa;

    border: 1px dashed #d9e0df;
    border-radius: 18px;

    color: var(--ot-muted);

    line-height: 2;
}

#official-translation .ot-guide-empty p {
    margin: 0;
}


/* =========================================================
   REQUEST
========================================================= */

#official-translation .ot-request {
    background: #ffffff !important;
}

#official-translation .ot-request-placeholder {
    display: grid;
    place-items: center;

    min-height: 180px;

    padding: 35px;

    border: 2px dashed rgba(0, 143, 114, 0.30) !important;
    border-radius: 24px;

    background: #f7fcfb !important;

    color: var(--ot-muted) !important;

    text-align: center;
}


/* =========================================================
   REQUEST FORM
========================================================= */

#official-translation .ot-request-form {
    width: 100%;
    max-width: 980px;

    margin: 0 auto;
}

#official-translation .ot-form {
	padding: 32px;
	border: 1px solid rgba(22, 50, 79, 0.08);
	border-radius: 24px;
	background: #FFF8EF;
	box-shadow: 0 12px 35px rgba(22, 50, 79, 0.07);
}

#official-translation .ot-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}

#official-translation .ot-form-field {
    display: flex;
    flex-direction: column;

    gap: 8px;

    min-width: 0;
}

#official-translation .ot-form-field-full {
    margin-top: 22px;
}

#official-translation .ot-form-field label {
    color: #16324f;

    font-size: 0.95rem;
    font-weight: 700;
}

#official-translation .ot-form-field input,
#official-translation .ot-form-field select,
#official-translation .ot-form-field textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid rgba(22, 50, 79, 0.14);
    border-radius: 12px;

    background: #fffdf8;
    color: #16324f;

    padding: 13px 15px;

    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.7;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

#official-translation .ot-form-field input,
#official-translation .ot-form-field select {
    min-height: 50px;
}

#official-translation .ot-form-field textarea {
    min-height: 130px;
    resize: vertical;
}

#official-translation .ot-form-field input::placeholder,
#official-translation .ot-form-field textarea::placeholder {
    color: #8b98a5;
}

#official-translation .ot-form-field input:focus,
#official-translation .ot-form-field select:focus,
#official-translation .ot-form-field textarea:focus {
    outline: none;

    border-color: #f26b5b;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(242, 107, 91, 0.10);
}

#official-translation .ot-form-field input[type="file"] {
    padding: 10px;

    background: #ffffff;

    cursor: pointer;
}

#official-translation .ot-form-field small {
    color: #718096;

    font-size: 0.82rem;
    line-height: 1.7;
}

#official-translation .ot-form-actions {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 28px;
    padding-top: 24px;

    border-top:
        1px solid rgba(22, 50, 79, 0.08);
}

#official-translation .ot-form-actions .ot-button {
    border: 0;

    cursor: pointer;

    font-family: inherit;
}

#official-translation .ot-form-note {
    flex: 1;

    color: #687684;

    font-size: 0.85rem;
    line-height: 1.8;
}


/* =========================================================
   PROCESS
========================================================= */

#official-translation .ot-process {
    background:
        linear-gradient(
            135deg,
            #f7fbfb,
            #ffffff
        ) !important;
}

#official-translation .ot-process-list {
    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap: 12px;
}

#official-translation .ot-process-step {
    position: relative;

    padding: 24px 14px;

    border: 1px solid var(--ot-border) !important;
    border-radius: 20px;

    background: #ffffff !important;

    box-shadow:
        0 6px 20px rgba(22, 50, 79, 0.045);

    text-align: center;
}

#official-translation .ot-process-step strong {
    display: block;

    margin-bottom: 8px;

    color: var(--ot-navy) !important;
}

#official-translation .ot-process-step span {
    color: var(--ot-muted) !important;

    font-size: 0.85rem;
    line-height: 1.8;
}

#official-translation .ot-process-step-number {
    background: var(--ot-green);
    color: #ffffff;
}


/* =========================================================
   APPLY
========================================================= */

#official-translation .ot-apply {
    padding: 70px 0;

    background:
        linear-gradient(
            135deg,
            #0d3154 0%,
            #163f68 55%,
            #007b68 100%
        ) !important;

    color: #ffffff !important;
}

#official-translation .ot-apply-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

#official-translation .ot-apply-box .ot-eyebrow {
    color: #8fe0cd !important;
}

#official-translation .ot-apply-box .ot-eyebrow::before {
    background: #e3a52f;
}

#official-translation .ot-apply-box h2 {
    margin-bottom: 10px;

    color: #ffffff !important;
}

#official-translation .ot-apply-box p {
    margin-bottom: 0;

    color: #e4eff3 !important;
}

#official-translation .ot-apply-box .ot-button {
    background: var(--ot-red) !important;

    border-color: var(--ot-red) !important;

    color: #ffffff !important;
}

#official-translation .ot-apply-box .ot-button:hover {
    background: #c9452b !important;
    border-color: #c9452b !important;
}


/* =========================================================
   FAQ — OFFICIAL TRANSLATION
   Question → Summary → Full Answer
========================================================= */

#official-translation .ot-faq {
    background:
        linear-gradient(
            135deg,
            #f6faf9,
            #ffffff
        ) !important;
}

#official-translation .ot-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* ---------------------------------------------------------
   FAQ CARD
--------------------------------------------------------- */

#official-translation .ot-faq-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid var(--ot-border) !important;
    border-radius: 18px;
    background: #ffffff !important;
    box-shadow:
        0 7px 24px rgba(22, 50, 79, 0.045);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

#official-translation .ot-faq-card:hover {
    border-color: rgba(0, 143, 114, 0.24) !important;
    box-shadow:
        0 12px 30px rgba(22, 50, 79, 0.08);
    transform: translateY(-2px);
}

/* ---------------------------------------------------------
   FAQ QUESTION
--------------------------------------------------------- */

#official-translation .ot-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 21px 24px;
    border: 0;
    background: transparent;
    color: var(--ot-navy);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.9;
    text-align: right;
    cursor: pointer;
}

#official-translation .ot-faq-question:hover {
    color: var(--ot-green-dark);
}

#official-translation .ot-faq-question:focus {
    outline: none;
}

#official-translation .ot-faq-question:focus-visible {
    outline: 3px solid rgba(0, 143, 114, 0.14);
    outline-offset: -3px;
}

/* ---------------------------------------------------------
   QUESTION TEXT
--------------------------------------------------------- */

#official-translation .ot-faq-question-text {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--ot-navy);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.9;
}

#official-translation .ot-faq-question:hover
.ot-faq-question-text {
    color: var(--ot-green-dark);
}

/* ---------------------------------------------------------
   QUESTION ICON
--------------------------------------------------------- */

#official-translation .ot-faq-question-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0, 143, 114, 0.12);
    border-radius: 50%;
    background: var(--ot-green-light);
    color: var(--ot-green);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

/* ---------------------------------------------------------
   OPEN QUESTION
--------------------------------------------------------- */

#official-translation .ot-faq-question.is-open {
    padding-bottom: 12px;
}

#official-translation .ot-faq-question.is-open
.ot-faq-question-icon {
    transform: rotate(45deg);
    background: var(--ot-green);
    color: #ffffff;
}

/* ---------------------------------------------------------
   FAQ ANSWER
--------------------------------------------------------- */

#official-translation .ot-faq-card-answer {
    padding: 0 24px 24px;
}

#official-translation .ot-faq-card-answer[hidden] {
    display: none !important;
}

/* ---------------------------------------------------------
   SUMMARY
--------------------------------------------------------- */

#official-translation .ot-faq-card-summary {
    max-width: 820px;
    margin: 0 0 18px;
    color: var(--ot-muted) !important;
    font-size: 14.5px;
    line-height: 2;
}

#official-translation .ot-faq-card-summary p {
    margin: 0;
    color: var(--ot-muted) !important;
}

/* ---------------------------------------------------------
   READ FULL ANSWER
--------------------------------------------------------- */

#official-translation .ot-faq-card-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ot-red) !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    text-decoration: none;
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

#official-translation .ot-faq-card-more:hover {
    color: var(--ot-orange) !important;
    gap: 11px;
}

#official-translation .ot-faq-card-more span {
    font-size: 17px;
    line-height: 1;
}

/* ---------------------------------------------------------
   FAQ ARCHIVE ACTION
--------------------------------------------------------- */

#official-translation .ot-faq-actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 700px) {

    #official-translation .ot-faq-list {
        gap: 11px;
    }

    #official-translation .ot-faq-card {
        border-radius: 16px;
    }

    #official-translation .ot-faq-question {
        gap: 14px;
        padding: 18px 17px;
    }

    #official-translation .ot-faq-question-text {
        font-size: 14.5px;
        line-height: 1.9;
    }

    #official-translation .ot-faq-question-icon {
        flex-basis: 31px;
        width: 31px;
        height: 31px;
        font-size: 20px;
    }

    #official-translation .ot-faq-question.is-open {
        padding-bottom: 10px;
    }

    #official-translation .ot-faq-card-answer {
        padding: 0 17px 20px;
    }

    #official-translation .ot-faq-card-summary {
        font-size: 14px;
        line-height: 2;
    }

    #official-translation .ot-faq-card-more {
        font-size: 13.5px;
    }

}

/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 480px) {

    #official-translation .ot-faq-question {
        padding: 17px 15px;
    }

    #official-translation .ot-faq-question-text {
        font-size: 14px;
    }

    #official-translation .ot-faq-card-answer {
        padding: 0 15px 18px;
    }

}

/* =========================================================
   FINAL CTA
========================================================= */

#official-translation .ot-final-cta {
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(255, 255, 255, 0.16),
            transparent 22%
        ),
        linear-gradient(
            135deg,
            #e45535 0%,
            #f05a28 100%
        ) !important;
    color: #7fbbb0;
    text-align: center;
}

#official-translation .ot-final-cta h2 {
    margin-bottom: 15px;

    color: #ffffff !important;

    font-size: clamp(2rem, 4vw, 3rem);
}

#official-translation .ot-final-cta p {
    max-width: 650px;

    margin: 0 auto 25px;

    color: #e2edf1 !important;
}


/* =========================================================
   SUCCESS / ERROR
========================================================= */

#official-translation .ot-request-success {
    padding: 35px 0 10px;
}

#official-translation .ot-success-box {
    display: flex;

    align-items: center;

    gap: 28px;

    padding: 28px 32px;

    border: 1px solid rgba(0, 143, 114, 0.18);
    border-radius: 22px;

    background: #f7fcfb;

    box-shadow:
        0 10px 30px rgba(22, 50, 79, 0.06);
}

#official-translation .ot-success-icon {
    display: grid;
    place-items: center;

    flex: 0 0 62px;

    width: 62px;
    height: 62px;

    border-radius: 50%;

    background: #008f72;
    color: #ffffff;

    font-size: 32px;
    font-weight: 700;
}

#official-translation .ot-success-content {
    flex: 1;
}

#official-translation .ot-success-content h2 {
    margin-bottom: 10px;
}

#official-translation .ot-success-content p {
    margin-bottom: 14px;
}

#official-translation .ot-request-number {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin: 10px 0 8px;

    padding: 10px 16px;

    border: 1px solid rgba(0, 143, 114, 0.18);
    border-radius: 12px;

    background: #ffffff;
}

#official-translation .ot-request-number span {
    color: #68727a;

    font-size: 0.9rem;
}

#official-translation .ot-request-number strong {
    direction: ltr;

    color: #008f72;

    font-size: 1.15rem;

    letter-spacing: 0.5px;
}

#official-translation .ot-success-note {
    color: #68727a;

    font-size: 0.9rem;
}

#official-translation .ot-request-error {
    padding: 35px 0 10px;
}

#official-translation .ot-error-box {
    padding: 22px 26px;

    border: 1px solid rgba(220, 80, 60, 0.2);
    border-radius: 18px;

    background: #fff7f4;
}

#official-translation .ot-error-box strong {
    color: #c75435;
}

#official-translation .ot-error-box p {
    margin: 6px 0 0;

    color: #68727a;
}


/* =========================================================
   BILIN TRANSLATORS
========================================================= */

#official-translation .ot-translators {
    padding-top: 90px;
    padding-bottom: 90px;
}

#official-translation .ot-translators-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;

    margin-top: 42px;
}

#official-translation .ot-translator-card {
    display: flex;

    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    border: 1px solid rgba(37, 50, 58, 0.08);
    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(37, 50, 58, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

#official-translation .ot-translator-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 42px rgba(37, 50, 58, 0.11);

    border-color:
        rgba(231, 96, 74, 0.22);
}

#official-translation .ot-translator-card-image {
    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px 24px 18px;

    background:
        linear-gradient(
            180deg,
            #fff8ef 0%,
            #ffffff 100%
        );
}

#official-translation .ot-translator-card-image a {
    display: block;
}

#official-translation .ot-translator-avatar,
#official-translation .ot-translator-avatar-placeholder {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 118px;
    height: 118px;

    border: 5px solid #ffffff;
    border-radius: 50%;

    box-shadow:
        0 8px 24px rgba(37, 50, 58, 0.12);
}

#official-translation .ot-translator-avatar {
    object-fit: cover;
}

#official-translation .ot-translator-avatar-placeholder {
    background: #f3eee7;
}

#official-translation .ot-translator-avatar-placeholder span {
    color: #e05b48;

    font-size: 42px;
    font-weight: 700;
}

#official-translation .ot-translator-card-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 20px 22px 22px;
}

#official-translation .ot-translator-card-header {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 9px;

    text-align: center;
}

#official-translation .ot-translator-name {
    margin: 0;

    font-size: 20px;
    font-weight: 800;

    line-height: 1.6;
}

#official-translation .ot-translator-name a {
    color: #25323a;

    text-decoration: none;

    transition: color 0.2s ease;
}

#official-translation .ot-translator-name a:hover {
    color: #e05b48;
}

#official-translation .ot-translator-official-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 5px 11px;

    border-radius: 999px;

    background: rgba(42, 164, 145, 0.10);

    color: #238b7b;

    font-size: 12px;
    font-weight: 700;
}

#official-translation .ot-translator-university {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 3px;

    margin-top: 16px;
    padding-top: 14px;

    border-top:
        1px solid rgba(37, 50, 58, 0.07);

    text-align: center;
}

#official-translation .ot-translator-university strong {
    color: #3c4a52;

    font-size: 14px;
    line-height: 1.7;
}

#official-translation .ot-translator-university span {
    color: #7a858b;

    font-size: 12px;
    line-height: 1.7;
}

#official-translation .ot-translator-meta {
    margin-top: 16px;
}

#official-translation .ot-translator-meta-label {
    display: block;

    margin-bottom: 7px;

    color: #7a858b;

    font-size: 12px;
    font-weight: 700;
}

#official-translation .ot-translator-terms {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;
}

#official-translation .ot-translator-term {
    display: inline-flex;

    align-items: center;

    padding: 5px 9px;

    border-radius: 999px;

    background: #fff6ed;

    color: #9a6248;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.5;
}

#official-translation .ot-translator-card-footer {
    margin-top: auto;
    padding-top: 22px;
}

#official-translation .ot-translator-profile-link {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    width: 100%;

    padding: 11px 14px;

    border: 1px solid rgba(224, 91, 72, 0.22);
    border-radius: 12px;

    background: #ffffff;

    color: #d95340;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

#official-translation .ot-translator-profile-link:hover {
    background: #e05b48;

    border-color: #e05b48;

    color: #ffffff;
}

#official-translation .ot-translator-profile-link span {
    font-size: 16px;

    transition:
        transform 0.2s ease;
}

#official-translation .ot-translator-profile-link:hover span {
    transform: translateX(-3px);
}

#official-translation .ot-translators-actions {
    display: flex;

    justify-content: center;

    margin-top: 36px;
}

#official-translation .ot-translators-empty {
    margin-top: 35px;
    padding: 30px;

    border: 1px dashed rgba(37, 50, 58, 0.15);
    border-radius: 18px;

    text-align: center;

    color: #7a858b;
}


/* =========================================================
   LINKS
========================================================= */

#official-translation a {
    color: var(--ot-green-dark);
}

#official-translation a:hover {
    color: var(--ot-navy);
}


/* =========================================================
   FORMS — GLOBAL PAGE OVERRIDE
========================================================= */

#official-translation input,
#official-translation select,
#official-translation textarea {
    border-color: var(--ot-border) !important;

    background: #ffffff !important;
}

#official-translation input:focus,
#official-translation select:focus,
#official-translation textarea:focus {
    border-color: var(--ot-green) !important;

    box-shadow:
        0 0 0 3px rgba(0, 143, 114, 0.10);
}


/* =========================================================
   RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1000px) {

    #official-translation .ot-hero .ot-container {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    #official-translation .ot-hero-content {
        text-align: center;
    }

    #official-translation .ot-hero-content .ot-eyebrow {
        justify-content: center;
    }

    #official-translation .ot-hero-description {
        margin-inline: auto;
    }

    #official-translation .ot-hero-actions {
        justify-content: center;
    }

    #official-translation .ot-hero-visual {
        order: -1;
    }

    #official-translation .ot-hero-image-wrapper {
        max-width: 500px;
    }

    #official-translation .ot-card-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    #official-translation .ot-purpose-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    #official-translation .ot-process-list {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    #official-translation .ot-certification-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    #official-translation .ot-guide-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px;
    }

    #official-translation .ot-translators-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   RESPONSIVE — TABLET / MOBILE
========================================================= */

@media (max-width: 768px) {

    #official-translation .ot-form {
        padding: 24px 18px;

        border-radius: 20px;
    }

    #official-translation .ot-form-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    #official-translation .ot-form-field-full {
        margin-top: 18px;
    }

    #official-translation .ot-form-actions {
        flex-direction: column;

        align-items: stretch;
    }

    #official-translation .ot-form-actions .ot-button {
        width: 100%;

        text-align: center;
    }

    #official-translation .ot-form-note {
        text-align: center;
    }

    #official-translation .ot-translators-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    #official-translation .ot-container {
        width: min(
            calc(100% - 28px),
            1180px
        );
    }

    #official-translation .ot-hero {
        padding: 52px 0 58px;
    }

    #official-translation .ot-section {
        padding: 65px 0;
    }

    #official-translation .ot-trust-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    #official-translation .ot-trust-item {
        border-color:
            rgba(255, 255, 255, 0.15) !important;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.15);
    }

    #official-translation .ot-trust-item:nth-child(2n) {
        border-left: 0;
    }

    #official-translation .ot-trust-item:nth-child(3),
    #official-translation .ot-trust-item:nth-child(4) {
        border-bottom: 0;
    }

    #official-translation .ot-card-grid,
    #official-translation .ot-purpose-grid,
    #official-translation .ot-certification-grid,
    #official-translation .ot-guide-grid {
        grid-template-columns: 1fr;
    }

    #official-translation .ot-process-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    #official-translation .ot-guide-box,
    #official-translation .ot-apply-box {
        flex-direction: column;

        align-items: stretch;

        text-align: center;
    }

    #official-translation .ot-guide-box .ot-button,
    #official-translation .ot-apply-box .ot-button {
        width: 100%;
    }

    #official-translation .ot-hero-actions {
        flex-direction: column;
    }

    #official-translation .ot-hero-actions .ot-button {
        width: 100%;
        min-width: 0;
    }

    #official-translation .ot-hero-image-wrapper {
        max-width: 390px;
    }

    #official-translation .ot-hero-image {
        max-height: 390px;
    }

    #official-translation .ot-guide-toggle-wrapper {
        margin-top: 28px;
    }

    #official-translation .ot-guide-toggle {
        width: 100%;
    }

    #official-translation .ot-success-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 24px;
    }

    #official-translation .ot-success-icon {
        flex-basis: 54px;

        width: 54px;
        height: 54px;

        font-size: 27px;
    }

    #official-translation .ot-request-number {
        flex-wrap: wrap;
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    #official-translation .ot-trust-grid {
        grid-template-columns: 1fr;
    }

    #official-translation .ot-trust-item,
    #official-translation .ot-trust-item:nth-child(3),
    #official-translation .ot-trust-item:nth-child(4) {
        border-left: 0 !important;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.15) !important;
    }

    #official-translation .ot-trust-item:last-child {
        border-bottom: 0 !important;
    }

    #official-translation .ot-hero-content h1 {
        font-size: 2rem;
    }

    #official-translation .ot-hero-description {
        font-size: 0.98rem;
    }

    #official-translation .ot-process-list {
        grid-template-columns: 1fr;
    }

    #official-translation .ot-guide-box {
        padding: 28px 22px;
    }

    #official-translation .ot-guide-card-content {
        padding: 20px;
    }

    #official-translation .ot-guide-card-title {
        font-size: 19px;
    }

    #official-translation .ot-guide-card-excerpt {
        font-size: 14px;
    }
}

/* =========================================================
   Official Translation - Choice Cards
   Document Types & Required Certifications
   ========================================================= */

#official-translation .ot-choice-fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

#official-translation .ot-choice-fieldset .ot-form-label {
	display: block;
	margin: 0 0 6px;
	padding: 0;
	color: #16324f;
	font-size: 0.95rem;
	font-weight: 700;
}

#official-translation .ot-form-help {
	margin: 0 0 14px;
	color: #667788;
	font-size: 0.88rem;
	line-height: 1.8;
}

/* Choice cards container */

#official-translation .ot-multi-select-options {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
	margin-top: 14px;
}

/* Individual card */

#official-translation .ot-choice-card {
	position: relative;
	display: block;
	min-width: 0;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

/* Native checkbox remains functional but is visually hidden */

#official-translation .ot-choice-card > input[type="checkbox"] {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Card content */

#official-translation .ot-choice-card-content {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 78px;
	margin: 0;
	padding: 14px 16px;
	gap: 12px;
	border: 1px solid #dfe8e7;
	border-radius: 14px;
	background: #ffffff;
	box-sizing: border-box;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

/* Icon */

#official-translation .ot-choice-icon {
	flex: 0 0 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #eaf7f3;
	font-size: 20px;
	line-height: 1;
}

/* Text area */

#official-translation .ot-choice-text {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	gap: 3px;
}

#official-translation .ot-choice-text strong {
	display: block;
	margin: 0;
	color: #16324f;
	font-size: 0.93rem;
	font-weight: 700;
	line-height: 1.6;
}

#official-translation .ot-choice-text small {
	display: block;
	margin: 0;
	color: #667788;
	font-size: 0.80rem;
	font-weight: 400;
	line-height: 1.6;
}

/* Check indicator */

#official-translation .ot-choice-check {
	flex: 0 0 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid #dfe8e7;
	border-radius: 50%;
	background: #ffffff;
	color: transparent;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	box-sizing: border-box;
}

/* Hover */

#official-translation .ot-choice-card:hover .ot-choice-card-content {
	border-color: #008f72;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(22, 50, 79, 0.08);
}

/* Selected */

#official-translation
.ot-choice-card > input[type="checkbox"]:checked
+ .ot-choice-card-content {
	border-color: #008f72;
	background: #eaf7f3;
	box-shadow: 0 0 0 3px rgba(0, 143, 114, 0.08);
}

#official-translation
.ot-choice-card > input[type="checkbox"]:checked
+ .ot-choice-card-content
.ot-choice-check {
	border-color: #008f72;
	background: #008f72;
	color: #ffffff;
}

/* Keyboard focus */

#official-translation
.ot-choice-card > input[type="checkbox"]:focus-visible
+ .ot-choice-card-content {
	outline: 3px solid rgba(0, 143, 114, 0.18);
	outline-offset: 2px;
}

/* Mobile */

@media (max-width: 768px) {

	#official-translation .ot-multi-select-options {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	#official-translation .ot-choice-card-content {
		min-height: 72px;
		padding: 12px 14px;
	}

	#official-translation .ot-choice-icon {
		flex-basis: 36px;
		width: 36px;
		height: 36px;
		font-size: 18px;
	}

	#official-translation .ot-choice-text strong {
		font-size: 0.9rem;
	}

	#official-translation .ot-choice-text small {
		font-size: 0.78rem;
	}
}

/* Full-width choice sections */

#official-translation .ot-form-field-full {
	grid-column: 1 / -1;
	width: 100%;
}

#official-translation .ot-choice-fieldset {
	width: 100%;
}

/* =========================================================
   SUCCESS STATE
   Hide the hero after successful translation request
   so the request number remains immediately visible.
========================================================= */

.ot-request-success #ot-hero {
    display: none;
}