:root {
    --blue-950: #071a2e;
    --blue-900: #0a203a;
    --blue-800: #0c2c52;
    --blue-700: #174a7c;
    --blue-600: #28618f;

    --orange: #f28b2f;
    --orange-dark: #d97018;
    --orange-soft: #fff4e9;

    --ink: #122033;
    --ink-soft: #30445b;
    --muted: #657287;
    --muted-light: #94a1b0;

    --line: #e5eaf0;
    --line-soft: #edf1f5;

    --soft: #f6f8fb;
    --soft-blue: #f4f8fc;

    --white: #ffffff;

    --shadow-xs:
        0 4px 14px rgba(15, 39, 72, 0.035);

    --shadow-sm:
        0 10px 30px rgba(15, 39, 72, 0.055);

    --shadow-md:
        0 18px 50px rgba(15, 39, 72, 0.085);

    --shadow-lg:
        0 28px 80px rgba(15, 39, 72, 0.12);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --container: 1180px;
}


/* ========================================
   RESET
======================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    margin: 0;

    font-family:
        "Vazirmatn",
        system-ui,
        sans-serif;

    color: var(--ink);

    background: #ffffff;

    line-height: 1.9;

    direction: rtl;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea,
select {
    font-family:
        "Vazirmatn",
        system-ui,
        sans-serif;
}

button,
input,
textarea,
select {
    font-size: inherit;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

::selection {
    background: rgba(242, 139, 47, 0.18);
    color: var(--blue-950);
}


/* ========================================
   CONTAINER
======================================== */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}


/* ========================================
   HEADER
======================================== */

.site-header {
    position: sticky;

    top: 0;

    z-index: 100;

    background:
        rgba(255, 255, 255, 0.88);

    border-bottom:
        1px solid rgba(229, 234, 240, 0.85);

    box-shadow:
        0 2px 20px rgba(15, 39, 72, 0.025);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 28px;
}


/* ========================================
   BRAND
======================================== */

.brand {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: var(--blue-800);

    text-decoration: none;

    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--orange),
            var(--orange-dark)
        );

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.5px;

    box-shadow:
        0 8px 20px rgba(242, 139, 47, 0.20);
}

.brand-content b {
    display: block;

    color: var(--blue-800);

    font-size: 14px;

    font-weight: 800;

    line-height: 1.5;
}

.brand-content small {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 9px;

    line-height: 1.5;
}


/* ========================================
   NAVIGATION
======================================== */

.nav-links {
    display: flex;

    align-items: center;

    gap: 25px;
}

.nav-links a {
    position: relative;

    display: inline-flex;

    align-items: center;

    padding: 28px 0;

    color: #4d5d70;

    text-decoration: none;

    font-size: 11px;

    font-weight: 500;

    transition:
        color 0.2s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    right: 50%;

    bottom: 16px;

    width: 0;

    height: 2px;

    border-radius: 2px;

    background: var(--orange);

    transform: translateX(50%);

    transition:
        width 0.22s ease;
}

.nav-links a:hover {
    color: var(--blue-800);
}

.nav-links a:hover::after {
    width: 18px;
}


/* ========================================
   BUTTONS
======================================== */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 44px;

    padding: 10px 17px;

    border-radius: 11px;

    border: 1px solid transparent;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.btn-primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--blue-800),
            var(--blue-700)
        );

    box-shadow:
        0 10px 24px rgba(12, 44, 82, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(12, 44, 82, 0.20);
}

.btn-light {
    color: var(--blue-800);

    background: #ffffff;

    border-color: var(--line);

    box-shadow:
        0 4px 15px rgba(15, 39, 72, 0.03);
}

.btn-light:hover,
.btn-outline:hover {
    transform: translateY(-2px);

    border-color: #ccd6e1;

    box-shadow: var(--shadow-sm);
}

.btn-outline {
    color: var(--blue-800);

    background: #ffffff;

    border-color: #d6dee7;
}

.btn-sm {
    min-height: 38px;

    padding: 8px 13px;

    font-size: 10px;
}


/* ========================================
   NAV CTA
======================================== */

.nav-cta {
    min-height: 42px;

    padding-inline: 15px;

    font-size: 10px;
}


/* ========================================
   MOBILE MENU
======================================== */

.mobile-menu-toggle {
    display: none;

    width: 41px;
    height: 41px;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 4px;

    border: 1px solid var(--line);

    border-radius: 11px;

    background: #ffffff;

    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 17px;
    height: 1.5px;

    border-radius: 2px;

    background: var(--blue-800);

    transition:
        transform 0.2s ease;
}

.mobile-navigation {
    display: none;

    max-height: 0;

    overflow: hidden;

    background: #ffffff;

    border-top:
        1px solid transparent;

    transition:
        max-height 0.3s ease,
        border-color 0.3s ease;
}

.mobile-navigation a {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 20px;

    border-bottom:
        1px solid var(--line-soft);

    color: var(--blue-800);

    text-decoration: none;

    font-size: 11px;
}

.mobile-navigation .mobile-consultation {
    margin: 14px 20px;

    padding: 12px 14px;

    border: 0;

    border-radius: 10px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--blue-800),
            var(--blue-700)
        );
}


/* ========================================
   MAIN
======================================== */

.site-main {
    min-height: 60vh;
}


/* ========================================
   HERO
======================================== */

.hero {
    position: relative;

    overflow: hidden;

    padding:
        88px 0
        55px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(24, 75, 126, 0.06),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f7fbff 0%,
            #ffffff 82%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -180px;
    top: -160px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.08),
            transparent 70%
        );

    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    gap: 65px;

    align-items: center;
}

.eyebrow,
.section-kicker {
    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.2px;
}

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;
}

.eyebrow::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 0 5px rgba(242, 139, 47, 0.09);
}

.hero h1 {
    max-width: 720px;

    margin:
        17px 0
        15px;

    color: var(--blue-950);

    font-size:
        clamp(
            40px,
            5vw,
            68px
        );

    line-height: 1.28;

    font-weight: 800;

    letter-spacing:
        -1.2px;
}

.hero p {
    max-width: 650px;

    margin: 0;

    color: var(--muted);

    font-size: 16px;

    line-height: 2.05;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;
}

.hero-actions .btn {
    min-height: 46px;
}

.hero-stats {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 28px;

    margin-top: 32px;

    padding-top: 22px;

    border-top:
        1px solid rgba(229, 234, 240, 0.85);
}

.hero-stats > div {
    position: relative;

    padding-left: 28px;
}

.hero-stats > div:not(:last-child)::after {
    content: "";

    position: absolute;

    left: 10px;
    top: 8px;

    width: 1px;
    height: 27px;

    background: var(--line);
}

.hero-stats b {
    display: block;

    color: var(--blue-800);

    font-size: 23px;

    line-height: 1.3;

    font-weight: 800;
}

.hero-stats small {
    display: block;

    margin-top: 3px;

    color: var(--muted-light);

    font-size: 9px;
}


/* ========================================
   HERO VISUAL
======================================== */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: grid;

    place-items: center;
}

.audit-card {
    position: relative;

    z-index: 3;

    width: min(510px, 94%);

    padding: 24px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #0a2b50,
            #174a7c
        );

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 26px;

    box-shadow:
        0 30px 80px rgba(13, 51, 92, 0.23);
}

.audit-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    left: -45px;
    bottom: -65px;

    border-radius: 50%;

    background:
        rgba(242, 139, 47, 0.08);

    pointer-events: none;
}

.audit-top,
.audit-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}

.audit-top {
    color: #b9c9da;

    font-size: 9px;
}

.audit-pill {
    padding: 7px 10px;

    color: #d6e0ea;

    border:
        1px solid rgba(255,255,255,0.14);

    border-radius: 999px;

    font-size: 8px;
}

.chart {
    height: 230px;

    display: flex;

    align-items: flex-end;

    gap: 10px;

    padding:
        28px 5px
        18px;
}

.chart i {
    position: relative;

    display: block;

    flex: 1;

    min-height: 16px;

    border-radius:
        7px 7px
        2px 2px;

    background:
        linear-gradient(
            180deg,
            #ffb55f,
            var(--orange)
        );

    box-shadow:
        0 8px 20px rgba(242, 139, 47, 0.14);
}

.chart i:nth-child(1) {
    height: 39%;
}

.chart i:nth-child(2) {
    height: 55%;
}

.chart i:nth-child(3) {
    height: 46%;
}

.chart i:nth-child(4) {
    height: 68%;
}

.chart i:nth-child(5) {
    height: 77%;
}

.chart i:nth-child(6) {
    height: 64%;
}

.chart i:nth-child(7) {
    height: 89%;
}

.audit-footer strong {
    display: block;

    font-size: 27px;

    line-height: 1.2;
}

.audit-footer small {
    display: block;

    margin-top: 3px;

    color: #afc0d2;

    font-size: 8px;
}

.orbit {
    position: absolute;

    border:
        1px solid rgba(22, 63, 112, 0.09);

    border-radius: 50%;
}

.orbit.one {
    width: 500px;
    height: 500px;
}

.orbit.two {
    width: 650px;
    height: 650px;
}

.orbit::before {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--orange);

    opacity: 0.45;
}

.orbit.one::before {
    top: 14%;
    right: 14%;
}

.orbit.two::before {
    bottom: 16%;
    left: 17%;
}


/* ========================================
   GENERAL SECTIONS
======================================== */

.section {
    position: relative;

    padding:
        100px 0;
}

.section.soft {
    background:
        linear-gradient(
            180deg,
            #f7f9fb,
            #f4f7fa
        );
}

.section h2 {
    margin:
        12px 0;

    color: var(--blue-950);

    font-size:
        clamp(
            29px,
            3vw,
            41px
        );

    line-height: 1.35;

    font-weight: 800;

    letter-spacing: -0.6px;
}

.section-head {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 35px;

    margin-bottom: 35px;
}

.section-head p {
    max-width: 520px;

    margin: 0;

    color: var(--muted);

    font-size: 12px;

    line-height: 2;
}

.two-col {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 75px;
}

.align-center {
    align-items: center;
}

.lead {
    margin: 0 0 17px;

    color: var(--ink-soft);

    font-size: 18px;

    line-height: 2;
}

.richtext {
    color: var(--muted);

    font-size: 12px;

    line-height: 2.1;
}


/* ========================================
   ABOUT
======================================== */

.about-panel {
    position: relative;

    min-height: 445px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #edf4fa,
            #f8fafc
        );

    border:
        1px solid var(--line);

    border-radius: 28px;

    box-shadow:
        var(--shadow-sm);
}

.blue-block {
    width: 60%;

    height: 100%;

    background:
        linear-gradient(
            180deg,
            var(--blue-800),
            var(--blue-700)
        );

    border-radius:
        0 145px
        145px 0;
}

.blue-block::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: 28px;
    right: 28px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.10);
}

.metric-card {
    position: absolute;

    left: 27px;
    bottom: 27px;

    width: 64%;

    padding: 25px;

    background:
        rgba(255,255,255,0.97);

    border:
        1px solid rgba(229,234,240,0.8);

    border-radius: 21px;

    box-shadow:
        var(--shadow-md);
}

.metric-card::before {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    margin-bottom: 13px;

    background: var(--orange);

    border-radius: 2px;
}

.metric-card b {
    display: block;

    margin: 7px 0;

    color: var(--blue-800);

    font-size: 21px;
}

.metric-card span,
.metric-card small {
    color: var(--muted);

    font-size: 10px;
}


/* ========================================
   LICENSES
======================================== */

.license-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.license-card {
    display: grid;

    grid-template-columns:
        180px
        minmax(0, 1fr);

    gap: 21px;

    align-items: center;

    padding: 19px;

    background: #ffffff;

    border:
        1px solid var(--line);

    border-radius: 22px;

    box-shadow:
        var(--shadow-xs);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.license-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(242, 139, 47, 0.22);

    box-shadow:
        var(--shadow-md);
}

.license-image {
    min-height: 120px;

    display: grid;

    place-items: center;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #e3edf7,
            #f9fbfd
        );

    color: #7a8ca2;

    font-size: 10px;
}

.license-card h3 {
    margin: 0;

    color: var(--blue-800);

    font-size: 17px;
}

.license-card p {
    margin: 7px 0 0;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.9;
}


/* ========================================
   RESUME TABLE
======================================== */

.resume-table-wrap,
.table-card {
    overflow: auto;

    background: #ffffff;

    border:
        1px solid var(--line);

    border-radius: 22px;

    box-shadow:
        var(--shadow-xs);
}

.resume-table,
.data-table {
    width: 100%;

    min-width: 760px;

    border-collapse: collapse;
}

.resume-table th,
.resume-table td,
.data-table th,
.data-table td {
    padding:
        17px 18px;

    text-align: right;

    vertical-align: top;

    border-bottom:
        1px solid var(--line-soft);

    font-size: 11px;
}

.resume-table th,
.data-table th {
    color: var(--blue-800);

    background: #f8fafc;

    font-weight: 700;
}

.resume-table tbody tr,
.data-table tbody tr {
    transition:
        background 0.18s ease;
}

.resume-table tbody tr:hover,
.data-table tbody tr:hover {
    background: #fbfcfd;
}

.company-row {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 7px;
}

.logo-mini {
    width: 30px;
    height: 30px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 8px;

    background:
        #eef3f8;

    color: #73839a;

    font-size: 8px;

    font-weight: 700;
}


/* ========================================
   PEOPLE
======================================== */

.people-grid {
    display: grid;

    gap: 18px;
}

.people-grid.three {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.people-grid.four {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}

.person-card,
.manager-card {
    padding: 19px;

    background: #ffffff;

    border:
        1px solid var(--line);

    border-radius: 21px;

    box-shadow:
        var(--shadow-xs);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.person-card:hover,
.manager-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(24, 75, 126, 0.14);

    box-shadow:
        var(--shadow-md);
}

.portrait {
    height: 240px;

    display: grid;

    place-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            160deg,
            #dce7f2,
            #f7f9fb
        );

    border-radius: 16px;

    color: #7d8ea4;

    font-size: 30px;

    font-weight: 800;
}

.portrait.small {
    height: 180px;
}

.person-card h3,
.manager-card h3 {
    margin:
        16px 0 3px;

    color: var(--blue-800);

    font-size: 17px;
}

.person-card p,
.manager-card p {
    margin: 0;

    color: var(--muted);

    font-size: 10px;
}


/* ========================================
   SERVICES
======================================== */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}

.service-card {
    min-height: 300px;

    display: flex;

    flex-direction: column;

    padding: 23px;

    background: #ffffff;

    border:
        1px solid var(--line);

    border-radius: 22px;

    box-shadow:
        var(--shadow-xs);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(242, 139, 47, 0.21);

    box-shadow:
        var(--shadow-md);
}

.service-no {
    color: var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.4px;
}

.service-card h3 {
    margin:
        15px 0 8px;

    color: var(--blue-800);

    font-size: 20px;

    line-height: 1.5;
}

.service-card p {
    flex: 1;

    margin: 0;

    color: var(--muted);

    font-size: 10px;

    line-height: 2;
}

.service-card .text-link {
    margin-top: 16px;
}


/* ========================================
   DOCUMENTS
======================================== */

.document-visual,
.statute-box {
    min-height: 330px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #f0f5fb,
            #ffffff
        );

    border:
        1px solid var(--line);

    border-radius: 30px;

    color: var(--blue-800);

    box-shadow:
        var(--shadow-sm);

    text-align: center;
}

.document-visual b,
.statute-box strong {
    font-size: 45px;

    letter-spacing: 4px;
}

.document-visual span,
.statute-box span {
    margin-top: 8px;

    color: var(--muted);

    font-size: 10px;
}


/* ========================================
   DOWNLOADS
======================================== */

.download-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}

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

.download-card {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px;

    background: #ffffff;

    border:
        1px solid var(--line);

    border-radius: 18px;

    box-shadow:
        var(--shadow-xs);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.download-card:hover {
    transform: translateY(-3px);

    box-shadow:
        var(--shadow-sm);
}

.file-type {
    width: 46px;
    height: 46px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 13px;

    background:
        #edf4fb;

    color: var(--blue-800);

    font-size: 9px;

    font-weight: 800;
}

.download-card h3 {
    margin: 0;

    color: var(--blue-800);

    font-size: 13px;
}

.download-card small {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 9px;
}

.download-icon {
    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    margin-right: auto;

    flex-shrink: 0;

    border-radius: 10px;

    background:
        var(--orange-soft);

    color: var(--orange-dark);

    text-decoration: none;

    font-size: 16px;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.download-icon:hover {
    transform: translateY(-2px);

    background:
        #ffe9d3;
}


/* ========================================
   ARTICLES
======================================== */

.article-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 17px;
}

.article-card {
    position: relative;

    padding: 24px;

    background: #ffffff;

    border:
        1px solid var(--line);

    border-radius: 18px;

    box-shadow:
        var(--shadow-xs);

    overflow: hidden;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.article-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 55px;
    height: 3px;

    background: var(--orange);

    border-radius:
        0 0 0 5px;
}

.article-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(24, 75, 126, 0.13);

    box-shadow:
        var(--shadow-md);
}

.article-card > span {
    color: var(--orange-dark);

    font-size: 9px;

    font-weight: 800;
}

.article-card h3 {
    margin:
        12px 0 8px;

    color: var(--blue-800);

    font-size: 18px;

    line-height: 1.7;
}

.article-card p {
    margin: 0;

    color: var(--muted);

    font-size: 10px;

    line-height: 2;
}


/* ========================================
   LINKS
======================================== */

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--blue-800);

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.text-link:hover {
    color: var(--orange-dark);

    transform:
        translateX(-3px);
}


/* ========================================
   FOOTER
======================================== */

.footer {
    position: relative;

    margin-top: 80px;

    color: #bdcad7;

    background:
        linear-gradient(
            145deg,
            var(--blue-950),
            var(--blue-900)
        );

    overflow: hidden;
}

.footer::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -120px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242,139,47,0.11),
            transparent 70%
        );
}

.footer-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.35fr
        0.75fr
        0.95fr
        1.1fr;

    gap: 50px;

    padding:
        65px 0
        48px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer .brand-content b {
    color: #ffffff;
}

.footer .brand-content small {
    color: #8296ac;
}

.footer-description {
    max-width: 360px;

    margin:
        18px 0 0;

    color: #91a4b8;

    font-size: 10px;

    line-height: 2.1;
}

.footer-accent-line {
    width: 35px;
    height: 2px;

    margin-top: 18px;

    border-radius: 2px;

    background: var(--orange);
}

.footer-column h4 {
    margin:
        0 0 17px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;
}

.footer-column > a {
    margin-bottom: 9px;

    color: #8ea2b6;

    text-decoration: none;

    font-size: 9px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column > a:hover {
    color: #ffffff;

    transform:
        translateX(-3px);
}

.contact-item {
    margin-bottom: 14px;
}

.contact-label {
    display: block;

    margin-bottom: 3px;

    color: #627a93;

    font-size: 8px;
}

.contact-item strong {
    display: block;

    color: #bfccd9;

    font-size: 9px;

    line-height: 1.8;

    font-weight: 500;
}

.contact-email {
    direction: ltr;

    text-align: right;
}

.footer-bottom {
    position: relative;
    z-index: 2;

    min-height: 63px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255,255,255,0.07);

    color: #617990;

    font-size: 8px;
}

.footer-bottom-right {
    display: flex;

    align-items: center;

    gap: 7px;
}

.footer-bottom-right span {
    color: var(--orange);
}


/* ========================================
   REVEAL
======================================== */

.reveal {
    animation:
        rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes rise {
    from {
        opacity: 0;

        transform:
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1100px) {

    .nav-links {
        gap: 17px;
    }

    .hero-grid {
        gap: 40px;
    }

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

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

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

}


@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .nav-actions .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-navigation {
        display: block;
    }

    body.mobile-nav-open .mobile-navigation {
        max-height: 520px;

        border-top-color:
            var(--line);
    }

    .hero {
        padding-top: 65px;
    }

    .hero-grid,
    .two-col {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 430px;
    }

    .two-col {
        gap: 45px;
    }

    .license-grid {
        grid-template-columns:
            1fr;
    }

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

}


@media (max-width: 700px) {

    .container {
        width:
            calc(100% - 32px);
    }

    .section {
        padding:
            75px 0;
    }

    .section-head {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

    .hero {
        padding:
            48px 0
            45px;
    }

    .hero h1 {
        font-size: 40px;

        letter-spacing:
            -0.7px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-stats {
        gap: 17px;
    }

    .hero-stats > div {
        padding-left: 17px;
    }

    .hero-stats > div:not(:last-child)::after {
        left: 5px;
    }

    .hero-visual {
        min-height: 370px;
    }

    .audit-card {
        width: 100%;

        padding: 19px;

        border-radius: 21px;
    }

    .chart {
        height: 185px;

        gap: 7px;

        padding:
            24px 4px
            14px;
    }

    .orbit.one {
        width: 380px;
        height: 380px;
    }

    .orbit.two {
        width: 500px;
        height: 500px;
    }

    .about-panel {
        min-height: 360px;
    }

    .blue-block {
        width: 70%;
    }

    .metric-card {
        width: 73%;

        left: 18px;
        bottom: 18px;

        padding: 19px;
    }

    .service-grid,
    .people-grid.three,
    .people-grid.four,
    .download-grid,
    .download-grid.two,
    .article-grid {
        grid-template-columns:
            1fr;
    }

    .license-card {
        grid-template-columns:
            1fr;
    }

    .license-image {
        min-height: 170px;
    }

    .footer-grid {
        grid-template-columns:
            1fr;

        gap: 35px;

        padding:
            48px 0
            38px;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        justify-content: center;

        padding:
            18px 0;
    }

}


@media (max-width: 480px) {

    .brand-content small {
        display: none;
    }

    .brand-mark {
        width: 39px;
        height: 39px;
    }

    .brand-content b {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

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

    .hero-stats {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;
    }

    .hero-stats > div:not(:last-child)::after {
        display: none;
    }

    .section h2 {
        font-size: 29px;
    }

}
/* =========================================================
   DIAN MOTAMED HOME
   PREMIUM CORPORATE FINANCE
========================================================= */


/* =========================================================
   HERO ENHANCEMENTS
========================================================= */

.hero {
    min-height: 720px;

    display: flex;
    align-items: center;

    padding:
        85px 0
        25px;

    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(24, 75, 126, 0.075),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #f6faff 0%,
            #ffffff 85%
        );
}

.hero-background-grid {
    position: absolute;

    inset: 0;

    opacity: 0.28;

    background-image:
        linear-gradient(
            rgba(12, 44, 82, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(12, 44, 82, 0.035) 1px,
            transparent 1px
        );

    background-size:
        46px 46px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );

    pointer-events: none;
}

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(4px);

    pointer-events: none;
}

.hero-glow-orange {
    width: 340px;
    height: 340px;

    left: -170px;
    top: -120px;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.085),
            transparent 70%
        );
}

.hero-glow-blue {
    width: 420px;
    height: 420px;

    right: 32%;
    bottom: -260px;

    background:
        radial-gradient(
            circle,
            rgba(24, 75, 126, 0.06),
            transparent 70%
        );
}

.hero-grid {
    width: 100%;

    position: relative;

    z-index: 2;
}

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--orange);

    box-shadow:
        0 0 0 5px
        rgba(242, 139, 47, 0.09);
}

.hero-description {
    max-width: 630px !important;

    font-size: 16px !important;

    line-height: 2.1 !important;
}

.hero-actions {
    margin-top: 28px;

    gap: 10px;
}

.hero-primary-button {
    min-width: 165px;
}

.button-arrow {
    transition:
        transform 0.2s ease;
}

.hero-primary-button:hover .button-arrow {
    transform:
        translateX(-4px);
}

.hero-secondary-button {
    min-width: 135px;
}

.hero-trust {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 25px;
}

.trust-item {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--muted);

    font-size: 9px;
}

.trust-icon {
    width: 19px;
    height: 19px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: var(--success, #2d9b67);

    background:
        rgba(45, 155, 103, 0.08);

    font-size: 8px;

    font-weight: 800;
}

.hero-stats {
    margin-top: 29px;
}

.hero-visual {
    min-height: 520px;
}

.audit-top {
    align-items: flex-start;
}

.audit-card-kicker {
    display: block;

    margin-bottom: 4px;

    color: #7f9ab5;

    font-size: 7px;

    letter-spacing: 1.7px;
}

.audit-top strong {
    display: block;

    color: #eef5fc;

    font-size: 13px;

    font-weight: 600;
}

.audit-year {
    color: #aabfd4;

    font-size: 10px;
}

.audit-divider {
    height: 1px;

    margin:
        17px 0
        5px;

    background:
        rgba(255,255,255,0.08);
}

.audit-chart-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #aabed2;

    font-size: 8px;
}

.audit-chart-header span:last-child {
    color: #ffb96c;

    font-weight: 700;
}

.chart {
    position: relative;

    height: 220px;

    gap: 9px;

    padding:
        25px 3px
        15px;
}

.chart::before {
    content: "";

    position: absolute;

    inset:
        20px 0
        15px;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255,255,255,0.055) 0,
            rgba(255,255,255,0.055) 1px,
            transparent 1px,
            transparent 52px
        );

    pointer-events: none;
}

.chart i {
    z-index: 2;

    transform-origin:
        bottom center;

    animation:
        chartGrow 1.2s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

.chart i:nth-child(1) {
    animation-delay: 0.05s;
}

.chart i:nth-child(2) {
    animation-delay: 0.10s;
}

.chart i:nth-child(3) {
    animation-delay: 0.15s;
}

.chart i:nth-child(4) {
    animation-delay: 0.20s;
}

.chart i:nth-child(5) {
    animation-delay: 0.25s;
}

.chart i:nth-child(6) {
    animation-delay: 0.30s;
}

.chart i:nth-child(7) {
    animation-delay: 0.35s;
}

.chart i:nth-child(8) {
    animation-delay: 0.40s;
}

.chart i:nth-child(9) {
    animation-delay: 0.45s;
}

.audit-footer {
    margin-top: 4px;
}

.audit-footer small {
    color: #95aec5;

    font-size: 8px;
}

.audit-footer strong {
    margin-top: 3px;

    font-size: 29px;
}

.audit-pill {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        8px 10px;

    border-radius: 999px;

    color: #d9e5ef;

    font-size: 7px;

    letter-spacing: 0.8px;
}

.audit-pill-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #55c58a;

    box-shadow:
        0 0 0 4px
        rgba(85,197,138,0.10);
}

.audit-card-bottom {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 21px;

    padding-top: 13px;

    border-top:
        1px solid
        rgba(255,255,255,0.075);
}

.audit-card-bottom span {
    padding:
        4px 8px;

    border:
        1px solid
        rgba(255,255,255,0.08);

    border-radius: 7px;

    color: #91a9bf;

    font-size: 7px;
}

.hero-floating-label {
    position: absolute;

    z-index: 4;

    padding:
        7px 10px;

    border:
        1px solid
        rgba(12, 44, 82, 0.08);

    border-radius: 999px;

    color: var(--blue-700);

    background:
        rgba(255,255,255,0.90);

    box-shadow:
        0 9px 25px
        rgba(15,39,72,0.07);

    font-size: 7px;

    letter-spacing: 0.5px;

    backdrop-filter:
        blur(10px);
}

.label-top {
    top: 33px;

    right: 6%;
}

.label-bottom {
    bottom: 48px;

    left: 1%;
}

.hero-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(0);

    pointer-events: none;
}

.orb-orange {
    width: 26px;
    height: 26px;

    top: 13%;

    left: 13%;

    border:
        1px solid
        rgba(242, 139, 47, 0.24);

    background:
        rgba(242, 139, 47, 0.07);

    animation:
        orbFloat 6s
        ease-in-out
        infinite;
}

.orb-blue {
    width: 17px;
    height: 17px;

    right: 9%;
    bottom: 17%;

    border:
        1px solid
        rgba(24,75,126,0.18);

    background:
        rgba(24,75,126,0.05);

    animation:
        orbFloat 5s
        ease-in-out
        infinite reverse;
}

.hero-bottom-line {
    position: relative;

    z-index: 5;

    margin-top: 35px;

    padding:
        13px 0;

    border-top:
        1px solid
        rgba(229,234,240,0.85);

    color: #8190a0;

    font-size: 8px;

    letter-spacing: 0.4px;
}

.hero-bottom-line .container {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 11px;
}

@keyframes heroFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-7px);
    }

}

@keyframes orbFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-13px);
    }

}

@keyframes chartGrow {

    from {
        transform:
            scaleY(0);
        opacity: 0;
    }

    to {
        transform:
            scaleY(1);
        opacity: 1;
    }

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    overflow: hidden;
}

.about-copy {
    position: relative;
    z-index: 2;
}

.about-panel {
    min-height: 460px;

    box-shadow:
        var(--shadow-md);
}

.about-panel-pattern {
    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            rgba(24,75,126,0.08) 1px,
            transparent 1px
        );

    background-size: 18px 18px;

    opacity: 0.38;
}

.about-panel-label {
    position: absolute;

    top: 34px;
    right: 33px;

    color:
        rgba(255,255,255,0.48);

    font-size: 7px;

    letter-spacing: 2px;
}

.blue-block {
    position: relative;

    display: flex;

    align-items: flex-end;

    padding:
        38px;

    background:
        linear-gradient(
            155deg,
            #0b315c,
            #174a7c
        );
}

.blue-block strong {
    color:
        rgba(255,255,255,0.92);

    font-size: 31px;

    line-height: 1.25;

    letter-spacing: -0.4px;
}

.metric-card {
    width: 66%;

    z-index: 3;
}

.about-mini-stat {
    position: absolute;

    left: 27px;
    top: 26px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        7px 9px;

    background:
        rgba(255,255,255,0.82);

    border:
        1px solid
        rgba(255,255,255,0.7);

    border-radius: 9px;

    box-shadow:
        0 10px 25px
        rgba(15,39,72,0.06);

    backdrop-filter:
        blur(10px);
}

.about-mini-stat span {
    color: var(--orange);

    font-size: 9px;

    font-weight: 800;
}

.about-mini-stat small {
    color: var(--muted);

    font-size: 7px;
}


/* =========================================================
   SECTION TYPOGRAPHY
========================================================= */

.section-kicker {
    display: inline-flex;

    align-items: center;

    gap: 7px;
}

.section-kicker::before {
    content: "";

    width: 17px;
    height: 2px;

    border-radius: 2px;

    background:
        var(--orange);
}

.section-head {
    margin-bottom: 34px;
}

.section-head h2 {
    max-width: 650px;
}

.section-head p {
    margin-top: 7px;
}


/* =========================================================
   LICENSES
========================================================= */

.license-card {
    position: relative;

    overflow: hidden;

    grid-template-columns:
        180px
        minmax(0, 1fr);

    padding: 20px;
}

.license-image {
    position: relative;

    overflow: hidden;
}

.license-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}

.license-card:hover .license-image img {
    transform:
        scale(1.04);
}

.license-content {
    padding-right: 2px;
}

.license-label,
.person-label {
    display: block;

    color: var(--orange-dark);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}

.license-card h3 {
    margin-top: 10px;
}

.license-corner {
    position: absolute;

    left: 18px;
    top: 15px;

    color: #aeb9c4;

    font-size: 8px;

    font-weight: 700;
}


/* =========================================================
   RESUME
========================================================= */

.resume-table th span {
    display: inline-flex;

    align-items: center;

    gap: 7px;
}

.resume-table th span::before {
    content: "";

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        var(--orange);

    opacity: 0.7;
}

.logo-mini {
    overflow: hidden;
}

.logo-mini img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   PEOPLE
========================================================= */

.person-card,
.manager-card {
    overflow: hidden;
}

.person-card-content,
.manager-card-content {
    padding-top: 2px;
}

.partner-portrait,
.manager-portrait {
    overflow: hidden;
}

.partner-portrait img,
.manager-portrait img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}

.partner-card:hover .partner-portrait img,
.manager-card:hover .manager-portrait img {
    transform:
        scale(1.035);
}

.portrait-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 52%,
            rgba(10,32,58,0.17)
        );

    pointer-events: none;
}

.partner-card .portrait {
    position: relative;
}


/* =========================================================
   EMPLOYEES
========================================================= */

.employee-table-card {
    box-shadow:
        0 15px 45px
        rgba(18,32,51,0.045);
}

.employee-name {
    color: var(--blue-800);

    font-size: 11px;
}


/* =========================================================
   SERVICES
========================================================= */

.service-card {
    position: relative;

    overflow: hidden;

    min-height: 315px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    left: -70px;
    bottom: -70px;

    border-radius: 50%;

    background:
        rgba(242,139,47,0.065);

    transition:
        transform 0.35s ease;
}

.service-card:hover::after {
    transform:
        scale(1.7);
}

.service-card-top {
    display: flex;

    align-items: center;

    gap: 9px;
}

.service-line {
    width: 26px;
    height: 1px;

    background:
        var(--line);
}

.service-card-icon {
    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    margin-top: 22px;

    border-radius: 12px;

    color: var(--blue-800);

    background:
        rgba(12,44,82,0.055);

    font-size: 16px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.service-card:hover .service-card-icon {
    transform:
        translateY(-2px);

    color:
        var(--orange-dark);

    background:
        rgba(242,139,47,0.09);
}

.service-card h3 {
    margin-top: 17px;
}

.service-link {
    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 18px;

    padding-top: 13px;

    border-top:
        1px solid
        var(--line-soft);

    color:
        var(--blue-800);

    text-decoration: none;

    font-size: 9px;

    font-weight: 700;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.service-link:hover {
    color:
        var(--orange-dark);

    transform:
        translateX(-3px);
}


/* =========================================================
   QUALITY
========================================================= */

.quality-points {
    display: flex;

    flex-direction: column;

    gap: 9px;

    margin:
        20px 0
        23px;
}

.quality-points span {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--muted);

    font-size: 9px;
}

.quality-points b {
    min-width: 24px;

    color: var(--orange-dark);

    font-size: 8px;
}

.quality-document-visual {
    position: relative;

    overflow: hidden;
}

.document-stamp {
    position: absolute;

    top: 30px;
    right: 32px;

    padding:
        6px 9px;

    border:
        1px solid
        rgba(12,44,82,0.10);

    border-radius: 7px;

    color: #8d9aab;

    font-size: 7px;

    letter-spacing: 1.2px;
}

.document-lines {
    position: absolute;

    width: 55%;

    height: 110px;

    bottom: 30px;
    left: 20%;

    border-top:
        1px solid #dce4eb;

    border-bottom:
        1px solid #dce4eb;

    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 13px,
            #e6ebf0 13px,
            #e6ebf0 14px
        );

    opacity: 0.75;
}


/* =========================================================
   DOWNLOAD DOCUMENTS
========================================================= */

.document-card {
    position: relative;
}

.download-content {
    min-width: 0;
}

.download-content h3 {
    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   STATUTE
========================================================= */

.statute-box {
    min-height: 380px;

    perspective: 1000px;
}

.statute-paper {
    width: min(270px, 76%);

    min-height: 285px;

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f8fb
        );

    border:
        1px solid
        #dfe6ed;

    border-radius: 8px;

    box-shadow:
        0 20px 40px
        rgba(15,39,72,0.08);

    transform:
        rotate(-2deg);

    transition:
        transform 0.35s ease;
}

.statute-box:hover .statute-paper {
    transform:
        rotate(0)
        translateY(-4px);
}

.statute-paper::before {
    content: "";

    position: absolute;

    top: 14px;
    right: 14px;
    left: 14px;

    height: 1px;

    background:
        var(--line);
}

.statute-paper span {
    margin-top: 5px;

    color: #8a98a8;

    font-size: 7px;

    letter-spacing: 2px;
}

.statute-paper strong {
    margin-top: 15px;

    color: var(--blue-800);

    font-size: 28px;

    letter-spacing: 3px;
}

.statute-paper small {
    margin-top: 4px;

    color: var(--muted-light);

    font-size: 8px;
}

.statute-paper-lines {
    width: 72%;

    height: 75px;

    margin-top: 25px;

    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 11px,
            #e2e8ee 11px,
            #e2e8ee 12px
        );
}


/* =========================================================
   ARTICLES
========================================================= */

.article-card {
    min-height: 290px;

    display: flex;

    flex-direction: column;
}

.article-meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    color: var(--orange-dark);

    font-size: 8px;

    font-weight: 800;
}

.article-meta span:last-child {
    color: #aab4bf;

    font-size: 13px;
}

.article-card h3 {
    margin-top: 17px;
}

.article-card p {
    flex: 1;

    display: -webkit-box;

    overflow: hidden;

    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}


/* =========================================================
   REVEAL DELAY
========================================================= */

.reveal:nth-child(2) {
    animation-delay: 0.05s;
}

.reveal:nth-child(3) {
    animation-delay: 0.10s;
}

.reveal:nth-child(4) {
    animation-delay: 0.15s;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 980px) {

    .hero {
        min-height: auto;

        padding-top: 65px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-floating-label {
        display: none;
    }

    .about-panel {
        min-height: 400px;
    }

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

}


@media (max-width: 700px) {

    .hero {
        padding-top: 45px;
    }

    .hero-trust {
        gap: 11px 15px;
    }

    .hero-bottom-line {
        display: none;
    }

    .audit-card {
        width: 100%;
    }

    .hero-visual {
        min-height: 370px;
    }

    .audit-footer strong {
        font-size: 24px;
    }

    .about-panel {
        min-height: 350px;
    }

    .blue-block strong {
        font-size: 25px;
    }

    .metric-card {
        width: 72%;
    }

    .license-card {
        grid-template-columns: 1fr;
    }

    .license-image {
        min-height: 160px;
    }

    .quality-points {
        margin-top: 17px;
    }

    .download-grid,
    .download-grid.two {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .hero-actions {
        width: 100%;
    }

    .hero-primary-button,
    .hero-secondary-button {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .hero-stats > div {
        padding-left: 0;
    }

    .hero-stats > div:not(:last-child)::after {
        display: none;
    }

    .hero-visual {
        min-height: 330px;
    }

    .audit-card {
        padding: 17px;
    }

    .chart {
        height: 170px;
    }

    .metric-card {
        width: 78%;
    }

}
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

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

.audit-card {
    transform: translate3d(
        var(--mouse-x, 0px),
        var(--mouse-y, 0px),
        0
    );
}

.site-header {
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 30px rgba(15, 39, 72, 0.07);
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

}
/* ========================================
   HERO SPACING FIX
======================================== */

/* Container اصلی Hero */
.hero .container {
    width: min(1180px, calc(100% - 64px));
    margin-inline: auto;
}

/* خود Hero */
.hero {
    padding-top: 72px;
    padding-bottom: 34px;
}

/* Grid */
.hero-grid {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(0, 0.98fr);

    gap: 48px;
}

/* متن Hero */
.hero-copy {
    min-width: 0;
}

/* عنوان */
.hero h1 {
    max-width: 680px;
}

/* توضیحات */
.hero-description {
    max-width: 600px !important;
}

/* Visual */
.hero-visual {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
}

/* کارت آماری */
.audit-card {
    width: min(500px, 100%);
}

/* خط پایین Hero */
.hero-bottom-line .container {
    width: min(1180px, calc(100% - 64px));
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1100px) {

    .hero .container {
        width: min(100% - 50px, 1000px);
    }

    .hero-grid {
        gap: 35px;
    }

    .hero-visual {
        padding-inline: 0;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

    .hero {
        padding-top: 42px;
        padding-bottom: 24px;
    }

    .hero .container {
        width: calc(100% - 32px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-copy {
        width: 100%;
    }

    .hero h1 {
        max-width: 100%;
        margin-top: 14px;
        font-size: 38px;
        line-height: 1.4;
    }

    .hero-description {
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 2 !important;
    }

    .hero-actions {
        width: 100%;
        margin-top: 22px;
    }

    .hero-trust {
        width: 100%;
    }

    .hero-stats {
        width: 100%;
        margin-top: 24px;
        padding-top: 18px;
    }

    .hero-visual {
        width: 100%;
        min-height: 330px;
        padding: 0;
    }

    .audit-card {
        width: 100%;
        max-width: 100%;
        padding: 17px;
        border-radius: 20px;
    }

    .orbit.one {
        width: 340px;
        height: 340px;
    }

    .orbit.two {
        width: 450px;
        height: 450px;
    }

    .hero-bottom-line {
        display: none;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .hero .container {
        width: calc(100% - 28px);
    }

    .hero {
        padding-top: 32px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.42;
    }

    .hero-description {
        font-size: 13px !important;
    }

    .hero-grid {
        gap: 22px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .audit-card {
        padding: 15px;
    }

}
/* ========================================
   HERO FINAL ALIGNMENT FIX
======================================== */

.hero {
    overflow: hidden;
}

.hero-grid {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
}

.hero-copy {
    max-width: 620px;
}

.hero-visual {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    justify-self: center;
}

.audit-card {
    width: min(500px, 100%);
}

@media (min-width: 981px) {

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 55px;
    }

    .hero-copy {
        justify-self: start;
    }

    .hero-visual {
        justify-self: end;
    }

}

@media (max-width: 980px) {

    .hero-copy {
        max-width: 100%;
    }

    .hero-visual {
        max-width: 560px;
        margin-inline: auto;
    }

}

@media (max-width: 700px) {

    .hero .container {
        width: calc(100% - 32px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
    }

    .hero-visual {
        width: 100%;
        max-width: 100%;
    }

    .audit-card {
        width: 100%;
    }

}
/* ========================================
   HEADER SCROLL EXPERIENCE
======================================== */

.site-header {
    height: 78px;
    transition:
        height 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.nav-wrap {
    height: 78px;
    transition:
        height 0.28s ease;
}

.site-header .brand-mark {
    transition:
        width 0.28s ease,
        height 0.28s ease,
        border-radius 0.28s ease,
        box-shadow 0.28s ease;
}

.site-header .brand-content b {
    transition:
        font-size 0.28s ease;
}

.site-header .brand-content small {
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.site-header .nav-links a {
    transition:
        padding 0.28s ease,
        color 0.2s ease;
}

.site-header .nav-cta {
    transition:
        min-height 0.28s ease,
        padding 0.28s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}


/* ========================================
   SCROLLED HEADER
======================================== */

.site-header.is-scrolled {
    height: 68px;

    background:
        rgba(255, 255, 255, 0.97);

    border-bottom-color:
        rgba(214, 222, 231, 0.92);

    box-shadow:
        0 8px 28px rgba(15, 39, 72, 0.075);
}

.site-header.is-scrolled .nav-wrap {
    height: 68px;
}

.site-header.is-scrolled .brand-mark {
    width: 37px;
    height: 37px;

    border-radius: 10px;

    box-shadow:
        0 6px 15px rgba(242, 139, 47, 0.16);
}

.site-header.is-scrolled .brand-content b {
    font-size: 13px;
}

.site-header.is-scrolled .brand-content small {
    opacity: 0.82;
}

.site-header.is-scrolled .nav-links a {
    padding-top: 23px;
    padding-bottom: 23px;
}

.site-header.is-scrolled .nav-cta {
    min-height: 38px;

    padding-top: 8px;
    padding-bottom: 8px;

    box-shadow:
        0 7px 17px rgba(12, 44, 82, 0.12);
}


/* ========================================
   ACTIVE NAV FEEL
======================================== */

.nav-links a:hover {
    color: var(--blue-800);
}

.nav-links a::after {
    transition:
        width 0.22s ease,
        opacity 0.22s ease;
}

.nav-links a:hover::after {
    opacity: 1;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 900px) {

    .site-header {
        height: 67px;
    }

    .nav-wrap {
        height: 67px;
    }

    .site-header.is-scrolled {
        height: 62px;
    }

    .site-header.is-scrolled .nav-wrap {
        height: 62px;
    }

    .site-header.is-scrolled .brand-mark {
        width: 36px;
        height: 36px;
    }

}
/* =========================================================
   SERVICES - PREMIUM MICRO INTERACTIONS
========================================================= */

.service-card {
    position: relative;

    overflow: hidden;

    isolation: isolate;

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;
}


/* خط بالایی */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 0;
    height: 3px;

    background: var(--orange);

    border-radius: 0 0 0 4px;

    transition:
        width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}


/* هاله بسیار ظریف */

.service-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -115px;
    bottom: -125px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.10),
            transparent 68%
        );

    opacity: 0;

    transform: scale(0.7);

    transition:
        opacity 0.4s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Hover Card */

.service-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(242, 139, 47, 0.22);

    box-shadow:
        0 20px 48px
        rgba(15, 39, 72, 0.10);
}

.service-card:hover::before {
    width: 64px;
}

.service-card:hover::after {
    opacity: 1;

    transform:
        scale(1.25);
}


/* =========================================================
   NUMBER
========================================================= */

.service-no {
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.service-card:hover .service-no {
    color:
        var(--orange-dark);

    transform:
        translateX(-2px);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.service-card-icon {
    position: relative;

    overflow: hidden;

    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card-icon::after {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    left: -110%;
    top: 0;

    background:
        linear-gradient(
            115deg,
            transparent 25%,
            rgba(255,255,255,0.55) 50%,
            transparent 75%
        );

    transition:
        left 0.55s ease;
}

.service-card:hover .service-card-icon {
    transform:
        translateY(-3px)
        rotate(-2deg);

    color:
        var(--orange-dark);

    background:
        rgba(242, 139, 47, 0.10);

    box-shadow:
        0 8px 18px
        rgba(242, 139, 47, 0.10);
}

.service-card:hover .service-card-icon::after {
    left: 110%;
}


/* =========================================================
   TITLE
========================================================= */

.service-card h3 {
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.service-card:hover h3 {
    color:
        var(--blue-700);

    transform:
        translateX(-2px);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.service-card p {
    transition:
        color 0.25s ease;
}

.service-card:hover p {
    color:
        #59697b;
}


/* =========================================================
   LINK
========================================================= */

.service-link {
    position: relative;

    z-index: 3;

    transition:
        color 0.25s ease,
        padding-right 0.28s ease;
}

.service-link span:last-child {
    display: inline-block;

    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-link {
    color:
        var(--orange-dark);

    padding-right: 4px;
}

.service-card:hover .service-link span:last-child {
    transform:
        translateX(-5px);
}


/* =========================================================
   ENTRY ANIMATION
========================================================= */

.services-section .service-card:nth-child(1) {
    animation-delay: 0.05s;
}

.services-section .service-card:nth-child(2) {
    animation-delay: 0.10s;
}

.services-section .service-card:nth-child(3) {
    animation-delay: 0.15s;
}

.services-section .service-card:nth-child(4) {
    animation-delay: 0.20s;
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .service-card:hover {
        transform: none;

        border-color:
            var(--line);

        box-shadow:
            var(--shadow-xs);
    }

    .service-card:hover::before {
        width: 0;
    }

    .service-card:hover::after {
        opacity: 0;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-card::before,
    .service-card::after,
    .service-card-icon,
    .service-card-icon::after,
    .service-card h3,
    .service-card p,
    .service-link,
    .service-link span:last-child {
        transition: none !important;
    }

}
/* =========================================================
   PARTNERS & MANAGERS - SOFT PREMIUM MOTION
========================================================= */

/* ---------- Base Card Motion ---------- */

.partner-card,
.manager-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        background 0.3s ease;
}

/* ---------- Partner Card ---------- */

.partner-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 139, 47, 0.22);
    box-shadow:
        0 24px 55px rgba(15, 39, 72, 0.10),
        0 5px 18px rgba(242, 139, 47, 0.05);
}

/* ---------- Manager Card ---------- */

.manager-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 139, 47, 0.18);
    box-shadow:
        0 20px 42px rgba(15, 39, 72, 0.09),
        0 4px 14px rgba(242, 139, 47, 0.04);
}


/* =========================================================
   PORTRAIT MOTION
========================================================= */

.partner-portrait,
.manager-portrait {
    position: relative;
    overflow: hidden;
}

/* تصویر */

.partner-portrait img,
.manager-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1);

    transition:
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.45s ease;
}

/* هنگام هاور */

.partner-card:hover .partner-portrait img,
.manager-card:hover .manager-portrait img {
    transform: scale(1.045);
    filter: saturate(1.03) contrast(1.02);
}


/* =========================================================
   IMAGE LIGHT SWEEP
========================================================= */

.partner-portrait::before,
.manager-portrait::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    z-index: 3;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255, 255, 255, 0.12) 48%,
            rgba(255, 255, 255, 0.30) 52%,
            transparent 80%
        );

    transform: skewX(-18deg);

    transition:
        left 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.partner-card:hover .partner-portrait::before,
.manager-card:hover .manager-portrait::before {
    left: 135%;
}


/* =========================================================
   DARK PREMIUM OVERLAY
========================================================= */

.partner-portrait::after,
.manager-portrait::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(15, 39, 72, 0.02) 0%,
            rgba(15, 39, 72, 0.00) 45%,
            rgba(15, 39, 72, 0.12) 100%
        );

    opacity: 0.65;

    transition:
        opacity 0.4s ease;
}

.partner-card:hover .partner-portrait::after,
.manager-card:hover .manager-portrait::after {
    opacity: 0.88;
}


/* =========================================================
   PARTNER CONTENT MOTION
========================================================= */

.partner-card .person-card-content {
    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.partner-card:hover .person-card-content {
    transform: translateY(-2px);
}

.partner-card .person-label,
.manager-card .person-label {
    transition:
        color 0.25s ease,
        letter-spacing 0.25s ease;
}

.partner-card:hover .person-label,
.manager-card:hover .person-label {
    color: var(--orange-dark);
    letter-spacing: 0.08em;
}


/* =========================================================
   NAME MOTION
========================================================= */

.partner-card h3,
.manager-card h3 {
    transition:
        color 0.25s ease,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.partner-card:hover h3,
.manager-card:hover h3 {
    color: var(--blue-700);
    transform: translateX(-2px);
}


/* =========================================================
   POSITION / DESCRIPTION
========================================================= */

.partner-card p,
.manager-card p {
    transition:
        color 0.25s ease,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.partner-card:hover p,
.manager-card:hover p {
    color: #536477;
    transform: translateX(-1px);
}


/* =========================================================
   PARTNER DETAIL LINK
========================================================= */

.partner-card .text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition:
        color 0.25s ease,
        gap 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.partner-card .text-link span:last-child {
    display: inline-block;

    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.partner-card:hover .text-link {
    color: var(--orange-dark);
    gap: 11px;
}

.partner-card:hover .text-link span:last-child {
    transform: translateX(-4px);
}


/* =========================================================
   SUBTLE CARD LIGHT
========================================================= */

.partner-card::after,
.manager-card::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -150px;
    bottom: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.10),
            transparent 68%
        );

    opacity: 0;

    transform: scale(0.7);

    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);

    pointer-events: none;
}

.partner-card:hover::after,
.manager-card:hover::after {
    opacity: 1;
    transform: scale(1.2);
}


/* =========================================================
   PARTNER / MANAGER STAGGER FEEL
========================================================= */

.people-grid .partner-card:nth-child(1),
.people-grid .manager-card:nth-child(1) {
    transition-delay: 0ms;
}

.people-grid .partner-card:nth-child(2),
.people-grid .manager-card:nth-child(2) {
    transition-delay: 20ms;
}

.people-grid .partner-card:nth-child(3),
.people-grid .manager-card:nth-child(3) {
    transition-delay: 40ms;
}

.people-grid .manager-card:nth-child(4) {
    transition-delay: 60ms;
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .partner-card:hover,
    .manager-card:hover {
        transform: none;
        border-color: var(--line);
        box-shadow: var(--shadow-xs);
    }

    .partner-card:hover .partner-portrait img,
    .manager-card:hover .manager-portrait img {
        transform: scale(1);
        filter: none;
    }

    .partner-card:hover .partner-portrait::before,
    .manager-card:hover .manager-portrait::before {
        left: -120%;
    }

    .partner-card:hover .partner-portrait::after,
    .manager-card:hover .manager-portrait::after {
        opacity: 0.65;
    }

    .partner-card:hover .person-card-content {
        transform: none;
    }

    .partner-card:hover h3,
    .manager-card:hover h3,
    .partner-card:hover p,
    .manager-card:hover p {
        transform: none;
    }

    .partner-card:hover .text-link {
        gap: 8px;
    }

    .partner-card:hover .text-link span:last-child {
        transform: none;
    }

    .partner-card:hover::after,
    .manager-card:hover::after {
        opacity: 0;
        transform: scale(0.7);
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .partner-card,
    .manager-card,
    .partner-portrait img,
    .manager-portrait img,
    .partner-portrait::before,
    .manager-portrait::before,
    .partner-portrait::after,
    .manager-portrait::after,
    .partner-card .person-card-content,
    .partner-card .person-label,
    .manager-card .person-label,
    .partner-card h3,
    .manager-card h3,
    .partner-card p,
    .manager-card p,
    .partner-card .text-link,
    .partner-card .text-link span:last-child,
    .partner-card::after,
    .manager-card::after {
        transition: none !important;
    }
}
/* =========================================================
   RESUME - PREMIUM TABLE & MICRO INTERACTIONS
========================================================= */

/* ---------- Resume Wrapper ---------- */

.resume-section {
    position: relative;
}

.resume-table-wrap {
    position: relative;
    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 12px 35px rgba(15, 39, 72, 0.055);

    transition:
        box-shadow 0.35s ease,
        border-color 0.3s ease;
}

.resume-table-wrap:hover {
    border-color: rgba(242, 139, 47, 0.16);

    box-shadow:
        0 20px 48px rgba(15, 39, 72, 0.08);
}


/* =========================================================
   TABLE
========================================================= */

.resume-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;

    direction: rtl;
}


/* ---------- Header ---------- */

.resume-table thead th {
    position: relative;

    padding: 18px 20px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #f3f6f9 100%
        );

    color: var(--blue-900);

    font-size: 13px;
    font-weight: 800;

    text-align: right;

    border-bottom: 1px solid var(--line);

    white-space: nowrap;
}

.resume-table thead th:first-child {
    padding-right: 24px;
}

.resume-table thead th:last-child {
    padding-left: 24px;
}


/* خط نارنجی زیر هدر */

.resume-table thead th::after {
    content: "";

    position: absolute;

    right: 20px;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition:
        width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.resume-table:hover thead th::after {
    width: 38px;
}


/* =========================================================
   TABLE BODY
========================================================= */

.resume-table tbody tr {
    position: relative;

    background: #fff;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.resume-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid rgba(221, 228, 235, 0.72);
}


.resume-table tbody tr:hover {
    background:
        linear-gradient(
            90deg,
            rgba(242, 139, 47, 0.025),
            rgba(15, 39, 72, 0.018)
        );
}


/* ---------- Cells ---------- */

.resume-table tbody td {
    padding: 18px 20px;

    color: #435367;

    font-size: 14px;
    line-height: 1.9;

    vertical-align: middle;

    transition:
        color 0.25s ease,
        transform 0.3s ease;
}

.resume-table tbody td:first-child {
    padding-right: 24px;

    color: var(--blue-900);

    font-weight: 800;
}

.resume-table tbody td:last-child {
    padding-left: 24px;
}


/* =========================================================
   ORGANIZATION / COMPANY NAME
========================================================= */

.resume-table tbody td strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--blue-900);

    font-weight: 800;

    transition:
        color 0.25s ease,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.resume-table tbody tr:hover td strong {
    color: var(--orange-dark);

    transform: translateX(-3px);
}


/* =========================================================
   LOGO / IMAGE
========================================================= */

.resume-table .resume-logo,
.resume-table img {
    width: 42px;
    height: 42px;

    object-fit: contain;

    border-radius: 10px;

    background: #fff;

    border: 1px solid rgba(221, 228, 235, 0.85);

    box-shadow:
        0 5px 14px rgba(15, 39, 72, 0.06);

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.25s ease;
}

.resume-table tbody tr:hover .resume-logo,
.resume-table tbody tr:hover img {
    transform:
        translateY(-2px)
        scale(1.04);

    border-color: rgba(242, 139, 47, 0.20);

    box-shadow:
        0 8px 20px rgba(15, 39, 72, 0.09);
}


/* =========================================================
   CATEGORY / TAG
========================================================= */

.resume-table .category,
.resume-table .resume-category {
    display: inline-flex;
    align-items: center;

    min-height: 30px;

    padding: 5px 11px;

    border-radius: 999px;

    background: rgba(15, 39, 72, 0.055);

    color: var(--blue-800);

    font-size: 12px;
    font-weight: 750;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.resume-table tbody tr:hover .category,
.resume-table tbody tr:hover .resume-category {
    background: rgba(242, 139, 47, 0.10);

    color: var(--orange-dark);

    transform: translateX(-2px);
}


/* =========================================================
   ROW INDICATOR
========================================================= */

.resume-table tbody tr td:first-child {
    position: relative;
}

.resume-table tbody tr td:first-child::before {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 3px;
    height: 0;

    border-radius: 0 4px 4px 0;

    background: var(--orange);

    transform: translateY(-50%);

    transition:
        height 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.resume-table tbody tr:hover td:first-child::before {
    height: 42%;
}


/* =========================================================
   VIEW MORE / TABLE LINKS
========================================================= */

.resume-section .text-link,
.resume-section a {
    transition:
        color 0.25s ease,
        transform 0.28s ease;
}

.resume-section .text-link:hover {
    color: var(--orange-dark);
}


/* =========================================================
   TABLE FOOT AREA
========================================================= */

.resume-table-wrap + .section-action,
.resume-section .section-action {
    margin-top: 24px;
}

.resume-section .section-action .btn {
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        background 0.25s ease;
}

.resume-section .section-action .btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 26px rgba(15, 39, 72, 0.10);
}


/* =========================================================
   DESKTOP DEPTH
========================================================= */

@media (min-width: 1000px) {

    .resume-table tbody tr:hover td {
        color: #3d4c5f;
    }

    .resume-table tbody tr:hover td:first-child {
        transform: translateX(-2px);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .resume-table-wrap {
        border-radius: 18px;

        overflow-x: auto;
        overflow-y: hidden;

        -webkit-overflow-scrolling: touch;
    }

    .resume-table {
        min-width: 760px;
    }

    .resume-table thead th {
        padding: 16px 17px;
    }

    .resume-table tbody td {
        padding: 16px 17px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .resume-table-wrap {
        border-radius: 16px;
    }

    .resume-table {
        min-width: 690px;
    }

    .resume-table thead th {
        font-size: 12px;
        padding: 14px 15px;
    }

    .resume-table tbody td {
        font-size: 13px;
        padding: 14px 15px;
    }

    .resume-table .resume-logo,
    .resume-table img {
        width: 36px;
        height: 36px;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .resume-table-wrap {
        box-shadow:
            0 10px 28px rgba(15, 39, 72, 0.045);
    }

    .resume-table tbody tr:hover {
        background: #fff;
    }

    .resume-table tbody tr:hover td:first-child::before {
        height: 0;
    }

    .resume-table tbody tr:hover td strong {
        transform: none;
        color: var(--blue-900);
    }

    .resume-table tbody tr:hover .resume-logo,
    .resume-table tbody tr:hover img {
        transform: none;
        box-shadow:
            0 5px 14px rgba(15, 39, 72, 0.06);
    }

    .resume-table tbody tr:hover .category,
    .resume-table tbody tr:hover .resume-category {
        transform: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .resume-table-wrap,
    .resume-table thead th::after,
    .resume-table tbody tr,
    .resume-table tbody td,
    .resume-table tbody td strong,
    .resume-table .resume-logo,
    .resume-table img,
    .resume-table .category,
    .resume-table .resume-category,
    .resume-table tbody tr td:first-child::before,
    .resume-section .text-link,
    .resume-section a,
    .resume-section .section-action .btn {
        transition: none !important;
    }
}
/* =========================================================
   DOCUMENTS & DOWNLOADS - PREMIUM FILE UI
========================================================= */

/* =========================================================
   DOWNLOAD / DOCUMENT CARDS
========================================================= */

.document-card,
.download-card,
.checklist-card,
.statement-card,
.assembly-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    border: 1px solid var(--line);
    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 8px 24px rgba(15, 39, 72, 0.045);

    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.document-card:hover,
.download-card:hover,
.checklist-card:hover,
.statement-card:hover,
.assembly-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(242, 139, 47, 0.22);

    box-shadow:
        0 20px 42px rgba(15, 39, 72, 0.09),
        0 5px 16px rgba(242, 139, 47, 0.035);
}


/* =========================================================
   TOP ACCENT LINE
========================================================= */

.document-card::before,
.download-card::before,
.checklist-card::before,
.statement-card::before,
.assembly-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 0;
    height: 3px;

    background: var(--orange);

    border-radius:
        0 0 0 5px;

    transition:
        width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.document-card:hover::before,
.download-card:hover::before,
.checklist-card:hover::before,
.statement-card:hover::before,
.assembly-card:hover::before {
    width: 72px;
}


/* =========================================================
   SOFT BACKGROUND LIGHT
========================================================= */

.document-card::after,
.download-card::after,
.checklist-card::after,
.statement-card::after,
.assembly-card::after {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    right: -145px;
    bottom: -145px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.085),
            transparent 68%
        );

    opacity: 0;

    transform: scale(0.72);

    pointer-events: none;

    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.document-card:hover::after,
.download-card:hover::after,
.checklist-card:hover::after,
.statement-card:hover::after,
.assembly-card:hover::after {
    opacity: 1;
    transform: scale(1.14);
}


/* =========================================================
   DOCUMENT ICON / FILE ICON
========================================================= */

.document-icon,
.download-icon,
.file-icon,
.checklist-icon {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 39, 72, 0.075),
            rgba(15, 39, 72, 0.035)
        );

    color: var(--blue-800);

    border: 1px solid rgba(15, 39, 72, 0.075);

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.3s ease;
}

.document-card:hover .document-icon,
.download-card:hover .download-icon,
.checklist-card:hover .checklist-icon,
.statement-card:hover .file-icon,
.assembly-card:hover .file-icon {
    transform:
        translateY(-3px)
        rotate(-2deg);

    color: var(--orange-dark);

    background:
        rgba(242, 139, 47, 0.085);

    border-color:
        rgba(242, 139, 47, 0.16);

    box-shadow:
        0 8px 18px rgba(242, 139, 47, 0.08);
}


/* =========================================================
   ICON SHINE
========================================================= */

.document-icon::after,
.download-icon::after,
.file-icon::after,
.checklist-icon::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255, 255, 255, 0.65) 50%,
            transparent 80%
        );

    transform: skewX(-18deg);

    transition:
        left 0.6s ease;
}

.document-card:hover .document-icon::after,
.download-card:hover .download-icon::after,
.checklist-card:hover .checklist-icon::after,
.statement-card:hover .file-icon::after,
.assembly-card:hover .file-icon::after {
    left: 135%;
}


/* =========================================================
   DOCUMENT CONTENT
========================================================= */

.document-content,
.download-content,
.checklist-content,
.statement-content,
.assembly-content {
    position: relative;
    z-index: 2;
}


/* =========================================================
   TITLE
========================================================= */

.document-card h3,
.download-card h3,
.checklist-card h3,
.statement-card h3,
.assembly-card h3 {
    transition:
        color 0.25s ease,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.document-card:hover h3,
.download-card:hover h3,
.checklist-card:hover h3,
.statement-card:hover h3,
.assembly-card:hover h3 {
    color: var(--blue-700);

    transform: translateX(-2px);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.document-card p,
.download-card p,
.checklist-card p,
.statement-card p,
.assembly-card p {
    color: #687789;

    transition:
        color 0.25s ease;
}

.document-card:hover p,
.download-card:hover p,
.checklist-card:hover p,
.statement-card:hover p,
.assembly-card:hover p {
    color: #536477;
}


/* =========================================================
   FILE META
========================================================= */

.document-meta,
.file-meta,
.download-meta {
    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 10px;
}

.document-meta span,
.file-meta span,
.download-meta span {
    display: inline-flex;

    align-items: center;

    min-height: 28px;

    padding: 4px 9px;

    border-radius: 999px;

    background:
        rgba(15, 39, 72, 0.055);

    color: #617083;

    font-size: 11px;
    font-weight: 750;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.document-card:hover .document-meta span,
.download-card:hover .download-meta span,
.statement-card:hover .file-meta span,
.assembly-card:hover .file-meta span {
    background:
        rgba(242, 139, 47, 0.08);

    color:
        var(--orange-dark);
}


/* =========================================================
   DOWNLOAD BUTTON
========================================================= */

.document-card .download-btn,
.download-card .download-btn,
.checklist-card .download-btn,
.statement-card .download-btn,
.assembly-card .download-btn,
.file-download,
.document-download {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 42px;

    padding: 10px 16px;

    border-radius: 11px;

    background:
        var(--blue-900);

    color: #fff;

    border: 1px solid var(--blue-900);

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;

    overflow: hidden;

    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.3s ease;
}


/* دکمه هنگام هاور */

.document-card .download-btn:hover,
.download-card .download-btn:hover,
.checklist-card .download-btn:hover,
.statement-card .download-btn:hover,
.assembly-card .download-btn:hover,
.file-download:hover,
.document-download:hover {
    transform: translateY(-2px);

    background:
        var(--orange);

    border-color:
        var(--orange);

    color: #fff;

    box-shadow:
        0 10px 22px rgba(242, 139, 47, 0.19);
}


/* =========================================================
   DOWNLOAD BUTTON SHINE
========================================================= */

.document-card .download-btn::before,
.download-card .download-btn::before,
.checklist-card .download-btn::before,
.statement-card .download-btn::before,
.assembly-card .download-btn::before,
.file-download::before,
.document-download::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 65%;
    height: 100%;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255, 255, 255, 0.22) 50%,
            transparent 80%
        );

    transform: skewX(-18deg);

    transition:
        left 0.6s ease;
}

.document-card .download-btn:hover::before,
.download-card .download-btn:hover::before,
.checklist-card .download-btn:hover::before,
.statement-card .download-btn:hover::before,
.assembly-card .download-btn:hover::before,
.file-download:hover::before,
.document-download:hover::before {
    left: 135%;
}


/* =========================================================
   DOWNLOAD ARROW
========================================================= */

.document-card .download-btn span:last-child,
.download-card .download-btn span:last-child,
.checklist-card .download-btn span:last-child,
.statement-card .download-btn span:last-child,
.assembly-card .download-btn span:last-child,
.file-download span:last-child,
.document-download span:last-child {
    display: inline-block;

    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.document-card .download-btn:hover span:last-child,
.download-card .download-btn:hover span:last-child,
.checklist-card .download-btn:hover span:last-child,
.statement-card .download-btn:hover span:last-child,
.assembly-card .download-btn:hover span:last-child,
.file-download:hover span:last-child,
.document-download:hover span:last-child {
    transform:
        translateY(2px);
}


/* =========================================================
   FILE TYPE BADGE
========================================================= */

.file-type,
.document-type,
.file-extension {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 42px;
    min-height: 24px;

    padding: 3px 7px;

    border-radius: 7px;

    background:
        rgba(242, 139, 47, 0.10);

    color:
        var(--orange-dark);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.04em;

    border: 1px solid
        rgba(242, 139, 47, 0.10);
}


/* =========================================================
   DOCUMENT ROW LAYOUT
========================================================= */

.document-row,
.download-row,
.file-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 18px 20px;

    border: 1px solid var(--line);

    border-radius: 16px;

    background: #fff;

    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s ease,
        box-shadow 0.32s ease;
}

.document-row:hover,
.download-row:hover,
.file-row:hover {
    transform: translateY(-4px);

    border-color:
        rgba(242, 139, 47, 0.18);

    box-shadow:
        0 14px 32px rgba(15, 39, 72, 0.07);
}


/* =========================================================
   DOCUMENT ROW INFO
========================================================= */

.document-row-info,
.download-row-info,
.file-row-info {
    display: flex;

    align-items: center;

    gap: 14px;

    min-width: 0;
}

.document-row-title,
.download-row-title,
.file-row-title {
    min-width: 0;
}

.document-row-title h3,
.download-row-title h3,
.file-row-title h3 {
    margin: 0;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    color: var(--blue-900);

    font-size: 14px;
    font-weight: 800;
}

.document-row-title p,
.download-row-title p,
.file-row-title p {
    margin: 4px 0 0;

    color: #7a8795;

    font-size: 11px;
}


/* =========================================================
   DOWNLOAD AREA
========================================================= */

.document-row-action,
.download-row-action,
.file-row-action {
    flex: 0 0 auto;
}


/* =========================================================
   SECTION DOWNLOAD LINK
========================================================= */

.documents-section .section-action .text-link,
.downloads-section .section-action .text-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-weight: 800;

    transition:
        color 0.25s ease,
        gap 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.documents-section .section-action .text-link:hover,
.downloads-section .section-action .text-link:hover {
    color: var(--orange-dark);

    gap: 12px;
}


/* =========================================================
   CATEGORY HEADER
========================================================= */

.document-category,
.download-category,
.file-category {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 16px;
}

.document-category h3,
.download-category h3,
.file-category h3 {
    margin: 0;

    color: var(--blue-900);

    font-size: 16px;
    font-weight: 850;
}

.document-category span,
.download-category span,
.file-category span {
    color: #7b8794;

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .document-card,
    .download-card,
    .checklist-card,
    .statement-card,
    .assembly-card {
        border-radius: 16px;
    }

    .document-icon,
    .download-icon,
    .file-icon,
    .checklist-icon {
        width: 46px;
        height: 46px;

        flex-basis: 46px;

        border-radius: 12px;
    }

    .document-row,
    .download-row,
    .file-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 14px;

        padding: 16px;
    }

    .document-row-info,
    .download-row-info,
    .file-row-info {
        width: 100%;
    }

    .document-row-action,
    .download-row-action,
    .file-row-action {
        width: 100%;
    }

    .document-row-action .download-btn,
    .download-row-action .download-btn,
    .file-row-action .download-btn {
        width: 100%;
    }

    .document-row-title h3,
    .download-row-title h3,
    .file-row-title h3 {
        white-space: normal;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .document-card:hover,
    .download-card:hover,
    .checklist-card:hover,
    .statement-card:hover,
    .assembly-card:hover,
    .document-row:hover,
    .download-row:hover,
    .file-row:hover {
        transform: none;

        box-shadow:
            0 8px 24px rgba(15, 39, 72, 0.045);
    }

    .document-card:hover::before,
    .download-card:hover::before,
    .checklist-card:hover::before,
    .statement-card:hover::before,
    .assembly-card:hover::before {
        width: 0;
    }

    .document-card:hover::after,
    .download-card:hover::after,
    .checklist-card:hover::after,
    .statement-card:hover::after,
    .assembly-card:hover::after {
        opacity: 0;
    }

    .document-card:hover .document-icon,
    .download-card:hover .download-icon,
    .checklist-card:hover .checklist-icon,
    .statement-card:hover .file-icon,
    .assembly-card:hover .file-icon {
        transform: none;
    }

    .document-card .download-btn:hover,
    .download-card .download-btn:hover,
    .checklist-card .download-btn:hover,
    .statement-card .download-btn:hover,
    .assembly-card .download-btn:hover,
    .file-download:hover,
    .document-download:hover {
        transform: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .document-card,
    .download-card,
    .checklist-card,
    .statement-card,
    .assembly-card,
    .document-card::before,
    .download-card::before,
    .checklist-card::before,
    .statement-card::before,
    .assembly-card::before,
    .document-card::after,
    .download-card::after,
    .checklist-card::after,
    .statement-card::after,
    .assembly-card::after,
    .document-icon,
    .download-icon,
    .file-icon,
    .checklist-icon,
    .document-icon::after,
    .download-icon::after,
    .file-icon::after,
    .checklist-icon::after,
    .document-card h3,
    .download-card h3,
    .checklist-card h3,
    .statement-card h3,
    .assembly-card h3,
    .document-card p,
    .download-card p,
    .checklist-card p,
    .statement-card p,
    .assembly-card p,
    .document-meta span,
    .file-meta span,
    .download-meta span,
    .download-btn,
    .file-download,
    .document-download,
    .document-row,
    .download-row,
    .file-row {
        transition: none !important;
    }
}
/* =========================================================
   DOCUMENTS & DOWNLOADS - PREMIUM FILE UI
========================================================= */

/* =========================================================
   DOWNLOAD / DOCUMENT CARDS
========================================================= */

.document-card,
.download-card,
.checklist-card,
.statement-card,
.assembly-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    border: 1px solid var(--line);
    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 8px 24px rgba(15, 39, 72, 0.045);

    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.document-card:hover,
.download-card:hover,
.checklist-card:hover,
.statement-card:hover,
.assembly-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(242, 139, 47, 0.22);

    box-shadow:
        0 20px 42px rgba(15, 39, 72, 0.09),
        0 5px 16px rgba(242, 139, 47, 0.035);
}


/* =========================================================
   TOP ACCENT LINE
========================================================= */

.document-card::before,
.download-card::before,
.checklist-card::before,
.statement-card::before,
.assembly-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 0;
    height: 3px;

    background: var(--orange);

    border-radius:
        0 0 0 5px;

    transition:
        width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.document-card:hover::before,
.download-card:hover::before,
.checklist-card:hover::before,
.statement-card:hover::before,
.assembly-card:hover::before {
    width: 72px;
}


/* =========================================================
   SOFT BACKGROUND LIGHT
========================================================= */

.document-card::after,
.download-card::after,
.checklist-card::after,
.statement-card::after,
.assembly-card::after {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    right: -145px;
    bottom: -145px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.085),
            transparent 68%
        );

    opacity: 0;

    transform: scale(0.72);

    pointer-events: none;

    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.document-card:hover::after,
.download-card:hover::after,
.checklist-card:hover::after,
.statement-card:hover::after,
.assembly-card:hover::after {
    opacity: 1;
    transform: scale(1.14);
}


/* =========================================================
   DOCUMENT ICON / FILE ICON
========================================================= */

.document-icon,
.download-icon,
.file-icon,
.checklist-icon {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 39, 72, 0.075),
            rgba(15, 39, 72, 0.035)
        );

    color: var(--blue-800);

    border: 1px solid rgba(15, 39, 72, 0.075);

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.3s ease;
}

.document-card:hover .document-icon,
.download-card:hover .download-icon,
.checklist-card:hover .checklist-icon,
.statement-card:hover .file-icon,
.assembly-card:hover .file-icon {
    transform:
        translateY(-3px)
        rotate(-2deg);

    color: var(--orange-dark);

    background:
        rgba(242, 139, 47, 0.085);

    border-color:
        rgba(242, 139, 47, 0.16);

    box-shadow:
        0 8px 18px rgba(242, 139, 47, 0.08);
}


/* =========================================================
   ICON SHINE
========================================================= */

.document-icon::after,
.download-icon::after,
.file-icon::after,
.checklist-icon::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255, 255, 255, 0.65) 50%,
            transparent 80%
        );

    transform: skewX(-18deg);

    transition:
        left 0.6s ease;
}

.document-card:hover .document-icon::after,
.download-card:hover .download-icon::after,
.checklist-card:hover .checklist-icon::after,
.statement-card:hover .file-icon::after,
.assembly-card:hover .file-icon::after {
    left: 135%;
}


/* =========================================================
   DOCUMENT CONTENT
========================================================= */

.document-content,
.download-content,
.checklist-content,
.statement-content,
.assembly-content {
    position: relative;
    z-index: 2;
}


/* =========================================================
   TITLE
========================================================= */

.document-card h3,
.download-card h3,
.checklist-card h3,
.statement-card h3,
.assembly-card h3 {
    transition:
        color 0.25s ease,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.document-card:hover h3,
.download-card:hover h3,
.checklist-card:hover h3,
.statement-card:hover h3,
.assembly-card:hover h3 {
    color: var(--blue-700);

    transform: translateX(-2px);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.document-card p,
.download-card p,
.checklist-card p,
.statement-card p,
.assembly-card p {
    color: #687789;

    transition:
        color 0.25s ease;
}

.document-card:hover p,
.download-card:hover p,
.checklist-card:hover p,
.statement-card:hover p,
.assembly-card:hover p {
    color: #536477;
}


/* =========================================================
   FILE META
========================================================= */

.document-meta,
.file-meta,
.download-meta {
    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 10px;
}

.document-meta span,
.file-meta span,
.download-meta span {
    display: inline-flex;

    align-items: center;

    min-height: 28px;

    padding: 4px 9px;

    border-radius: 999px;

    background:
        rgba(15, 39, 72, 0.055);

    color: #617083;

    font-size: 11px;
    font-weight: 750;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.document-card:hover .document-meta span,
.download-card:hover .download-meta span,
.statement-card:hover .file-meta span,
.assembly-card:hover .file-meta span {
    background:
        rgba(242, 139, 47, 0.08);

    color:
        var(--orange-dark);
}


/* =========================================================
   DOWNLOAD BUTTON
========================================================= */

.document-card .download-btn,
.download-card .download-btn,
.checklist-card .download-btn,
.statement-card .download-btn,
.assembly-card .download-btn,
.file-download,
.document-download {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 42px;

    padding: 10px 16px;

    border-radius: 11px;

    background:
        var(--blue-900);

    color: #fff;

    border: 1px solid var(--blue-900);

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;

    overflow: hidden;

    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.3s ease;
}


/* دکمه هنگام هاور */

.document-card .download-btn:hover,
.download-card .download-btn:hover,
.checklist-card .download-btn:hover,
.statement-card .download-btn:hover,
.assembly-card .download-btn:hover,
.file-download:hover,
.document-download:hover {
    transform: translateY(-2px);

    background:
        var(--orange);

    border-color:
        var(--orange);

    color: #fff;

    box-shadow:
        0 10px 22px rgba(242, 139, 47, 0.19);
}


/* =========================================================
   DOWNLOAD BUTTON SHINE
========================================================= */

.document-card .download-btn::before,
.download-card .download-btn::before,
.checklist-card .download-btn::before,
.statement-card .download-btn::before,
.assembly-card .download-btn::before,
.file-download::before,
.document-download::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 65%;
    height: 100%;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255, 255, 255, 0.22) 50%,
            transparent 80%
        );

    transform: skewX(-18deg);

    transition:
        left 0.6s ease;
}

.document-card .download-btn:hover::before,
.download-card .download-btn:hover::before,
.checklist-card .download-btn:hover::before,
.statement-card .download-btn:hover::before,
.assembly-card .download-btn:hover::before,
.file-download:hover::before,
.document-download:hover::before {
    left: 135%;
}


/* =========================================================
   DOWNLOAD ARROW
========================================================= */

.document-card .download-btn span:last-child,
.download-card .download-btn span:last-child,
.checklist-card .download-btn span:last-child,
.statement-card .download-btn span:last-child,
.assembly-card .download-btn span:last-child,
.file-download span:last-child,
.document-download span:last-child {
    display: inline-block;

    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.document-card .download-btn:hover span:last-child,
.download-card .download-btn:hover span:last-child,
.checklist-card .download-btn:hover span:last-child,
.statement-card .download-btn:hover span:last-child,
.assembly-card .download-btn:hover span:last-child,
.file-download:hover span:last-child,
.document-download:hover span:last-child {
    transform:
        translateY(2px);
}


/* =========================================================
   FILE TYPE BADGE
========================================================= */

.file-type,
.document-type,
.file-extension {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 42px;
    min-height: 24px;

    padding: 3px 7px;

    border-radius: 7px;

    background:
        rgba(242, 139, 47, 0.10);

    color:
        var(--orange-dark);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.04em;

    border: 1px solid
        rgba(242, 139, 47, 0.10);
}


/* =========================================================
   DOCUMENT ROW LAYOUT
========================================================= */

.document-row,
.download-row,
.file-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 18px 20px;

    border: 1px solid var(--line);

    border-radius: 16px;

    background: #fff;

    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s ease,
        box-shadow 0.32s ease;
}

.document-row:hover,
.download-row:hover,
.file-row:hover {
    transform: translateY(-4px);

    border-color:
        rgba(242, 139, 47, 0.18);

    box-shadow:
        0 14px 32px rgba(15, 39, 72, 0.07);
}


/* =========================================================
   DOCUMENT ROW INFO
========================================================= */

.document-row-info,
.download-row-info,
.file-row-info {
    display: flex;

    align-items: center;

    gap: 14px;

    min-width: 0;
}

.document-row-title,
.download-row-title,
.file-row-title {
    min-width: 0;
}

.document-row-title h3,
.download-row-title h3,
.file-row-title h3 {
    margin: 0;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    color: var(--blue-900);

    font-size: 14px;
    font-weight: 800;
}

.document-row-title p,
.download-row-title p,
.file-row-title p {
    margin: 4px 0 0;

    color: #7a8795;

    font-size: 11px;
}


/* =========================================================
   DOWNLOAD AREA
========================================================= */

.document-row-action,
.download-row-action,
.file-row-action {
    flex: 0 0 auto;
}


/* =========================================================
   SECTION DOWNLOAD LINK
========================================================= */

.documents-section .section-action .text-link,
.downloads-section .section-action .text-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-weight: 800;

    transition:
        color 0.25s ease,
        gap 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.documents-section .section-action .text-link:hover,
.downloads-section .section-action .text-link:hover {
    color: var(--orange-dark);

    gap: 12px;
}


/* =========================================================
   CATEGORY HEADER
========================================================= */

.document-category,
.download-category,
.file-category {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 16px;
}

.document-category h3,
.download-category h3,
.file-category h3 {
    margin: 0;

    color: var(--blue-900);

    font-size: 16px;
    font-weight: 850;
}

.document-category span,
.download-category span,
.file-category span {
    color: #7b8794;

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .document-card,
    .download-card,
    .checklist-card,
    .statement-card,
    .assembly-card {
        border-radius: 16px;
    }

    .document-icon,
    .download-icon,
    .file-icon,
    .checklist-icon {
        width: 46px;
        height: 46px;

        flex-basis: 46px;

        border-radius: 12px;
    }

    .document-row,
    .download-row,
    .file-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 14px;

        padding: 16px;
    }

    .document-row-info,
    .download-row-info,
    .file-row-info {
        width: 100%;
    }

    .document-row-action,
    .download-row-action,
    .file-row-action {
        width: 100%;
    }

    .document-row-action .download-btn,
    .download-row-action .download-btn,
    .file-row-action .download-btn {
        width: 100%;
    }

    .document-row-title h3,
    .download-row-title h3,
    .file-row-title h3 {
        white-space: normal;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .document-card:hover,
    .download-card:hover,
    .checklist-card:hover,
    .statement-card:hover,
    .assembly-card:hover,
    .document-row:hover,
    .download-row:hover,
    .file-row:hover {
        transform: none;

        box-shadow:
            0 8px 24px rgba(15, 39, 72, 0.045);
    }

    .document-card:hover::before,
    .download-card:hover::before,
    .checklist-card:hover::before,
    .statement-card:hover::before,
    .assembly-card:hover::before {
        width: 0;
    }

    .document-card:hover::after,
    .download-card:hover::after,
    .checklist-card:hover::after,
    .statement-card:hover::after,
    .assembly-card:hover::after {
        opacity: 0;
    }

    .document-card:hover .document-icon,
    .download-card:hover .download-icon,
    .checklist-card:hover .checklist-icon,
    .statement-card:hover .file-icon,
    .assembly-card:hover .file-icon {
        transform: none;
    }

    .document-card .download-btn:hover,
    .download-card .download-btn:hover,
    .checklist-card .download-btn:hover,
    .statement-card .download-btn:hover,
    .assembly-card .download-btn:hover,
    .file-download:hover,
    .document-download:hover {
        transform: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .document-card,
    .download-card,
    .checklist-card,
    .statement-card,
    .assembly-card,
    .document-card::before,
    .download-card::before,
    .checklist-card::before,
    .statement-card::before,
    .assembly-card::before,
    .document-card::after,
    .download-card::after,
    .checklist-card::after,
    .statement-card::after,
    .assembly-card::after,
    .document-icon,
    .download-icon,
    .file-icon,
    .checklist-icon,
    .document-icon::after,
    .download-icon::after,
    .file-icon::after,
    .checklist-icon::after,
    .document-card h3,
    .download-card h3,
    .checklist-card h3,
    .statement-card h3,
    .assembly-card h3,
    .document-card p,
    .download-card p,
    .checklist-card p,
    .statement-card p,
    .assembly-card p,
    .document-meta span,
    .file-meta span,
    .download-meta span,
    .download-btn,
    .file-download,
    .document-download,
    .document-row,
    .download-row,
    .file-row {
        transition: none !important;
    }
}
/* =========================================================
   FOOTER - PREMIUM CORPORATE FINISH
========================================================= */

/* =========================================================
   MAIN FOOTER
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;

    margin-top: 90px;

    background:
        linear-gradient(
            145deg,
            #091d35 0%,
            #0d2948 52%,
            #102f50 100%
        );

    color: rgba(255, 255, 255, 0.82);

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}


/* =========================================================
   FOOTER GLOW
========================================================= */

.site-footer::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -220px;
    right: -170px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.13),
            transparent 68%
        );

    pointer-events: none;
}

.site-footer::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    left: -190px;
    bottom: -230px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(70, 130, 190, 0.11),
            transparent 68%
        );

    pointer-events: none;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.site-footer .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   FOOTER TOP
========================================================= */

.footer-top {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.5fr)
        repeat(3, minmax(150px, 1fr));

    gap: 48px;

    padding:
        62px 0 48px;
}


/* =========================================================
   BRAND COLUMN
========================================================= */

.footer-brand {
    max-width: 390px;
}

.footer-brand .brand-mark,
.footer-brand .footer-logo {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-brand .brand-mark:hover,
.footer-brand .footer-logo:hover {
    transform:
        translateY(-3px);
}

.footer-brand h2,
.footer-brand h3 {
    margin: 0 0 12px;

    color: #fff;

    font-size: 18px;
    line-height: 1.7;

    font-weight: 850;
}

.footer-brand p {
    margin: 0;

    max-width: 370px;

    color:
        rgba(255, 255, 255, 0.66);

    font-size: 13px;

    line-height: 2.05;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-col h4 {
    position: relative;

    display: inline-block;

    margin: 3px 0 18px;

    color: #fff;

    font-size: 13px;
    font-weight: 850;
}

.footer-col h4::after {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    margin-top: 9px;

    border-radius: 99px;

    background:
        var(--orange);
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-col ul {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-col li {
    margin: 0;
    padding: 0;
}

.footer-col a {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color:
        rgba(255, 255, 255, 0.63);

    font-size: 12px;

    line-height: 1.8;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        gap 0.28s ease;
}

.footer-col a::before {
    content: "";

    width: 0;
    height: 2px;

    border-radius: 99px;

    background:
        var(--orange);

    transition:
        width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-col a:hover {
    color: #fff;

    transform:
        translateX(-3px);

    gap: 8px;
}

.footer-col a:hover::before {
    width: 10px;
}


/* =========================================================
   CONTACT COLUMN
========================================================= */

.footer-contact-list {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 12px;

    line-height: 1.9;
}

.footer-contact-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.055);

    color:
        rgba(255, 255, 255, 0.83);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.28s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background:
        rgba(242, 139, 47, 0.14);

    color:
        var(--orange);

    transform:
        translateY(-2px);
}


/* =========================================================
   CONTACT LINKS
========================================================= */

.footer-contact-item a {
    color:
        rgba(255, 255, 255, 0.68);

    text-decoration: none;

    transition:
        color 0.25s ease;
}

.footer-contact-item a:hover {
    color:
        #fff;
}


/* =========================================================
   FOOTER DIVIDER
========================================================= */

.footer-bottom {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        20px 0 24px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer-copyright {
    color:
        rgba(255, 255, 255, 0.50);

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   LEGAL / SECONDARY LINKS
========================================================= */

.footer-legal {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 16px;
}

.footer-legal a {
    color:
        rgba(255, 255, 255, 0.48);

    font-size: 11px;

    text-decoration: none;

    transition:
        color 0.25s ease;
}

.footer-legal a:hover {
    color:
        rgba(255, 255, 255, 0.92);
}


/* =========================================================
   BRAND CREDIT / POWERED
========================================================= */

.footer-credit {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 10px;
}

.footer-credit strong {
    color:
        rgba(255, 255, 255, 0.67);

    font-weight: 800;
}


/* =========================================================
   FOOTER CTA
========================================================= */

.footer-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 43px;

    padding:
        10px 16px;

    margin-top: 18px;

    border:
        1px solid rgba(242, 139, 47, 0.38);

    border-radius: 11px;

    background:
        rgba(242, 139, 47, 0.09);

    color:
        #fff;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.3s ease;
}

.footer-cta:hover {
    transform:
        translateY(-3px);

    background:
        var(--orange);

    border-color:
        var(--orange);

    color:
        #fff;

    box-shadow:
        0 12px 26px rgba(242, 139, 47, 0.18);
}


/* =========================================================
   PREMIUM TOP BORDER
========================================================= */

.site-footer .footer-top::before {
    content: "";

    position: absolute;

    top: -1px;
    right: 0;

    width: 78px;
    height: 2px;

    background:
        var(--orange);

    border-radius:
        0 0 0 4px;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1000px) {

    .footer-top {
        grid-template-columns:
            1.2fr
            1fr
            1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column:
            1 / -1;

        max-width:
            600px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 700px) {

    .site-footer {
        margin-top: 65px;
    }

    .footer-top {
        grid-template-columns:
            1fr 1fr;

        gap:
            34px 24px;

        padding:
            45px 0 35px;
    }

    .footer-brand {
        grid-column:
            1 / -1;
    }

    .footer-brand h2,
    .footer-brand h3 {
        font-size: 16px;
    }

    .footer-brand p {
        font-size: 12px;
    }

    .footer-bottom {
        align-items:
            flex-start;

        flex-direction:
            column;

        padding:
            18px 0 22px;
    }

    .footer-legal {
        gap:
            10px 14px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .footer-top {
        grid-template-columns:
            1fr;

        gap:
            28px;
    }

    .footer-col {
        max-width:
            290px;
    }

    .footer-col h4 {
        margin-bottom:
            14px;
    }

    .footer-cta {
        width:
            100%;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .footer-brand .brand-mark:hover,
    .footer-brand .footer-logo:hover,
    .footer-col a:hover,
    .footer-contact-item:hover .footer-contact-icon,
    .footer-cta:hover {
        transform: none;
    }

    .footer-col a:hover {
        gap: 6px;
        color:
            rgba(255, 255, 255, 0.63);
    }

    .footer-col a:hover::before {
        width: 0;
    }

    .footer-contact-item:hover .footer-contact-icon {
        background:
            rgba(255, 255, 255, 0.055);

        color:
            rgba(255, 255, 255, 0.83);
    }

    .footer-cta:hover {
        background:
            rgba(242, 139, 47, 0.09);

        border-color:
            rgba(242, 139, 47, 0.38);

        box-shadow: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .site-footer *,
    .site-footer *,
    .footer-brand .brand-mark,
    .footer-brand .footer-logo,
    .footer-col a,
    .footer-col a::before,
    .footer-contact-icon,
    .footer-contact-item a,
    .footer-legal a,
    .footer-cta {
        transition: none !important;
    }
}
/* =========================================================
   SERVICE DETAIL PAGE
   PREMIUM CORPORATE SERVICE VIEW
========================================================= */

.service-detail-page {
    position: relative;

    padding:
        150px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 46%,
            #f8fafc 100%
        );
}


.service-detail-container {
    width:
        min(1180px, calc(100% - 64px));

    margin:
        0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.service-breadcrumb {
    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 28px;

    color:
        #7b8795;

    font-size: 11px;
    font-weight: 700;
}

.service-breadcrumb a {
    color:
        #6e7c8c;

    text-decoration: none;

    transition:
        color 0.25s ease;
}

.service-breadcrumb a:hover {
    color:
        var(--orange-dark);
}

.service-breadcrumb strong {
    color:
        var(--blue-900);

    font-weight: 800;
}


/* =========================================================
   DETAIL HERO
========================================================= */

.service-detail-hero {
    position: relative;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 35px;

    overflow: hidden;

    min-height: 270px;

    padding:
        48px 50px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7fafc 100%
        );

    box-shadow:
        0 16px 45px rgba(15, 39, 72, 0.055);
}


/* Decorative grid */

.service-detail-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(15, 39, 72, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 39, 72, 0.035) 1px,
            transparent 1px
        );

    background-size:
        34px 34px;

    mask-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.85),
            transparent 82%
        );

    pointer-events: none;
}


/* Orange glow */

.service-detail-hero::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -130px;
    top: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.13),
            transparent 68%
        );

    pointer-events: none;
}


.service-detail-hero-content {
    position: relative;

    z-index: 2;

    max-width:
        760px;
}


.service-detail-hero .section-kicker {
    margin-bottom:
        14px;
}


.service-detail-hero h1 {
    margin:
        0;

    max-width:
        760px;

    color:
        var(--blue-950);

    font-size:
        clamp(32px, 4vw, 54px);

    line-height:
        1.35;

    font-weight:
        900;

    letter-spacing:
        -0.02em;
}


.service-detail-lead {
    max-width:
        720px;

    margin:
        18px 0 0;

    color:
        #647486;

    font-size:
        15px;

    line-height:
        2.15;
}


/* =========================================================
   HERO BRAND MARK
========================================================= */

.service-detail-number {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    justify-content: center;

    flex:
        0 0 auto;

    color:
        var(--blue-900);
}


.service-detail-number span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 92px;
    height: 92px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            var(--blue-900),
            var(--blue-700)
        );

    color:
        #fff;

    font-size:
        25px;

    font-weight:
        900;

    letter-spacing:
        0.04em;

    box-shadow:
        0 16px 30px rgba(15, 39, 72, 0.16);
}


.service-detail-number small {
    margin-top:
        10px;

    color:
        #8793a1;

    font-size:
        8px;

    font-weight:
        850;

    letter-spacing:
        0.14em;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.service-detail-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        310px;

    align-items:
        start;

    gap:
        34px;

    margin-top:
        34px;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.service-detail-content {
    position: relative;

    min-width:
        0;

    padding:
        38px 40px;

    border:
        1px solid var(--line);

    border-radius:
        22px;

    background:
        #fff;

    box-shadow:
        0 10px 30px rgba(15, 39, 72, 0.04);
}


.service-content-header {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom:
        28px;
}


.service-content-label {
    flex:
        0 0 auto;

    color:
        var(--blue-900);

    font-size:
        12px;

    font-weight:
        850;
}


.service-content-line {
    height:
        1px;

    flex:
        1;

    background:
        linear-gradient(
            90deg,
            rgba(15, 39, 72, 0.10),
            transparent
        );
}


/* =========================================================
   RICHTEXT
========================================================= */

.service-richtext {
    color:
        #4f5f70;

    font-size:
        14px;

    line-height:
        2.15;
}


.service-richtext h2 {
    margin:
        32px 0 12px;

    color:
        var(--blue-900);

    font-size:
        22px;

    line-height:
        1.7;

    font-weight:
        850;
}


.service-richtext h3 {
    margin:
        26px 0 10px;

    color:
        var(--blue-900);

    font-size:
        18px;

    line-height:
        1.75;

    font-weight:
        850;
}


.service-richtext p {
    margin:
        0 0 18px;
}


.service-richtext strong {
    color:
        var(--blue-900);

    font-weight:
        850;
}


.service-richtext ul,
.service-richtext ol {
    margin:
        16px 0 22px;

    padding-right:
        22px;
}


.service-richtext li {
    margin-bottom:
        9px;
}


.service-richtext li::marker {
    color:
        var(--orange);
}


.service-richtext a {
    color:
        var(--blue-700);

    font-weight:
        750;

    transition:
        color 0.25s ease;
}

.service-richtext a:hover {
    color:
        var(--orange-dark);
}


.service-richtext blockquote {
    margin:
        28px 0;

    padding:
        19px 22px;

    border-right:
        3px solid var(--orange);

    border-radius:
        0 12px 12px 0;

    background:
        rgba(242, 139, 47, 0.055);

    color:
        var(--blue-800);
}


/* =========================================================
   SIDEBAR
========================================================= */

.service-detail-sidebar {
    display:
        flex;

    flex-direction:
        column;

    gap:
        16px;

    position:
        sticky;

    top:
        105px;
}


.service-sidebar-card {
    position:
        relative;

    overflow:
        hidden;

    padding:
        28px 26px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        20px;

    background:
        linear-gradient(
            145deg,
            var(--blue-900),
            #143b62
        );

    color:
        #fff;

    box-shadow:
        0 16px 34px rgba(15, 39, 72, 0.12);
}


.service-sidebar-card::after {
    content: "";

    position: absolute;

    width:
        180px;

    height:
        180px;

    right:
        -95px;

    bottom:
        -105px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.20),
            transparent 68%
        );
}


.service-sidebar-kicker {
    position:
        relative;

    z-index:
        2;

    display:
        block;

    margin-bottom:
        10px;

    color:
        rgba(255,255,255,0.56);

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        0.05em;
}


.service-sidebar-card h2 {
    position:
        relative;

    z-index:
        2;

    margin:
        0;

    color:
        #fff;

    font-size:
        20px;

    line-height:
        1.65;

    font-weight:
        850;
}


.service-sidebar-card p {
    position:
        relative;

    z-index:
        2;

    margin:
        12px 0 20px;

    color:
        rgba(255,255,255,0.68);

    font-size:
        12px;

    line-height:
        2;
}


/* =========================================================
   SIDEBAR BUTTON
========================================================= */

.service-sidebar-button {
    position:
        relative;

    z-index:
        3;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        12px;

    min-height:
        44px;

    padding:
        11px 13px;

    border:
        1px solid rgba(255,255,255,0.14);

    border-radius:
        11px;

    background:
        rgba(255,255,255,0.07);

    color:
        #fff;

    font-size:
        11px;

    font-weight:
        800;

    text-decoration:
        none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.3s cubic-bezier(0.22,1,0.36,1);
}


.service-sidebar-button:hover {
    transform:
        translateY(-2px);

    background:
        var(--orange);

    border-color:
        var(--orange);
}


.service-sidebar-button span:last-child {
    transition:
        transform 0.28s ease;
}


.service-sidebar-button:hover span:last-child {
    transform:
        translateX(-4px);
}


/* =========================================================
   MINI BRAND CARD
========================================================= */

.service-sidebar-mini {
    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    padding:
        15px;

    border:
        1px solid var(--line);

    border-radius:
        16px;

    background:
        #fff;
}


.service-mini-mark {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex:
        0 0 42px;

    width:
        42px;

    height:
        42px;

    border-radius:
        11px;

    background:
        rgba(15, 39, 72, 0.065);

    color:
        var(--blue-900);

    font-size:
        11px;

    font-weight:
        900;
}


.service-sidebar-mini div {
    display:
        flex;

    flex-direction:
        column;

    gap:
        3px;

    min-width:
        0;
}


.service-sidebar-mini strong {
    color:
        var(--blue-900);

    font-size:
        12px;

    font-weight:
        850;
}


.service-sidebar-mini span {
    color:
        #7b8795;

    font-size:
        10px;

    line-height:
        1.7;
}


/* =========================================================
   BOTTOM NAVIGATION
========================================================= */

.service-detail-bottom {
    display:
        flex;

    justify-content:
        flex-start;

    margin-top:
        28px;
}


.service-back-link {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    color:
        var(--blue-800);

    font-size:
        12px;

    font-weight:
        850;

    text-decoration:
        none;

    transition:
        color 0.25s ease,
        gap 0.28s cubic-bezier(0.22,1,0.36,1);
}


.service-back-link:hover {
    color:
        var(--orange-dark);

    gap:
        13px;
}


.service-back-link span:first-child {
    transition:
        transform 0.28s cubic-bezier(0.22,1,0.36,1);
}


.service-back-link:hover span:first-child {
    transform:
        translateX(4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .service-detail-layout {
        grid-template-columns:
            1fr;
    }

    .service-detail-sidebar {
        position:
            static;

        display:
            grid;

        grid-template-columns:
            1fr 1fr;
    }
}


@media (max-width: 700px) {

    .service-detail-page {
        padding:
            120px 0 70px;
    }

    .service-detail-container {
        width:
            calc(100% - 32px);
    }

    .service-detail-hero {
        flex-direction:
            column;

        align-items:
            flex-start;

        padding:
            31px 24px;

        min-height:
            auto;

        border-radius:
            20px;
    }

    .service-detail-hero h1 {
        font-size:
            30px;
    }

    .service-detail-lead {
        font-size:
            13px;
    }

    .service-detail-number {
        align-items:
            flex-start;
    }

    .service-detail-number span {
        width:
            68px;

        height:
            68px;

        border-radius:
            17px;

        font-size:
            20px;
    }

    .service-detail-number small {
        font-size:
            7px;
    }

    .service-detail-content {
        padding:
            26px 20px;

        border-radius:
            18px;
    }

    .service-richtext {
        font-size:
            13px;

        line-height:
            2.05;
    }

    .service-richtext h2 {
        font-size:
            19px;
    }

    .service-richtext h3 {
        font-size:
            16px;
    }

    .service-detail-sidebar {
        grid-template-columns:
            1fr;
    }
}


@media (max-width: 480px) {

    .service-detail-page {
        padding-top:
            105px;
    }

    .service-breadcrumb {
        margin-bottom:
            20px;

        gap:
            6px;

        font-size:
            10px;
    }

    .service-detail-hero {
        padding:
            25px 19px;
    }

    .service-detail-hero h1 {
        font-size:
            26px;
    }

    .service-detail-content {
        padding:
            22px 17px;
    }

    .service-sidebar-card {
        padding:
            23px 20px;
    }
}


/* =========================================================
   TOUCH
========================================================= */

@media (hover: none) {

    .service-sidebar-button:hover {
        transform:
            none;

        background:
            rgba(255,255,255,0.07);

        border-color:
            rgba(255,255,255,0.14);
    }

    .service-sidebar-button:hover span:last-child {
        transform:
            none;
    }

    .service-back-link:hover {
        gap:
            9px;

        color:
            var(--blue-800);
    }

    .service-back-link:hover span:first-child {
        transform:
            none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .service-breadcrumb a,
    .service-sidebar-button,
    .service-sidebar-button span:last-child,
    .service-back-link,
    .service-back-link span:first-child {
        transition:
            none !important;
    }
}
/* =========================================================
   ARTICLE DETAIL PAGE
   PREMIUM EDITORIAL LAYOUT
========================================================= */

.article-detail-page {
    position: relative;

    padding:
        150px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 48%,
            #f8fafc 100%
        );
}


.article-detail-container {
    width:
        min(1180px, calc(100% - 64px));

    margin:
        0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.article-detail-breadcrumb {
    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-bottom:
        28px;

    color:
        #7b8795;

    font-size:
        11px;

    font-weight:
        700;
}

.article-detail-breadcrumb a {
    color:
        #6d7b8b;

    text-decoration:
        none;

    transition:
        color 0.25s ease;
}

.article-detail-breadcrumb a:hover {
    color:
        var(--orange-dark);
}

.article-detail-breadcrumb strong {
    color:
        var(--blue-900);

    font-weight:
        800;
}


/* =========================================================
   ARTICLE HEADER
========================================================= */

.article-detail-header {
    position:
        relative;

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        35px;

    overflow:
        hidden;

    min-height:
        300px;

    padding:
        50px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        28px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6f9fb 100%
        );

    box-shadow:
        0 17px 46px rgba(15, 39, 72, 0.055);
}


/* Grid */

.article-detail-header::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        );

    background-size:
        34px 34px;

    mask-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.9),
            transparent 84%
        );

    pointer-events:
        none;
}


/* Orange glow */

.article-detail-header::after {
    content:
        "";

    position:
        absolute;

    width:
        310px;

    height:
        310px;

    right:
        -135px;

    top:
        -160px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.12),
            transparent 68%
        );

    pointer-events:
        none;
}


.article-detail-header-main {
    position:
        relative;

    z-index:
        2;

    max-width:
        800px;
}


.article-detail-kicker {
    display:
        inline-flex;

    align-items:
        center;

    min-height:
        28px;

    padding:
        5px 11px;

    margin-bottom:
        16px;

    border:
        1px solid rgba(242, 139, 47, 0.14);

    border-radius:
        999px;

    background:
        rgba(242, 139, 47, 0.07);

    color:
        var(--orange-dark);

    font-size:
        10px;

    font-weight:
        850;
}


.article-detail-header h1 {
    margin:
        0;

    max-width:
        820px;

    color:
        var(--blue-950);

    font-size:
        clamp(30px, 4vw, 52px);

    line-height:
        1.45;

    font-weight:
        900;

    letter-spacing:
        -0.02em;
}


.article-detail-excerpt {
    max-width:
        780px;

    margin:
        18px 0 0;

    color:
        #667587;

    font-size:
        15px;

    line-height:
        2.15;
}


/* =========================================================
   BRAND MARK
========================================================= */

.article-detail-mark {
    position:
        relative;

    z-index:
        2;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;

    justify-content:
        center;

    flex:
        0 0 auto;
}


.article-detail-mark span {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        92px;

    height:
        92px;

    border-radius:
        24px;

    background:
        linear-gradient(
            145deg,
            var(--blue-900),
            var(--blue-700)
        );

    color:
        #fff;

    font-size:
        25px;

    font-weight:
        900;

    letter-spacing:
        0.04em;

    box-shadow:
        0 16px 30px rgba(15, 39, 72, 0.16);
}


.article-detail-mark small {
    margin-top:
        10px;

    color:
        #8994a1;

    font-size:
        8px;

    font-weight:
        850;

    letter-spacing:
        0.12em;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.article-detail-layout {
    display:
        grid;

    grid-template-columns:
        minmax(0, 1fr)
        310px;

    align-items:
        start;

    gap:
        34px;

    margin-top:
        34px;
}


/* =========================================================
   ARTICLE BODY
========================================================= */

.article-detail-content {
    position:
        relative;

    min-width:
        0;

    padding:
        37px 42px;

    border:
        1px solid var(--line);

    border-radius:
        22px;

    background:
        #fff;

    box-shadow:
        0 10px 30px rgba(15, 39, 72, 0.04);
}


.article-detail-content-top {
    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    padding-bottom:
        18px;

    margin-bottom:
        26px;

    border-bottom:
        1px solid rgba(15, 39, 72, 0.07);

    color:
        var(--blue-900);

    font-size:
        12px;

    font-weight:
        850;
}


.article-detail-content-top::before {
    content:
        "";

    width:
        7px;

    height:
        7px;

    flex:
        0 0 auto;

    border-radius:
        50%;

    background:
        var(--orange);

    box-shadow:
        0 0 0 5px rgba(242, 139, 47, 0.08);
}


/* =========================================================
   ARTICLE RICHTEXT
========================================================= */

.article-richtext {
    color:
        #4f5f70;

    font-size:
        14px;

    line-height:
        2.2;
}


.article-richtext h2 {
    margin:
        35px 0 13px;

    color:
        var(--blue-900);

    font-size:
        23px;

    line-height:
        1.7;

    font-weight:
        850;
}


.article-richtext h3 {
    margin:
        28px 0 11px;

    color:
        var(--blue-900);

    font-size:
        19px;

    line-height:
        1.75;

    font-weight:
        850;
}


.article-richtext p {
    margin:
        0 0 18px;
}


.article-richtext strong {
    color:
        var(--blue-900);

    font-weight:
        850;
}


.article-richtext a {
    color:
        var(--blue-700);

    font-weight:
        750;

    transition:
        color 0.25s ease;
}

.article-richtext a:hover {
    color:
        var(--orange-dark);
}


.article-richtext ul,
.article-richtext ol {
    margin:
        17px 0 23px;

    padding-right:
        23px;
}


.article-richtext li {
    margin-bottom:
        10px;
}


.article-richtext li::marker {
    color:
        var(--orange);
}


.article-richtext blockquote {
    margin:
        30px 0;

    padding:
        20px 23px;

    border-right:
        3px solid var(--orange);

    border-radius:
        0 12px 12px 0;

    background:
        rgba(242, 139, 47, 0.055);

    color:
        var(--blue-800);
}


/* =========================================================
   SIDEBAR
========================================================= */

.article-detail-sidebar {
    position:
        sticky;

    top:
        105px;

    display:
        flex;

    flex-direction:
        column;

    gap:
        16px;
}


.article-info-card {
    position:
        relative;

    overflow:
        hidden;

    padding:
        28px 25px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        20px;

    background:
        linear-gradient(
            145deg,
            var(--blue-900),
            #143b62
        );

    color:
        #fff;

    box-shadow:
        0 16px 34px rgba(15, 39, 72, 0.12);
}


.article-info-card::after {
    content:
        "";

    position:
        absolute;

    width:
        190px;

    height:
        190px;

    right:
        -100px;

    bottom:
        -115px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.20),
            transparent 68%
        );
}


.article-info-kicker {
    position:
        relative;

    z-index:
        2;

    display:
        block;

    margin-bottom:
        10px;

    color:
        rgba(255,255,255,0.56);

    font-size:
        10px;

    font-weight:
        800;
}


.article-info-card h2 {
    position:
        relative;

    z-index:
        2;

    margin:
        0;

    color:
        #fff;

    font-size:
        20px;

    line-height:
        1.65;

    font-weight:
        850;
}


.article-info-card p {
    position:
        relative;

    z-index:
        2;

    margin:
        12px 0 20px;

    color:
        rgba(255,255,255,0.67);

    font-size:
        12px;

    line-height:
        2;
}


/* =========================================================
   SIDEBAR BUTTON
========================================================= */

.article-sidebar-button {
    position:
        relative;

    z-index:
        3;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        10px;

    min-height:
        44px;

    padding:
        11px 13px;

    border:
        1px solid rgba(255,255,255,0.14);

    border-radius:
        11px;

    background:
        rgba(255,255,255,0.07);

    color:
        #fff;

    font-size:
        11px;

    font-weight:
        800;

    text-decoration:
        none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.3s cubic-bezier(0.22,1,0.36,1);
}


.article-sidebar-button:hover {
    transform:
        translateY(-2px);

    background:
        var(--orange);

    border-color:
        var(--orange);
}


.article-sidebar-button span:last-child {
    transition:
        transform 0.28s ease;
}


.article-sidebar-button:hover span:last-child {
    transform:
        translateX(-4px);
}


/* =========================================================
   MINI BRAND
========================================================= */

.article-brand-mini {
    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    padding:
        15px;

    border:
        1px solid var(--line);

    border-radius:
        16px;

    background:
        #fff;
}


.article-mini-mark {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex:
        0 0 42px;

    width:
        42px;

    height:
        42px;

    border-radius:
        11px;

    background:
        rgba(15, 39, 72, 0.065);

    color:
        var(--blue-900);

    font-size:
        11px;

    font-weight:
        900;
}


.article-brand-mini div {
    display:
        flex;

    flex-direction:
        column;

    gap:
        3px;

    min-width:
        0;
}


.article-brand-mini strong {
    color:
        var(--blue-900);

    font-size:
        12px;

    font-weight:
        850;
}


.article-brand-mini div span {
    color:
        #7b8795;

    font-size:
        10px;

    line-height:
        1.7;
}


/* =========================================================
   BOTTOM LINK
========================================================= */

.article-detail-bottom {
    display:
        flex;

    justify-content:
        flex-start;

    margin-top:
        28px;
}


.article-back-link {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    color:
        var(--blue-800);

    font-size:
        12px;

    font-weight:
        850;

    text-decoration:
        none;

    transition:
        color 0.25s ease,
        gap 0.28s cubic-bezier(0.22,1,0.36,1);
}


.article-back-link:hover {
    color:
        var(--orange-dark);

    gap:
        13px;
}


.article-back-link span:first-child {
    transition:
        transform 0.28s cubic-bezier(0.22,1,0.36,1);
}


.article-back-link:hover span:first-child {
    transform:
        translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .article-detail-layout {
        grid-template-columns:
            1fr;
    }

    .article-detail-sidebar {
        position:
            static;

        display:
            grid;

        grid-template-columns:
            1fr 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .article-detail-page {
        padding:
            120px 0 70px;
    }

    .article-detail-container {
        width:
            calc(100% - 32px);
    }

    .article-detail-header {
        flex-direction:
            column;

        align-items:
            flex-start;

        min-height:
            auto;

        padding:
            30px 24px;

        border-radius:
            20px;
    }

    .article-detail-header h1 {
        font-size:
            30px;
    }

    .article-detail-excerpt {
        font-size:
            13px;
    }

    .article-detail-mark {
        align-items:
            flex-start;
    }

    .article-detail-mark span {
        width:
            68px;

        height:
            68px;

        border-radius:
            17px;

        font-size:
            20px;
    }

    .article-detail-mark small {
        font-size:
            7px;
    }

    .article-detail-content {
        padding:
            27px 20px;

        border-radius:
            18px;
    }

    .article-richtext {
        font-size:
            13px;

        line-height:
            2.08;
    }

    .article-richtext h2 {
        font-size:
            20px;
    }

    .article-richtext h3 {
        font-size:
            17px;
    }

    .article-detail-sidebar {
        grid-template-columns:
            1fr;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .article-detail-page {
        padding-top:
            105px;
    }

    .article-detail-breadcrumb {
        margin-bottom:
            20px;

        gap:
            6px;

        font-size:
            10px;
    }

    .article-detail-header {
        padding:
            25px 19px;
    }

    .article-detail-header h1 {
        font-size:
            26px;
    }

    .article-detail-content {
        padding:
            22px 17px;
    }

    .article-info-card {
        padding:
            23px 20px;
    }
}


/* =========================================================
   TOUCH
========================================================= */

@media (hover: none) {

    .article-sidebar-button:hover {
        transform:
            none;

        background:
            rgba(255,255,255,0.07);

        border-color:
            rgba(255,255,255,0.14);
    }

    .article-sidebar-button:hover span:last-child {
        transform:
            none;
    }

    .article-back-link:hover {
        gap:
            9px;

        color:
            var(--blue-800);
    }

    .article-back-link:hover span:first-child {
        transform:
            none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .article-detail-breadcrumb a,
    .article-sidebar-button,
    .article-sidebar-button span:last-child,
    .article-back-link,
    .article-back-link span:first-child {
        transition:
            none !important;
    }
}
/* =========================================================
   ARTICLES ARCHIVE PAGE
   PREMIUM KNOWLEDGE CENTER
========================================================= */

.articles-archive-page {
    position: relative;

    padding:
        150px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 45%,
            #f8fafc 100%
        );
}


.articles-archive-container {
    width:
        min(1180px, calc(100% - 64px));

    margin:
        0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.articles-archive-breadcrumb {
    display:
        flex;

    align-items:
        center;

    flex-wrap:
        wrap;

    gap:
        9px;

    margin-bottom:
        28px;

    color:
        #7b8795;

    font-size:
        11px;

    font-weight:
        700;
}

.articles-archive-breadcrumb a {
    color:
        #6d7b8b;

    text-decoration:
        none;

    transition:
        color 0.25s ease;
}

.articles-archive-breadcrumb a:hover {
    color:
        var(--orange-dark);
}

.articles-archive-breadcrumb strong {
    color:
        var(--blue-900);

    font-weight:
        800;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.articles-archive-header {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        35px;

    overflow:
        hidden;

    min-height:
        280px;

    padding:
        48px 50px;

    margin-bottom:
        34px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        28px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6f9fb 100%
        );

    box-shadow:
        0 17px 46px rgba(15, 39, 72, 0.05);
}


/* Grid background */

.articles-archive-header::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        );

    background-size:
        34px 34px;

    mask-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.9),
            transparent 85%
        );

    pointer-events:
        none;
}


/* Orange glow */

.articles-archive-header::after {
    content:
        "";

    position:
        absolute;

    width:
        320px;

    height:
        320px;

    right:
        -140px;

    top:
        -160px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.12),
            transparent 68%
        );

    pointer-events:
        none;
}


.articles-archive-header > div:first-child {
    position:
        relative;

    z-index:
        2;

    max-width:
        780px;
}


.articles-archive-header .section-kicker {
    margin-bottom:
        14px;
}


.articles-archive-header h1 {
    margin:
        0;

    color:
        var(--blue-950);

    font-size:
        clamp(31px, 4vw, 52px);

    line-height:
        1.4;

    font-weight:
        900;
}


.articles-archive-header p {
    max-width:
        730px;

    margin:
        16px 0 0;

    color:
        #667587;

    font-size:
        14px;

    line-height:
        2.15;
}


/* =========================================================
   BRAND MARK
========================================================= */

.articles-archive-mark {
    position:
        relative;

    z-index:
        2;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;

    justify-content:
        center;

    flex:
        0 0 auto;
}


.articles-archive-mark span {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        94px;

    height:
        94px;

    border-radius:
        24px;

    background:
        linear-gradient(
            145deg,
            var(--blue-900),
            var(--blue-700)
        );

    color:
        #fff;

    font-size:
        25px;

    font-weight:
        900;

    letter-spacing:
        0.04em;

    box-shadow:
        0 16px 30px rgba(15, 39, 72, 0.16);
}


.articles-archive-mark small {
    margin-top:
        10px;

    color:
        #8994a1;

    font-size:
        8px;

    font-weight:
        850;

    letter-spacing:
        0.12em;
}


/* =========================================================
   GRID
========================================================= */

.articles-archive-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        22px;
}


/* =========================================================
   ARCHIVE CARD
========================================================= */

.archive-article-card {
    position:
        relative;

    display:
        flex;

    flex-direction:
        column;

    min-height:
        275px;

    overflow:
        hidden;

    isolation:
        isolate;

    border:
        1px solid var(--line);

    border-radius:
        20px;

    background:
        #fff;

    box-shadow:
        0 8px 25px rgba(15, 39, 72, 0.045);

    transition:
        transform 0.42s cubic-bezier(0.22,1,0.36,1),
        box-shadow 0.42s cubic-bezier(0.22,1,0.36,1),
        border-color 0.3s ease;
}


.archive-article-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(242, 139, 47, 0.20);

    box-shadow:
        0 22px 48px rgba(15, 39, 72, 0.09);
}


/* Orange top line */

.archive-article-card::before {
    content:
        "";

    position:
        absolute;

    top:
        0;

    right:
        0;

    width:
        0;

    height:
        3px;

    background:
        var(--orange);

    transition:
        width 0.38s cubic-bezier(0.22,1,0.36,1);
}

.archive-article-card:hover::before {
    width:
        68px;
}


/* Bottom glow */

.archive-article-card::after {
    content:
        "";

    position:
        absolute;

    width:
        210px;

    height:
        210px;

    right:
        -145px;

    bottom:
        -145px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.08),
            transparent 68%
        );

    opacity:
        0;

    transform:
        scale(0.7);

    pointer-events:
        none;

    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.22,1,0.36,1);
}

.archive-article-card:hover::after {
    opacity:
        1;

    transform:
        scale(1.15);
}


/* =========================================================
   CARD TOP
========================================================= */

.archive-article-top {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        12px;

    padding:
        19px 19px 0;
}


.archive-article-type {
    display:
        inline-flex;

    align-items:
        center;

    min-height:
        28px;

    padding:
        5px 10px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        999px;

    background:
        rgba(15, 39, 72, 0.05);

    color:
        var(--blue-800);

    font-size:
        10px;

    font-weight:
        850;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.archive-article-type.instruction {
    background:
        rgba(242, 139, 47, 0.08);

    color:
        var(--orange-dark);

    border-color:
        rgba(242, 139, 47, 0.12);
}


.archive-article-card:hover .archive-article-type {
    background:
        rgba(242, 139, 47, 0.09);

    color:
        var(--orange-dark);

    border-color:
        rgba(242, 139, 47, 0.15);
}


/* ART / INS */

.archive-article-mark {
    color:
        #a0aab5;

    font-size:
        9px;

    font-weight:
        900;

    letter-spacing:
        0.10em;

    transition:
        color 0.25s ease,
        transform 0.28s ease;
}

.archive-article-card:hover .archive-article-mark {
    color:
        var(--orange-dark);

    transform:
        translateY(-2px);
}


/* =========================================================
   CONTENT
========================================================= */

.archive-article-content {
    position:
        relative;

    z-index:
        2;

    display:
        flex;

    flex:
        1;

    flex-direction:
        column;

    padding:
        21px 19px 19px;
}


.archive-article-content h2 {
    margin:
        0;

    color:
        var(--blue-900);

    font-size:
        18px;

    line-height:
        1.75;

    font-weight:
        850;

    transition:
        color 0.25s ease,
        transform 0.3s cubic-bezier(0.22,1,0.36,1);
}


.archive-article-card:hover .archive-article-content h2 {
    color:
        var(--blue-700);

    transform:
        translateX(-2px);
}


.archive-article-content p {
    margin:
        11px 0 0;

    color:
        #6d7b8a;

    font-size:
        12px;

    line-height:
        2;

    display:
        -webkit-box;

    -webkit-line-clamp:
        4;

    line-clamp:
        4;

    -webkit-box-orient:
        vertical;

    overflow:
        hidden;

    transition:
        color 0.25s ease;
}


.archive-article-card:hover .archive-article-content p {
    color:
        #586879;
}


/* =========================================================
   READ LINK
========================================================= */

.archive-article-link {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    margin-top:
        auto;

    padding-top:
        20px;

    color:
        var(--blue-800);

    font-size:
        12px;

    font-weight:
        850;

    text-decoration:
        none;

    transition:
        color 0.25s ease,
        gap 0.28s cubic-bezier(0.22,1,0.36,1);
}


.archive-article-link span:last-child {
    transition:
        transform 0.28s cubic-bezier(0.22,1,0.36,1);
}


.archive-article-card:hover .archive-article-link {
    color:
        var(--orange-dark);

    gap:
        12px;
}


.archive-article-card:hover .archive-article-link span:last-child {
    transform:
        translateX(-5px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.articles-empty-state {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        280px;

    padding:
        40px;

    border:
        1px dashed rgba(15, 39, 72, 0.15);

    border-radius:
        20px;

    background:
        rgba(255,255,255,0.78);

    text-align:
        center;
}


.articles-empty-mark {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        58px;

    height:
        58px;

    margin-bottom:
        16px;

    border-radius:
        16px;

    background:
        rgba(15, 39, 72, 0.06);

    color:
        var(--blue-900);

    font-size:
        13px;

    font-weight:
        900;
}


.articles-empty-state h2 {
    margin:
        0;

    color:
        var(--blue-900);

    font-size:
        19px;

    font-weight:
        850;
}


.articles-empty-state p {
    margin:
        8px 0 0;

    color:
        #748191;

    font-size:
        12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

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


@media (max-width: 760px) {

    .articles-archive-page {
        padding:
            120px 0 70px;
    }

    .articles-archive-container {
        width:
            calc(100% - 32px);
    }

    .articles-archive-header {
        flex-direction:
            column;

        align-items:
            flex-start;

        min-height:
            auto;

        padding:
            30px 24px;

        border-radius:
            20px;
    }

    .articles-archive-header h1 {
        font-size:
            30px;
    }

    .articles-archive-header p {
        font-size:
            13px;
    }

    .articles-archive-mark {
        align-items:
            flex-start;
    }

    .articles-archive-mark span {
        width:
            68px;

        height:
            68px;

        border-radius:
            17px;

        font-size:
            20px;
    }

    .articles-archive-grid {
        grid-template-columns:
            1fr;
    }

    .archive-article-card {
        min-height:
            240px;

        border-radius:
            17px;
    }
}


@media (max-width: 480px) {

    .articles-archive-page {
        padding-top:
            105px;
    }

    .articles-archive-breadcrumb {
        margin-bottom:
            20px;

        gap:
            6px;

        font-size:
            10px;
    }

    .articles-archive-header {
        padding:
            25px 19px;
    }

    .articles-archive-header h1 {
        font-size:
            26px;
    }

    .archive-article-content {
        padding:
            19px 17px 17px;
    }

    .archive-article-content h2 {
        font-size:
            16px;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .archive-article-card:hover {
        transform:
            none;

        border-color:
            var(--line);

        box-shadow:
            0 8px 25px rgba(15, 39, 72, 0.045);
    }

    .archive-article-card:hover::before {
        width:
            0;
    }

    .archive-article-card:hover::after {
        opacity:
            0;
    }

    .archive-article-card:hover .archive-article-type {
        background:
            rgba(15, 39, 72, 0.05);

        color:
            var(--blue-800);

        border-color:
            rgba(15, 39, 72, 0.08);
    }

    .archive-article-card:hover .archive-article-content h2 {
        transform:
            none;
    }

    .archive-article-card:hover .archive-article-link {
        gap:
            8px;

        color:
            var(--blue-800);
    }

    .archive-article-card:hover .archive-article-link span:last-child {
        transform:
            none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .articles-archive-breadcrumb a,
    .archive-article-card,
    .archive-article-card::before,
    .archive-article-card::after,
    .archive-article-type,
    .archive-article-mark,
    .archive-article-content h2,
    .archive-article-content p,
    .archive-article-link,
    .archive-article-link span:last-child {
        transition:
            none !important;
    }
}
/* =========================================================
   ASSEMBLY STATEMENTS ARCHIVE
   PREMIUM DOCUMENT CENTER
========================================================= */

.assembly-archive-page {
    position: relative;

    padding:
        150px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 48%,
            #f8fafc 100%
        );
}


.assembly-archive-container {
    width:
        min(1180px, calc(100% - 64px));

    margin:
        0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.assembly-breadcrumb {
    display:
        flex;

    align-items:
        center;

    flex-wrap:
        wrap;

    gap:
        9px;

    margin-bottom:
        28px;

    color:
        #7b8795;

    font-size:
        11px;

    font-weight:
        700;
}


.assembly-breadcrumb a {
    color:
        #6d7b8b;

    text-decoration:
        none;

    transition:
        color 0.25s ease;
}


.assembly-breadcrumb a:hover {
    color:
        var(--orange-dark);
}


.assembly-breadcrumb strong {
    color:
        var(--blue-900);

    font-weight:
        800;
}


/* =========================================================
   HEADER
========================================================= */

.assembly-header {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        35px;

    overflow:
        hidden;

    min-height:
        280px;

    padding:
        48px 50px;

    margin-bottom:
        40px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        28px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6f9fb 100%
        );

    box-shadow:
        0 17px 46px rgba(15, 39, 72, 0.05);
}


/* Grid */

.assembly-header::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        );

    background-size:
        34px 34px;

    mask-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.9),
            transparent 85%
        );

    pointer-events:
        none;
}


/* Glow */

.assembly-header::after {
    content:
        "";

    position:
        absolute;

    width:
        320px;

    height:
        320px;

    right:
        -140px;

    top:
        -160px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.12),
            transparent 68%
        );

    pointer-events:
        none;
}


.assembly-header-content {
    position:
        relative;

    z-index:
        2;

    max-width:
        780px;
}


.assembly-header h1 {
    margin:
        0;

    color:
        var(--blue-950);

    font-size:
        clamp(31px, 4vw, 52px);

    line-height:
        1.4;

    font-weight:
        900;
}


.assembly-header p {
    max-width:
        720px;

    margin:
        16px 0 0;

    color:
        #667587;

    font-size:
        14px;

    line-height:
        2.15;
}


/* =========================================================
   HEADER MARK
========================================================= */

.assembly-header-mark {
    position:
        relative;

    z-index:
        2;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;

    flex:
        0 0 auto;
}


.assembly-header-mark span {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        94px;

    height:
        94px;

    border-radius:
        24px;

    background:
        linear-gradient(
            145deg,
            var(--blue-900),
            var(--blue-700)
        );

    color:
        #fff;

    font-size:
        25px;

    font-weight:
        900;

    box-shadow:
        0 16px 30px rgba(15, 39, 72, 0.16);
}


.assembly-header-mark small {
    margin-top:
        10px;

    color:
        #8994a1;

    font-size:
        8px;

    font-weight:
        850;

    letter-spacing:
        0.1em;
}


/* =========================================================
   GROUP
========================================================= */

.assembly-groups {
    display:
        flex;

    flex-direction:
        column;

    gap:
        34px;
}


.assembly-group {
    position:
        relative;
}


/* =========================================================
   GROUP HEADER
========================================================= */

.assembly-group-header {
    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        20px;

    margin-bottom:
        16px;

    padding:
        0 4px;
}


.assembly-group-kicker {
    display:
        block;

    margin-bottom:
        5px;

    color:
        #8793a0;

    font-size:
        10px;

    font-weight:
        800;
}


.assembly-group-header h2 {
    margin:
        0;

    color:
        var(--blue-900);

    font-size:
        21px;

    line-height:
        1.6;

    font-weight:
        850;
}


.assembly-count {
    display:
        inline-flex;

    align-items:
        center;

    min-height:
        28px;

    padding:
        5px 10px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        999px;

    background:
        rgba(15, 39, 72, 0.045);

    color:
        #738092;

    font-size:
        10px;

    font-weight:
        800;
}


/* =========================================================
   DOCUMENT GRID
========================================================= */

.assembly-download-grid {
    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        15px;
}


/* =========================================================
   DOCUMENT CARD
========================================================= */

.assembly-document-card {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        18px;

    min-width:
        0;

    overflow:
        hidden;

    padding:
        17px;

    border:
        1px solid var(--line);

    border-radius:
        17px;

    background:
        #fff;

    box-shadow:
        0 7px 22px rgba(15, 39, 72, 0.035);

    transition:
        transform 0.38s cubic-bezier(0.22,1,0.36,1),
        border-color 0.3s ease,
        box-shadow 0.38s cubic-bezier(0.22,1,0.36,1);
}


.assembly-document-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(242, 139, 47, 0.18);

    box-shadow:
        0 17px 35px rgba(15, 39, 72, 0.075);
}


/* Orange line */

.assembly-document-card::before {
    content:
        "";

    position:
        absolute;

    top:
        0;

    right:
        0;

    width:
        0;

    height:
        3px;

    background:
        var(--orange);

    transition:
        width 0.35s cubic-bezier(0.22,1,0.36,1);
}


.assembly-document-card:hover::before {
    width:
        55px;
}


/* =========================================================
   DOCUMENT INFO
========================================================= */

.assembly-document-info {
    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    min-width:
        0;
}


.assembly-file-icon {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex:
        0 0 48px;

    width:
        48px;

    height:
        56px;

    border:
        1px solid rgba(242, 139, 47, 0.15);

    border-radius:
        11px;

    background:
        rgba(242, 139, 47, 0.065);

    color:
        var(--orange-dark);

    font-size:
        9px;

    font-weight:
        900;

    letter-spacing:
        0.04em;

    transition:
        transform 0.32s cubic-bezier(0.22,1,0.36,1),
        background 0.25s ease,
        box-shadow 0.3s ease;
}


.assembly-document-card:hover .assembly-file-icon {
    transform:
        translateY(-2px);

    background:
        rgba(242, 139, 47, 0.10);

    box-shadow:
        0 8px 18px rgba(242, 139, 47, 0.08);
}


/* =========================================================
   TEXT
========================================================= */

.assembly-document-text {
    min-width:
        0;
}


.assembly-document-type {
    display:
        block;

    margin-bottom:
        4px;

    color:
        #8995a2;

    font-size:
        9px;

    font-weight:
        800;
}


.assembly-document-text h3 {
    overflow:
        hidden;

    margin:
        0;

    color:
        var(--blue-900);

    font-size:
        13px;

    line-height:
        1.75;

    font-weight:
        850;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;

    transition:
        color 0.25s ease,
        transform 0.3s cubic-bezier(0.22,1,0.36,1);
}


.assembly-document-card:hover .assembly-document-text h3 {
    color:
        var(--blue-700);

    transform:
        translateX(-2px);
}


/* =========================================================
   DOWNLOAD BUTTON
========================================================= */

.assembly-download-button {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        8px;

    flex:
        0 0 auto;

    min-height:
        40px;

    padding:
        9px 12px;

    border:
        1px solid var(--blue-900);

    border-radius:
        10px;

    background:
        var(--blue-900);

    color:
        #fff;

    font-size:
        10px;

    font-weight:
        800;

    text-decoration:
        none;

    transition:
        transform 0.28s cubic-bezier(0.22,1,0.36,1),
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.3s ease;
}


.assembly-download-button:hover {
    transform:
        translateY(-2px);

    background:
        var(--orange);

    border-color:
        var(--orange);

    color:
        #fff;

    box-shadow:
        0 9px 20px rgba(242, 139, 47, 0.17);
}


.assembly-download-button span:last-child {
    display:
        inline-block;

    transition:
        transform 0.28s cubic-bezier(0.22,1,0.36,1);
}


.assembly-download-button:hover span:last-child {
    transform:
        translateY(2px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.assembly-empty-state {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        280px;

    padding:
        40px;

    border:
        1px dashed rgba(15, 39, 72, 0.15);

    border-radius:
        20px;

    background:
        rgba(255,255,255,0.78);

    text-align:
        center;
}


.assembly-empty-mark {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        58px;

    height:
        58px;

    margin-bottom:
        16px;

    border-radius:
        16px;

    background:
        rgba(15, 39, 72, 0.06);

    color:
        var(--blue-900);

    font-size:
        13px;

    font-weight:
        900;
}


.assembly-empty-state h2 {
    margin:
        0;

    color:
        var(--blue-900);

    font-size:
        19px;

    font-weight:
        850;
}


.assembly-empty-state p {
    margin:
        8px 0 0;

    color:
        #748191;

    font-size:
        12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .assembly-download-grid {
        grid-template-columns:
            1fr;
    }
}


@media (max-width: 700px) {

    .assembly-archive-page {
        padding:
            120px 0 70px;
    }

    .assembly-archive-container {
        width:
            calc(100% - 32px);
    }

    .assembly-header {
        flex-direction:
            column;

        align-items:
            flex-start;

        min-height:
            auto;

        padding:
            30px 24px;

        border-radius:
            20px;
    }

    .assembly-header h1 {
        font-size:
            30px;
    }

    .assembly-header p {
        font-size:
            13px;
    }

    .assembly-header-mark {
        align-items:
            flex-start;
    }

    .assembly-header-mark span {
        width:
            68px;

        height:
            68px;

        border-radius:
            17px;

        font-size:
            20px;
    }

    .assembly-header-mark small {
        font-size:
            7px;
    }

    .assembly-group-header {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            9px;
    }

    .assembly-document-card {
        align-items:
            flex-start;

        flex-direction:
            column;

        padding:
            15px;
    }

    .assembly-document-info {
        width:
            100%;
    }

    .assembly-download-button {
        width:
            100%;
    }
}


@media (max-width: 480px) {

    .assembly-archive-page {
        padding-top:
            105px;
    }

    .assembly-breadcrumb {
        margin-bottom:
            20px;

        gap:
            6px;

        font-size:
            10px;
    }

    .assembly-header {
        padding:
            25px 19px;
    }

    .assembly-header h1 {
        font-size:
            26px;
    }

    .assembly-document-text h3 {
        white-space:
            normal;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .assembly-document-card:hover {
        transform:
            none;

        border-color:
            var(--line);

        box-shadow:
            0 7px 22px rgba(15, 39, 72, 0.035);
    }

    .assembly-document-card:hover::before {
        width:
            0;
    }

    .assembly-document-card:hover .assembly-file-icon {
        transform:
            none;

        box-shadow:
            none;
    }

    .assembly-document-card:hover .assembly-document-text h3 {
        transform:
            none;
    }

    .assembly-download-button:hover {
        transform:
            none;

        background:
            var(--blue-900);

        border-color:
            var(--blue-900);

        box-shadow:
            none;
    }

    .assembly-download-button:hover span:last-child {
        transform:
            none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .assembly-breadcrumb a,
    .assembly-document-card,
    .assembly-document-card::before,
    .assembly-file-icon,
    .assembly-document-text h3,
    .assembly-download-button,
    .assembly-download-button span:last-child {
        transition:
            none !important;
    }
}
/* =========================================================
   AUDIT CHECKLISTS ARCHIVE
   PREMIUM DOCUMENT LIBRARY
========================================================= */

.checklists-archive-page {
    position: relative;

    padding:
        150px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 48%,
            #f8fafc 100%
        );
}


.checklists-archive-container {
    width:
        min(1180px, calc(100% - 64px));

    margin:
        0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.checklists-breadcrumb {
    display:
        flex;

    align-items:
        center;

    flex-wrap:
        wrap;

    gap:
        9px;

    margin-bottom:
        28px;

    color:
        #7b8795;

    font-size:
        11px;

    font-weight:
        700;
}


.checklists-breadcrumb a {
    color:
        #6d7b8b;

    text-decoration:
        none;

    transition:
        color 0.25s ease;
}


.checklists-breadcrumb a:hover {
    color:
        var(--orange-dark);
}


.checklists-breadcrumb strong {
    color:
        var(--blue-900);

    font-weight:
        800;
}


/* =========================================================
   HEADER
========================================================= */

.checklists-header {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        35px;

    overflow:
        hidden;

    min-height:
        280px;

    padding:
        48px 50px;

    margin-bottom:
        36px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        28px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6f9fb 100%
        );

    box-shadow:
        0 17px 46px rgba(15, 39, 72, 0.05);
}


.checklists-header::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        );

    background-size:
        34px 34px;

    mask-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.9),
            transparent 85%
        );

    pointer-events:
        none;
}


.checklists-header::after {
    content:
        "";

    position:
        absolute;

    width:
        320px;

    height:
        320px;

    right:
        -140px;

    top:
        -160px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.12),
            transparent 68%
        );

    pointer-events:
        none;
}


.checklists-header-content {
    position:
        relative;

    z-index:
        2;

    max-width:
        780px;
}


.checklists-header h1 {
    margin:
        0;

    color:
        var(--blue-950);

    font-size:
        clamp(31px, 4vw, 52px);

    line-height:
        1.4;

    font-weight:
        900;
}


.checklists-header p {
    max-width:
        740px;

    margin:
        16px 0 0;

    color:
        #667587;

    font-size:
        14px;

    line-height:
        2.15;
}


/* =========================================================
   HEADER MARK
========================================================= */

.checklists-header-mark {
    position:
        relative;

    z-index:
        2;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;

    flex:
        0 0 auto;
}


.checklists-header-mark span {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        94px;

    height:
        94px;

    border-radius:
        24px;

    background:
        linear-gradient(
            145deg,
            var(--blue-900),
            var(--blue-700)
        );

    color:
        #fff;

    font-size:
        25px;

    font-weight:
        900;

    letter-spacing:
        0.04em;

    box-shadow:
        0 16px 30px rgba(15, 39, 72, 0.16);
}


.checklists-header-mark small {
    margin-top:
        10px;

    color:
        #8994a1;

    font-size:
        8px;

    font-weight:
        850;

    letter-spacing:
        0.10em;
}


/* =========================================================
   GRID
========================================================= */

.checklists-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        20px;
}


/* =========================================================
   DOCUMENT CARD
========================================================= */

.checklist-document-card {
    position:
        relative;

    display:
        flex;

    flex-direction:
        column;

    min-height:
        270px;

    overflow:
        hidden;

    isolation:
        isolate;

    padding:
        19px;

    border:
        1px solid var(--line);

    border-radius:
        19px;

    background:
        #fff;

    box-shadow:
        0 8px 25px rgba(15, 39, 72, 0.042);

    transition:
        transform 0.40s cubic-bezier(0.22,1,0.36,1),
        box-shadow 0.40s cubic-bezier(0.22,1,0.36,1),
        border-color 0.3s ease;
}


.checklist-document-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(242, 139, 47, 0.20);

    box-shadow:
        0 22px 48px rgba(15, 39, 72, 0.09);
}


/* Top accent */

.checklist-document-card::before {
    content:
        "";

    position:
        absolute;

    right:
        0;

    top:
        0;

    width:
        0;

    height:
        3px;

    background:
        var(--orange);

    transition:
        width 0.38s cubic-bezier(0.22,1,0.36,1);
}


.checklist-document-card:hover::before {
    width:
        70px;
}


/* Soft glow */

.checklist-document-card::after {
    content:
        "";

    position:
        absolute;

    width:
        210px;

    height:
        210px;

    right:
        -145px;

    bottom:
        -145px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.08),
            transparent 68%
        );

    opacity:
        0;

    transform:
        scale(0.70);

    pointer-events:
        none;

    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.22,1,0.36,1);
}


.checklist-document-card:hover::after {
    opacity:
        1;

    transform:
        scale(1.16);
}


/* =========================================================
   CARD TOP
========================================================= */

.checklist-document-top {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        12px;
}


/* PDF ICON */

.checklist-file-icon {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        52px;

    height:
        61px;

    border:
        1px solid rgba(242, 139, 47, 0.15);

    border-radius:
        12px;

    background:
        rgba(242, 139, 47, 0.065);

    color:
        var(--orange-dark);

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        0.04em;

    transition:
        transform 0.35s cubic-bezier(0.22,1,0.36,1),
        background 0.25s ease,
        box-shadow 0.3s ease;
}


.checklist-document-card:hover .checklist-file-icon {
    transform:
        translateY(-3px)
        rotate(-2deg);

    background:
        rgba(242, 139, 47, 0.10);

    box-shadow:
        0 8px 18px rgba(242, 139, 47, 0.08);
}


/* Badge */

.checklist-document-badge {
    display:
        inline-flex;

    align-items:
        center;

    min-height:
        25px;

    padding:
        4px 8px;

    border:
        1px solid rgba(15, 39, 72, 0.07);

    border-radius:
        999px;

    background:
        rgba(15, 39, 72, 0.045);

    color:
        #7b8794;

    font-size:
        8px;

    font-weight:
        900;

    letter-spacing:
        0.08em;
}


/* =========================================================
   CONTENT
========================================================= */

.checklist-document-content {
    position:
        relative;

    z-index:
        2;

    display:
        flex;

    flex:
        1;

    flex-direction:
        column;

    padding-top:
        20px;
}


.checklist-category {
    display:
        inline-flex;

    align-self:
        flex-start;

    min-height:
        26px;

    padding:
        4px 9px;

    border-radius:
        999px;

    background:
        rgba(15, 39, 72, 0.055);

    color:
        var(--blue-800);

    font-size:
        10px;

    font-weight:
        800;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.checklist-document-card:hover .checklist-category {
    background:
        rgba(242, 139, 47, 0.09);

    color:
        var(--orange-dark);
}


.checklist-document-content h2 {
    margin:
        12px 0 0;

    color:
        var(--blue-900);

    font-size:
        17px;

    line-height:
        1.75;

    font-weight:
        850;

    transition:
        color 0.25s ease,
        transform 0.3s cubic-bezier(0.22,1,0.36,1);
}


.checklist-document-card:hover .checklist-document-content h2 {
    color:
        var(--blue-700);

    transform:
        translateX(-2px);
}


.checklist-document-content p {
    margin:
        7px 0 0;

    color:
        #7a8795;

    font-size:
        11px;

    line-height:
        1.8;
}


/* =========================================================
   FOOTER
========================================================= */

.checklist-document-footer {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        12px;

    padding-top:
        17px;

    margin-top:
        18px;

    border-top:
        1px solid rgba(15, 39, 72, 0.07);
}


.checklist-file-label {
    color:
        #8994a1;

    font-size:
        10px;

    font-weight:
        750;
}


/* =========================================================
   DOWNLOAD BUTTON
========================================================= */

.checklist-download-button {
    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        8px;

    min-height:
        40px;

    padding:
        9px 12px;

    border:
        1px solid var(--blue-900);

    border-radius:
        10px;

    background:
        var(--blue-900);

    color:
        #fff;

    font-size:
        10px;

    font-weight:
        800;

    text-decoration:
        none;

    overflow:
        hidden;

    transition:
        transform 0.28s cubic-bezier(0.22,1,0.36,1),
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.3s ease;
}


.checklist-download-button:hover {
    transform:
        translateY(-2px);

    background:
        var(--orange);

    border-color:
        var(--orange);

    color:
        #fff;

    box-shadow:
        0 9px 20px rgba(242, 139, 47, 0.17);
}


/* Shine */

.checklist-download-button::before {
    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        -120%;

    width:
        65%;

    height:
        100%;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255,255,255,0.22) 50%,
            transparent 80%
        );

    transform:
        skewX(-18deg);

    transition:
        left 0.6s ease;
}


.checklist-download-button:hover::before {
    left:
        135%;
}


.checklist-download-button span:last-child {
    display:
        inline-block;

    transition:
        transform 0.28s cubic-bezier(0.22,1,0.36,1);
}


.checklist-download-button:hover span:last-child {
    transform:
        translateY(2px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.checklists-empty-state {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        280px;

    padding:
        40px;

    border:
        1px dashed rgba(15, 39, 72, 0.15);

    border-radius:
        20px;

    background:
        rgba(255,255,255,0.78);

    text-align:
        center;
}


.checklists-empty-mark {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        58px;

    height:
        58px;

    margin-bottom:
        16px;

    border-radius:
        16px;

    background:
        rgba(15, 39, 72, 0.06);

    color:
        var(--blue-900);

    font-size:
        13px;

    font-weight:
        900;
}


.checklists-empty-state h2 {
    margin:
        0;

    color:
        var(--blue-900);

    font-size:
        19px;

    font-weight:
        850;
}


.checklists-empty-state p {
    margin:
        8px 0 0;

    color:
        #748191;

    font-size:
        12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

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


@media (max-width: 700px) {

    .checklists-archive-page {
        padding:
            120px 0 70px;
    }

    .checklists-archive-container {
        width:
            calc(100% - 32px);
    }

    .checklists-header {
        flex-direction:
            column;

        align-items:
            flex-start;

        min-height:
            auto;

        padding:
            30px 24px;

        border-radius:
            20px;
    }

    .checklists-header h1 {
        font-size:
            30px;
    }

    .checklists-header p {
        font-size:
            13px;
    }

    .checklists-header-mark {
        align-items:
            flex-start;
    }

    .checklists-header-mark span {
        width:
            68px;

        height:
            68px;

        border-radius:
            17px;

        font-size:
            20px;
    }

    .checklists-header-mark small {
        font-size:
            7px;
    }

    .checklists-grid {
        grid-template-columns:
            1fr;
    }
}


@media (max-width: 480px) {

    .checklists-archive-page {
        padding-top:
            105px;
    }

    .checklists-breadcrumb {
        margin-bottom:
            20px;

        gap:
            6px;

        font-size:
            10px;
    }

    .checklists-header {
        padding:
            25px 19px;
    }

    .checklists-header h1 {
        font-size:
            26px;
    }

    .checklist-document-card {
        min-height:
            250px;

        border-radius:
            17px;
    }

    .checklist-document-content h2 {
        font-size:
            16px;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .checklist-document-card:hover {
        transform:
            none;

        border-color:
            var(--line);

        box-shadow:
            0 8px 25px rgba(15, 39, 72, 0.042);
    }

    .checklist-document-card:hover::before {
        width:
            0;
    }

    .checklist-document-card:hover::after {
        opacity:
            0;
    }

    .checklist-document-card:hover .checklist-file-icon {
        transform:
            none;

        box-shadow:
            none;
    }

    .checklist-document-card:hover .checklist-category {
        background:
            rgba(15, 39, 72, 0.055);

        color:
            var(--blue-800);
    }

    .checklist-document-card:hover .checklist-document-content h2 {
        transform:
            none;
    }

    .checklist-download-button:hover {
        transform:
            none;

        background:
            var(--blue-900);

        border-color:
            var(--blue-900);

        box-shadow:
            none;
    }

    .checklist-download-button:hover span:last-child {
        transform:
            none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .checklists-breadcrumb a,
    .checklist-document-card,
    .checklist-document-card::before,
    .checklist-document-card::after,
    .checklist-file-icon,
    .checklist-category,
    .checklist-document-content h2,
    .checklist-download-button,
    .checklist-download-button::before,
    .checklist-download-button span:last-child {
        transition:
            none !important;
    }
}
/* =========================================================
   FINANCIAL STATEMENTS ARCHIVE
   PREMIUM FINANCIAL DOCUMENT CENTER
========================================================= */

.financial-statements-page {
    position:
        relative;

    padding:
        150px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 48%,
            #f8fafc 100%
        );
}


.financial-statements-container {
    width:
        min(1180px, calc(100% - 64px));

    margin:
        0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.financial-statements-breadcrumb {
    display:
        flex;

    align-items:
        center;

    flex-wrap:
        wrap;

    gap:
        9px;

    margin-bottom:
        28px;

    color:
        #7b8795;

    font-size:
        11px;

    font-weight:
        700;
}


.financial-statements-breadcrumb a {
    color:
        #6d7b8b;

    text-decoration:
        none;

    transition:
        color 0.25s ease;
}


.financial-statements-breadcrumb a:hover {
    color:
        var(--orange-dark);
}


.financial-statements-breadcrumb strong {
    color:
        var(--blue-900);

    font-weight:
        800;
}


/* =========================================================
   HEADER
========================================================= */

.financial-statements-header {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        35px;

    overflow:
        hidden;

    min-height:
        285px;

    padding:
        48px 50px;

    margin-bottom:
        40px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        28px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6f9fb 100%
        );

    box-shadow:
        0 17px 46px rgba(15, 39, 72, 0.05);
}


.financial-statements-header::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        );

    background-size:
        34px 34px;

    mask-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.9),
            transparent 85%
        );

    pointer-events:
        none;
}


.financial-statements-header::after {
    content:
        "";

    position:
        absolute;

    width:
        330px;

    height:
        330px;

    right:
        -145px;

    top:
        -165px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.12),
            transparent 68%
        );

    pointer-events:
        none;
}


.financial-statements-header-content {
    position:
        relative;

    z-index:
        2;

    max-width:
        790px;
}


.financial-statements-header h1 {
    margin:
        0;

    color:
        var(--blue-950);

    font-size:
        clamp(31px, 4vw, 52px);

    line-height:
        1.4;

    font-weight:
        900;
}


.financial-statements-header p {
    max-width:
        740px;

    margin:
        16px 0 0;

    color:
        #667587;

    font-size:
        14px;

    line-height:
        2.15;
}


/* =========================================================
   HEADER MARK
========================================================= */

.financial-statements-header-mark {
    position:
        relative;

    z-index:
        2;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;

    flex:
        0 0 auto;
}


.financial-statements-header-mark span {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        94px;

    height:
        94px;

    border-radius:
        24px;

    background:
        linear-gradient(
            145deg,
            var(--blue-900),
            var(--blue-700)
        );

    color:
        #fff;

    font-size:
        25px;

    font-weight:
        900;

    letter-spacing:
        0.04em;

    box-shadow:
        0 16px 30px rgba(15, 39, 72, 0.16);
}


.financial-statements-header-mark small {
    margin-top:
        10px;

    color:
        #8994a1;

    font-size:
        8px;

    font-weight:
        850;

    letter-spacing:
        0.10em;
}


/* =========================================================
   GROUPS
========================================================= */

.financial-statements-groups {
    display:
        flex;

    flex-direction:
        column;

    gap:
        36px;
}


.financial-statements-group {
    position:
        relative;
}


/* =========================================================
   GROUP HEADER
========================================================= */

.financial-group-header {
    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        20px;

    margin-bottom:
        16px;

    padding:
        0 4px;
}


.financial-group-kicker {
    display:
        block;

    margin-bottom:
        5px;

    color:
        #8793a0;

    font-size:
        10px;

    font-weight:
        800;
}


.financial-group-header h2 {
    margin:
        0;

    color:
        var(--blue-900);

    font-size:
        21px;

    line-height:
        1.6;

    font-weight:
        850;
}


.financial-group-count {
    display:
        inline-flex;

    align-items:
        center;

    min-height:
        28px;

    padding:
        5px 10px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        999px;

    background:
        rgba(15, 39, 72, 0.045);

    color:
        #738092;

    font-size:
        10px;

    font-weight:
        800;
}


/* =========================================================
   DOCUMENT GRID
========================================================= */

.financial-documents-grid {
    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        15px;
}


/* =========================================================
   DOCUMENT CARD
========================================================= */

.financial-document-card {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        18px;

    min-width:
        0;

    overflow:
        hidden;

    padding:
        18px;

    border:
        1px solid var(--line);

    border-radius:
        17px;

    background:
        #fff;

    box-shadow:
        0 7px 22px rgba(15, 39, 72, 0.035);

    transition:
        transform 0.38s cubic-bezier(0.22,1,0.36,1),
        border-color 0.3s ease,
        box-shadow 0.38s cubic-bezier(0.22,1,0.36,1);
}


.financial-document-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(242, 139, 47, 0.18);

    box-shadow:
        0 17px 36px rgba(15, 39, 72, 0.075);
}


/* Accent */

.financial-document-card::before {
    content:
        "";

    position:
        absolute;

    top:
        0;

    right:
        0;

    width:
        0;

    height:
        3px;

    background:
        var(--orange);

    transition:
        width 0.35s cubic-bezier(0.22,1,0.36,1);
}


.financial-document-card:hover::before {
    width:
        58px;
}


/* =========================================================
   DOCUMENT MAIN
========================================================= */

.financial-document-main {
    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    min-width:
        0;
}


.financial-file-icon {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex:
        0 0 48px;

    width:
        48px;

    height:
        56px;

    border:
        1px solid rgba(242, 139, 47, 0.15);

    border-radius:
        11px;

    background:
        rgba(242, 139, 47, 0.065);

    color:
        var(--orange-dark);

    font-size:
        9px;

    font-weight:
        900;

    letter-spacing:
        0.04em;

    transition:
        transform 0.32s cubic-bezier(0.22,1,0.36,1),
        background 0.25s ease,
        box-shadow 0.3s ease;
}


.financial-document-card:hover .financial-file-icon {
    transform:
        translateY(-2px)
        rotate(-2deg);

    background:
        rgba(242, 139, 47, 0.10);

    box-shadow:
        0 8px 18px rgba(242, 139, 47, 0.08);
}


/* =========================================================
   DOCUMENT INFO
========================================================= */

.financial-document-info {
    min-width:
        0;
}


.financial-document-type {
    display:
        block;

    margin-bottom:
        4px;

    color:
        #8995a2;

    font-size:
        9px;

    font-weight:
        800;
}


.financial-document-info h3 {
    overflow:
        hidden;

    margin:
        0;

    color:
        var(--blue-900);

    font-size:
        13px;

    line-height:
        1.7;

    font-weight:
        850;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;

    transition:
        color 0.25s ease,
        transform 0.3s cubic-bezier(0.22,1,0.36,1);
}


.financial-document-card:hover .financial-document-info h3 {
    color:
        var(--blue-700);

    transform:
        translateX(-2px);
}


.financial-document-info p {
    display:
        -webkit-box;

    margin:
        5px 0 0;

    overflow:
        hidden;

    color:
        #7a8795;

    font-size:
        10px;

    line-height:
        1.8;

    -webkit-line-clamp:
        2;

    line-clamp:
        2;

    -webkit-box-orient:
        vertical;
}


/* =========================================================
   ACTION
========================================================= */

.financial-document-action {
    flex:
        0 0 auto;
}


.financial-download-button {
    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        8px;

    min-height:
        40px;

    padding:
        9px 12px;

    overflow:
        hidden;

    border:
        1px solid var(--blue-900);

    border-radius:
        10px;

    background:
        var(--blue-900);

    color:
        #fff;

    font-size:
        10px;

    font-weight:
        800;

    text-decoration:
        none;

    transition:
        transform 0.28s cubic-bezier(0.22,1,0.36,1),
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.3s ease;
}


.financial-download-button:hover {
    transform:
        translateY(-2px);

    background:
        var(--orange);

    border-color:
        var(--orange);

    box-shadow:
        0 9px 20px rgba(242, 139, 47, 0.17);
}


/* Shine */

.financial-download-button::before {
    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        -120%;

    width:
        65%;

    height:
        100%;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255,255,255,0.22) 50%,
            transparent 80%
        );

    transform:
        skewX(-18deg);

    transition:
        left 0.6s ease;
}


.financial-download-button:hover::before {
    left:
        135%;
}


.financial-download-button span:last-child {
    display:
        inline-block;

    transition:
        transform 0.28s cubic-bezier(0.22,1,0.36,1);
}


.financial-download-button:hover span:last-child {
    transform:
        translateY(2px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.financial-empty-state {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        280px;

    padding:
        40px;

    border:
        1px dashed rgba(15, 39, 72, 0.15);

    border-radius:
        20px;

    background:
        rgba(255,255,255,0.78);

    text-align:
        center;
}


.financial-empty-mark {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        58px;

    height:
        58px;

    margin-bottom:
        16px;

    border-radius:
        16px;

    background:
        rgba(15, 39, 72, 0.06);

    color:
        var(--blue-900);

    font-size:
        13px;

    font-weight:
        900;
}


.financial-empty-state h2 {
    margin:
        0;

    color:
        var(--blue-900);

    font-size:
        19px;

    font-weight:
        850;
}


.financial-empty-state p {
    margin:
        8px 0 0;

    color:
        #748191;

    font-size:
        12px;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 900px) {

    .financial-documents-grid {
        grid-template-columns:
            1fr;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 700px) {

    .financial-statements-page {
        padding:
            120px 0 70px;
    }

    .financial-statements-container {
        width:
            calc(100% - 32px);
    }

    .financial-statements-header {
        flex-direction:
            column;

        align-items:
            flex-start;

        min-height:
            auto;

        padding:
            30px 24px;

        border-radius:
            20px;
    }

    .financial-statements-header h1 {
        font-size:
            30px;
    }

    .financial-statements-header p {
        font-size:
            13px;
    }

    .financial-statements-header-mark {
        align-items:
            flex-start;
    }

    .financial-statements-header-mark span {
        width:
            68px;

        height:
            68px;

        border-radius:
            17px;

        font-size:
            20px;
    }

    .financial-statements-header-mark small {
        font-size:
            7px;
    }

    .financial-group-header {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            9px;
    }

    .financial-document-card {
        align-items:
            flex-start;

        flex-direction:
            column;

        padding:
            15px;
    }

    .financial-document-main {
        width:
            100%;
    }

    .financial-document-action {
        width:
            100%;
    }

    .financial-download-button {
        width:
            100%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .financial-statements-page {
        padding-top:
            105px;
    }

    .financial-statements-breadcrumb {
        margin-bottom:
            20px;

        gap:
            6px;

        font-size:
            10px;
    }

    .financial-statements-header {
        padding:
            25px 19px;
    }

    .financial-statements-header h1 {
        font-size:
            26px;
    }

    .financial-document-info h3 {
        white-space:
            normal;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .financial-document-card:hover {
        transform:
            none;

        border-color:
            var(--line);

        box-shadow:
            0 7px 22px rgba(15, 39, 72, 0.035);
    }

    .financial-document-card:hover::before {
        width:
            0;
    }

    .financial-document-card:hover .financial-file-icon {
        transform:
            none;

        box-shadow:
            none;
    }

    .financial-document-card:hover .financial-document-info h3 {
        transform:
            none;
    }

    .financial-download-button:hover {
        transform:
            none;

        background:
            var(--blue-900);

        border-color:
            var(--blue-900);

        box-shadow:
            none;
    }

    .financial-download-button:hover span:last-child {
        transform:
            none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .financial-statements-breadcrumb a,
    .financial-document-card,
    .financial-document-card::before,
    .financial-file-icon,
    .financial-document-info h3,
    .financial-download-button,
    .financial-download-button::before,
    .financial-download-button span:last-child {
        transition:
            none !important;
    }
}
/* =========================================================
   PARTNER DETAIL PAGE
   PREMIUM CORPORATE PROFILE
========================================================= */

.partner-detail-page {
    position: relative;

    padding:
        150px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 48%,
            #f8fafc 100%
        );
}


.partner-detail-container {
    width:
        min(1180px, calc(100% - 64px));

    margin:
        0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.partner-detail-breadcrumb {
    display:
        flex;

    align-items:
        center;

    flex-wrap:
        wrap;

    gap:
        9px;

    margin-bottom:
        28px;

    color:
        #7b8795;

    font-size:
        11px;

    font-weight:
        700;
}


.partner-detail-breadcrumb a {
    color:
        #6d7b8b;

    text-decoration:
        none;

    transition:
        color 0.25s ease;
}


.partner-detail-breadcrumb a:hover {
    color:
        var(--orange-dark);
}


.partner-detail-breadcrumb strong {
    color:
        var(--blue-900);

    font-weight:
        800;
}


/* =========================================================
   HERO
========================================================= */

.partner-detail-hero {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        35px;

    overflow:
        hidden;

    min-height:
        300px;

    padding:
        50px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        28px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6f9fb 100%
        );

    box-shadow:
        0 17px 46px rgba(15, 39, 72, 0.055);
}


/* Grid */

.partner-detail-hero::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        );

    background-size:
        34px 34px;

    mask-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.9),
            transparent 85%
        );

    pointer-events:
        none;
}


/* Orange Glow */

.partner-detail-hero::after {
    content:
        "";

    position:
        absolute;

    width:
        320px;

    height:
        320px;

    right:
        -140px;

    top:
        -160px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.12),
            transparent 68%
        );

    pointer-events:
        none;
}


.partner-detail-main {
    position:
        relative;

    z-index:
        2;

    max-width:
        800px;
}


.partner-detail-kicker {
    display:
        inline-flex;

    align-items:
        center;

    min-height:
        28px;

    padding:
        5px 11px;

    margin-bottom:
        15px;

    border:
        1px solid rgba(242, 139, 47, 0.14);

    border-radius:
        999px;

    background:
        rgba(242, 139, 47, 0.07);

    color:
        var(--orange-dark);

    font-size:
        10px;

    font-weight:
        850;
}


.partner-detail-hero h1 {
    margin:
        0;

    color:
        var(--blue-950);

    font-size:
        clamp(32px, 4vw, 54px);

    line-height:
        1.4;

    font-weight:
        900;

    letter-spacing:
        -0.02em;
}


.partner-detail-position {
    margin-top:
        9px;

    color:
        var(--blue-700);

    font-size:
        15px;

    font-weight:
        800;
}


.partner-detail-summary {
    max-width:
        760px;

    margin:
        16px 0 0;

    color:
        #657587;

    font-size:
        14px;

    line-height:
        2.15;
}


/* =========================================================
   BRAND MARK
========================================================= */

.partner-detail-mark {
    position:
        relative;

    z-index:
        2;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;

    flex:
        0 0 auto;
}


.partner-detail-mark span {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        94px;

    height:
        94px;

    border-radius:
        24px;

    background:
        linear-gradient(
            145deg,
            var(--blue-900),
            var(--blue-700)
        );

    color:
        #fff;

    font-size:
        25px;

    font-weight:
        900;

    letter-spacing:
        0.04em;

    box-shadow:
        0 16px 30px rgba(15, 39, 72, 0.16);
}


.partner-detail-mark small {
    margin-top:
        10px;

    color:
        #8994a1;

    font-size:
        8px;

    font-weight:
        850;

    letter-spacing:
        0.11em;
}


/* =========================================================
   LAYOUT
========================================================= */

.partner-detail-layout {
    display:
        grid;

    grid-template-columns:
        minmax(0, 1fr)
        310px;

    align-items:
        start;

    gap:
        34px;

    margin-top:
        34px;
}


/* =========================================================
   CONTENT
========================================================= */

.partner-detail-content {
    min-width:
        0;

    padding:
        38px 42px;

    border:
        1px solid var(--line);

    border-radius:
        22px;

    background:
        #fff;

    box-shadow:
        0 10px 30px rgba(15, 39, 72, 0.04);
}


.partner-content-header {
    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    margin-bottom:
        28px;
}


.partner-content-header span {
    flex:
        0 0 auto;

    color:
        var(--blue-900);

    font-size:
        12px;

    font-weight:
        850;
}


.partner-content-header div {
    height:
        1px;

    flex:
        1;

    background:
        linear-gradient(
            90deg,
            rgba(15, 39, 72, 0.10),
            transparent
        );
}


/* =========================================================
   BIOGRAPHY
========================================================= */

.partner-richtext {
    color:
        #4f5f70;

    font-size:
        14px;

    line-height:
        2.2;
}


.partner-richtext p {
    margin:
        0 0 18px;
}


.partner-richtext h2 {
    margin:
        34px 0 13px;

    color:
        var(--blue-900);

    font-size:
        22px;

    line-height:
        1.7;

    font-weight:
        850;
}


.partner-richtext h3 {
    margin:
        27px 0 11px;

    color:
        var(--blue-900);

    font-size:
        18px;

    line-height:
        1.75;

    font-weight:
        850;
}


.partner-richtext strong {
    color:
        var(--blue-900);

    font-weight:
        850;
}


.partner-richtext ul,
.partner-richtext ol {
    margin:
        17px 0 23px;

    padding-right:
        23px;
}


.partner-richtext li {
    margin-bottom:
        9px;
}


.partner-richtext li::marker {
    color:
        var(--orange);
}


.partner-richtext a {
    color:
        var(--blue-700);

    text-decoration:
        none;

    transition:
        color 0.25s ease;
}


.partner-richtext a:hover {
    color:
        var(--orange-dark);
}


.partner-empty-content {
    margin:
        0;

    color:
        #7b8795;

    font-size:
        13px;

    line-height:
        2;
}


/* =========================================================
   SIDEBAR
========================================================= */

.partner-detail-sidebar {
    position:
        sticky;

    top:
        105px;

    display:
        flex;

    flex-direction:
        column;

    gap:
        16px;
}


/* Profile Card */

.partner-profile-card {
    position:
        relative;

    overflow:
        hidden;

    padding:
        28px 25px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        20px;

    background:
        linear-gradient(
            145deg,
            var(--blue-900),
            #143b62
        );

    color:
        #fff;

    box-shadow:
        0 16px 34px rgba(15, 39, 72, 0.12);
}


.partner-profile-card::after {
    content:
        "";

    position:
        absolute;

    width:
        190px;

    height:
        190px;

    right:
        -100px;

    bottom:
        -115px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.20),
            transparent 68%
        );
}


.partner-profile-mark {
    position:
        relative;

    z-index:
        2;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        56px;

    height:
        56px;

    margin-bottom:
        19px;

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius:
        15px;

    background:
        rgba(255,255,255,0.08);

    color:
        #fff;

    font-size:
        13px;

    font-weight:
        900;
}


.partner-profile-label {
    position:
        relative;

    z-index:
        2;

    display:
        block;

    margin-bottom:
        7px;

    color:
        rgba(255,255,255,0.55);

    font-size:
        9px;

    font-weight:
        850;

    letter-spacing:
        0.08em;
}


.partner-profile-card h2 {
    position:
        relative;

    z-index:
        2;

    margin:
        0;

    color:
        #fff;

    font-size:
        19px;

    line-height:
        1.7;

    font-weight:
        850;
}


.partner-profile-card p {
    position:
        relative;

    z-index:
        2;

    margin:
        6px 0 0;

    color:
        rgba(255,255,255,0.68);

    font-size:
        11px;

    line-height:
        1.8;
}


/* =========================================================
   SIDEBAR SECOND CARD
========================================================= */

.partner-sidebar-card {
    display:
        flex;

    flex-direction:
        column;

    gap:
        4px;

    padding:
        18px;

    border:
        1px solid var(--line);

    border-radius:
        16px;

    background:
        #fff;
}


.partner-sidebar-card > span {
    color:
        #8994a1;

    font-size:
        9px;

    line-height:
        1.7;
}


.partner-sidebar-card > strong {
    color:
        var(--blue-900);

    font-size:
        13px;

    font-weight:
        850;
}


.partner-sidebar-link {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        10px;

    margin-top:
        13px;

    padding-top:
        13px;

    border-top:
        1px solid rgba(15, 39, 72, 0.07);

    color:
        var(--blue-800);

    font-size:
        11px;

    font-weight:
        850;

    text-decoration:
        none;

    transition:
        color 0.25s ease;
}


.partner-sidebar-link:hover {
    color:
        var(--orange-dark);
}


.partner-sidebar-link span:last-child {
    transition:
        transform 0.28s ease;
}


.partner-sidebar-link:hover span:last-child {
    transform:
        translateX(-4px);
}


/* =========================================================
   BOTTOM LINK
========================================================= */

.partner-detail-bottom {
    margin-top:
        28px;
}


.partner-back-link {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    color:
        var(--blue-800);

    font-size:
        12px;

    font-weight:
        850;

    text-decoration:
        none;

    transition:
        color 0.25s ease,
        gap 0.28s cubic-bezier(0.22,1,0.36,1);
}


.partner-back-link:hover {
    color:
        var(--orange-dark);

    gap:
        13px;
}


.partner-back-link span:first-child {
    transition:
        transform 0.28s cubic-bezier(0.22,1,0.36,1);
}


.partner-back-link:hover span:first-child {
    transform:
        translateX(4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .partner-detail-layout {
        grid-template-columns:
            1fr;
    }

    .partner-detail-sidebar {
        position:
            static;

        display:
            grid;

        grid-template-columns:
            1fr 1fr;
    }
}


@media (max-width: 700px) {

    .partner-detail-page {
        padding:
            120px 0 70px;
    }

    .partner-detail-container {
        width:
            calc(100% - 32px);
    }

    .partner-detail-hero {
        flex-direction:
            column;

        align-items:
            flex-start;

        min-height:
            auto;

        padding:
            30px 24px;

        border-radius:
            20px;
    }

    .partner-detail-hero h1 {
        font-size:
            30px;
    }

    .partner-detail-position {
        font-size:
            13px;
    }

    .partner-detail-summary {
        font-size:
            13px;
    }

    .partner-detail-mark {
        align-items:
            flex-start;
    }

    .partner-detail-mark span {
        width:
            68px;

        height:
            68px;

        border-radius:
            17px;

        font-size:
            20px;
    }

    .partner-detail-mark small {
        font-size:
            7px;
    }

    .partner-detail-content {
        padding:
            27px 20px;

        border-radius:
            18px;
    }

    .partner-richtext {
        font-size:
            13px;

        line-height:
            2.08;
    }

    .partner-richtext h2 {
        font-size:
            20px;
    }

    .partner-richtext h3 {
        font-size:
            17px;
    }

    .partner-detail-sidebar {
        grid-template-columns:
            1fr;
    }
}


@media (max-width: 480px) {

    .partner-detail-page {
        padding-top:
            105px;
    }

    .partner-detail-breadcrumb {
        margin-bottom:
            20px;

        gap:
            6px;

        font-size:
            10px;
    }

    .partner-detail-hero {
        padding:
            25px 19px;
    }

    .partner-detail-hero h1 {
        font-size:
            26px;
    }

    .partner-detail-content {
        padding:
            22px 17px;
    }

    .partner-profile-card {
        padding:
            23px 20px;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .partner-sidebar-link:hover {
        color:
            var(--blue-800);
    }

    .partner-sidebar-link:hover span:last-child {
        transform:
            none;
    }

    .partner-back-link:hover {
        gap:
            9px;

        color:
            var(--blue-800);
    }

    .partner-back-link:hover span:first-child {
        transform:
            none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .partner-detail-breadcrumb a,
    .partner-richtext a,
    .partner-sidebar-link,
    .partner-sidebar-link span:last-child,
    .partner-back-link,
    .partner-back-link span:first-child {
        transition:
            none !important;
    }
}
/* =========================================================
   RESUME DETAIL PAGE
   PREMIUM TRACK RECORD
========================================================= */

.resume-detail-page {
    position:
        relative;

    padding:
        150px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 48%,
            #f8fafc 100%
        );
}


.resume-detail-container {
    width:
        min(1180px, calc(100% - 64px));

    margin:
        0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.resume-detail-breadcrumb {
    display:
        flex;

    align-items:
        center;

    flex-wrap:
        wrap;

    gap:
        9px;

    margin-bottom:
        28px;

    color:
        #7b8795;

    font-size:
        11px;

    font-weight:
        700;
}


.resume-detail-breadcrumb a {
    color:
        #6d7b8b;

    text-decoration:
        none;

    transition:
        color 0.25s ease;
}


.resume-detail-breadcrumb a:hover {
    color:
        var(--orange-dark);
}


.resume-detail-breadcrumb strong {
    color:
        var(--blue-900);

    font-weight:
        800;
}


/* =========================================================
   HEADER
========================================================= */

.resume-detail-header {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        35px;

    overflow:
        hidden;

    min-height:
        285px;

    padding:
        48px 50px;

    margin-bottom:
        40px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        28px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6f9fb 100%
        );

    box-shadow:
        0 17px 46px rgba(15, 39, 72, 0.05);
}


.resume-detail-header::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 39, 72, 0.032) 1px,
            transparent 1px
        );

    background-size:
        34px 34px;

    mask-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.9),
            transparent 85%
        );

    pointer-events:
        none;
}


.resume-detail-header::after {
    content:
        "";

    position:
        absolute;

    width:
        330px;

    height:
        330px;

    right:
        -145px;

    top:
        -165px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.12),
            transparent 68%
        );

    pointer-events:
        none;
}


.resume-detail-header-content {
    position:
        relative;

    z-index:
        2;

    max-width:
        800px;
}


.resume-detail-header h1 {
    margin:
        0;

    color:
        var(--blue-950);

    font-size:
        clamp(31px, 4vw, 52px);

    line-height:
        1.4;

    font-weight:
        900;
}


.resume-detail-header p {
    max-width:
        740px;

    margin:
        16px 0 0;

    color:
        #667587;

    font-size:
        14px;

    line-height:
        2.15;
}


/* =========================================================
   MARK
========================================================= */

.resume-detail-mark {
    position:
        relative;

    z-index:
        2;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;

    flex:
        0 0 auto;
}


.resume-detail-mark span {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        94px;

    height:
        94px;

    border-radius:
        24px;

    background:
        linear-gradient(
            145deg,
            var(--blue-900),
            var(--blue-700)
        );

    color:
        #fff;

    font-size:
        25px;

    font-weight:
        900;

    letter-spacing:
        0.04em;

    box-shadow:
        0 16px 30px rgba(15, 39, 72, 0.16);
}


.resume-detail-mark small {
    margin-top:
        10px;

    color:
        #8994a1;

    font-size:
        8px;

    font-weight:
        850;

    letter-spacing:
        0.10em;
}


/* =========================================================
   CATEGORY LIST
========================================================= */

.resume-categories {
    display:
        flex;

    flex-direction:
        column;

    gap:
        38px;
}


/* =========================================================
   CATEGORY SECTION
========================================================= */

.resume-category-section {
    position:
        relative;
}


.resume-category-header {
    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        20px;

    margin-bottom:
        16px;

    padding:
        0 4px;
}


.resume-category-kicker {
    display:
        block;

    margin-bottom:
        5px;

    color:
        #8793a0;

    font-size:
        10px;

    font-weight:
        800;
}


.resume-category-header h2 {
    margin:
        0;

    color:
        var(--blue-900);

    font-size:
        21px;

    line-height:
        1.6;

    font-weight:
        850;
}


.resume-category-count {
    display:
        inline-flex;

    align-items:
        center;

    min-height:
        28px;

    padding:
        5px 10px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        999px;

    background:
        rgba(15, 39, 72, 0.045);

    color:
        #738092;

    font-size:
        10px;

    font-weight:
        800;
}


/* =========================================================
   TABLE WRAPPER
========================================================= */

.resume-detail-table-wrap {
    position:
        relative;

    overflow:
        hidden;

    border:
        1px solid var(--line);

    border-radius:
        20px;

    background:
        #fff;

    box-shadow:
        0 9px 27px rgba(15, 39, 72, 0.042);

    transition:
        border-color 0.3s ease,
        box-shadow 0.35s ease;
}


.resume-detail-table-wrap:hover {
    border-color:
        rgba(242, 139, 47, 0.16);

    box-shadow:
        0 17px 38px rgba(15, 39, 72, 0.065);
}


/* =========================================================
   TABLE
========================================================= */

.resume-detail-table {
    width:
        100%;

    border-collapse:
        separate;

    border-spacing:
        0;

    direction:
        rtl;
}


/* Header */

.resume-detail-table thead th {
    position:
        relative;

    padding:
        17px 21px;

    background:
        linear-gradient(
            180deg,
            #f8fafc,
            #f3f6f9
        );

    border-bottom:
        1px solid var(--line);

    color:
        var(--blue-900);

    font-size:
        12px;

    font-weight:
        850;

    text-align:
        right;
}


.resume-detail-table thead th::after {
    content:
        "";

    position:
        absolute;

    right:
        20px;

    bottom:
        -1px;

    width:
        0;

    height:
        2px;

    border-radius:
        99px;

    background:
        var(--orange);

    transition:
        width 0.35s cubic-bezier(0.22,1,0.36,1);
}


.resume-detail-table-wrap:hover
.resume-detail-table thead th::after {
    width:
        36px;
}


/* Body */

.resume-detail-table tbody tr {
    background:
        #fff;

    transition:
        background 0.3s ease;
}


.resume-detail-table tbody tr:not(:last-child) td {
    border-bottom:
        1px solid rgba(221, 228, 235, 0.72);
}


.resume-detail-table tbody tr:hover {
    background:
        linear-gradient(
            90deg,
            rgba(242, 139, 47, 0.025),
            rgba(15, 39, 72, 0.015)
        );
}


.resume-detail-table tbody td {
    padding:
        19px 21px;

    color:
        #536274;

    font-size:
        13px;

    line-height:
        1.95;

    vertical-align:
        middle;

    transition:
        color 0.25s ease;
}


/* =========================================================
   ORGANIZATION
========================================================= */

.resume-organization {
    width:
        35%;
}


.resume-organization-name {
    display:
        flex;

    align-items:
        center;

    gap:
        11px;
}


.resume-row-mark {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    flex:
        0 0 38px;

    width:
        38px;

    height:
        38px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        10px;

    background:
        rgba(15, 39, 72, 0.055);

    color:
        var(--blue-900);

    font-size:
        9px;

    font-weight:
        900;

    transition:
        transform 0.3s cubic-bezier(0.22,1,0.36,1),
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.resume-detail-table tbody tr:hover .resume-row-mark {
    transform:
        translateY(-2px);

    color:
        var(--orange-dark);

    background:
        rgba(242, 139, 47, 0.08);

    border-color:
        rgba(242, 139, 47, 0.15);
}


.resume-organization-name strong {
    color:
        var(--blue-900);

    font-size:
        13px;

    font-weight:
        850;

    transition:
        color 0.25s ease,
        transform 0.3s ease;
}


.resume-detail-table tbody tr:hover
.resume-organization-name strong {
    color:
        var(--orange-dark);

    transform:
        translateX(-2px);
}


/* =========================================================
   EMPTY CATEGORY
========================================================= */

.resume-empty-category {
    padding:
        24px;

    border:
        1px dashed rgba(15, 39, 72, 0.14);

    border-radius:
        16px;

    background:
        rgba(255,255,255,0.7);

    color:
        #7d8996;

    font-size:
        12px;

    text-align:
        center;
}


/* =========================================================
   GLOBAL EMPTY STATE
========================================================= */

.resume-empty-state {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        290px;

    padding:
        40px;

    border:
        1px dashed rgba(15, 39, 72, 0.15);

    border-radius:
        20px;

    background:
        rgba(255,255,255,0.78);

    text-align:
        center;
}


.resume-empty-mark {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        58px;

    height:
        58px;

    margin-bottom:
        16px;

    border-radius:
        16px;

    background:
        rgba(15, 39, 72, 0.06);

    color:
        var(--blue-900);

    font-size:
        13px;

    font-weight:
        900;
}


.resume-empty-state h2 {
    margin:
        0;

    color:
        var(--blue-900);

    font-size:
        19px;

    font-weight:
        850;
}


.resume-empty-state p {
    margin:
        8px 0 0;

    color:
        #748191;

    font-size:
        12px;
}


/* =========================================================
   BOTTOM LINK
========================================================= */

.resume-detail-bottom {
    margin-top:
        28px;
}


.resume-back-link {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    color:
        var(--blue-800);

    font-size:
        12px;

    font-weight:
        850;

    text-decoration:
        none;

    transition:
        color 0.25s ease,
        gap 0.28s cubic-bezier(0.22,1,0.36,1);
}


.resume-back-link:hover {
    color:
        var(--orange-dark);

    gap:
        13px;
}


.resume-back-link span:first-child {
    transition:
        transform 0.28s cubic-bezier(0.22,1,0.36,1);
}


.resume-back-link:hover span:first-child {
    transform:
        translateX(4px);
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 900px) {

    .resume-detail-table-wrap {
        overflow-x:
            auto;

        -webkit-overflow-scrolling:
            touch;
    }

    .resume-detail-table {
        min-width:
            720px;
    }
}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 700px) {

    .resume-detail-page {
        padding:
            120px 0 70px;
    }

    .resume-detail-container {
        width:
            calc(100% - 32px);
    }

    .resume-detail-header {
        flex-direction:
            column;

        align-items:
            flex-start;

        min-height:
            auto;

        padding:
            30px 24px;

        border-radius:
            20px;
    }

    .resume-detail-header h1 {
        font-size:
            30px;
    }

    .resume-detail-header p {
        font-size:
            13px;
    }

    .resume-detail-mark {
        align-items:
            flex-start;
    }

    .resume-detail-mark span {
        width:
            68px;

        height:
            68px;

        border-radius:
            17px;

        font-size:
            20px;
    }

    .resume-detail-mark small {
        font-size:
            7px;
    }

    .resume-category-header {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            9px;
    }

    .resume-category-header h2 {
        font-size:
            19px;
    }

    .resume-detail-table {
        min-width:
            690px;
    }
}


@media (max-width: 480px) {

    .resume-detail-page {
        padding-top:
            105px;
    }

    .resume-detail-breadcrumb {
        margin-bottom:
            20px;

        gap:
            6px;

        font-size:
            10px;
    }

    .resume-detail-header {
        padding:
            25px 19px;
    }

    .resume-detail-header h1 {
        font-size:
            26px;
    }

    .resume-detail-table thead th {
        padding:
            14px 15px;
    }

    .resume-detail-table tbody td {
        padding:
            15px;
    }
}


/* =========================================================
   TOUCH
========================================================= */

@media (hover: none) {

    .resume-detail-table-wrap:hover {
        border-color:
            var(--line);

        box-shadow:
            0 9px 27px rgba(15, 39, 72, 0.042);
    }

    .resume-detail-table-wrap:hover
    .resume-detail-table thead th::after {
        width:
            0;
    }

    .resume-detail-table tbody tr:hover {
        background:
            #fff;
    }

    .resume-detail-table tbody tr:hover
    .resume-row-mark {
        transform:
            none;

        color:
            var(--blue-900);

        background:
            rgba(15, 39, 72, 0.055);

        border-color:
            rgba(15, 39, 72, 0.08);
    }

    .resume-detail-table tbody tr:hover
    .resume-organization-name strong {
        transform:
            none;

        color:
            var(--blue-900);
    }

    .resume-back-link:hover {
        gap:
            9px;

        color:
            var(--blue-800);
    }

    .resume-back-link:hover span:first-child {
        transform:
            none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .resume-detail-breadcrumb a,
    .resume-detail-table-wrap,
    .resume-detail-table thead th::after,
    .resume-detail-table tbody tr,
    .resume-detail-table tbody td,
    .resume-row-mark,
    .resume-organization-name strong,
    .resume-back-link,
    .resume-back-link span:first-child {
        transition:
            none !important;
    }
}
/* =========================================================
   STATUTE DETAIL PAGE
   PREMIUM LEGAL DOCUMENT
========================================================= */

.statute-detail-page {
    position: relative;

    padding:
        150px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 48%,
            #f8fafc 100%
        );
}


.statute-detail-container {
    width:
        min(980px, calc(100% - 64px));

    margin:
        0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.statute-breadcrumb {
    display:
        flex;

    align-items:
        center;

    flex-wrap:
        wrap;

    gap:
        9px;

    margin-bottom:
        28px;

    color:
        #7b8795;

    font-size:
        11px;

    font-weight:
        700;
}


.statute-breadcrumb a {
    color:
        #6d7b8b;

    text-decoration:
        none;

    transition:
        color 0.25s ease;
}


.statute-breadcrumb a:hover {
    color:
        var(--orange-dark);
}


.statute-breadcrumb strong {
    color:
        var(--blue-900);

    font-weight:
        800;
}


/* =========================================================
   HEADER
========================================================= */

.statute-header {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    overflow:
        hidden;

    min-height:
        270px;

    padding:
        45px 46px;

    margin-bottom:
        22px;

    border:
        1px solid rgba(15, 39, 72, 0.08);

    border-radius:
        26px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6f9fb 100%
        );

    box-shadow:
        0 16px 42px rgba(15, 39, 72, 0.05);
}


.statute-header::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(15, 39, 72, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 39, 72, 0.03) 1px,
            transparent 1px
        );

    background-size:
        34px 34px;

    mask-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.85),
            transparent 85%
        );

    pointer-events:
        none;
}


.statute-header::after {
    content:
        "";

    position:
        absolute;

    width:
        320px;

    height:
        320px;

    right:
        -140px;

    top:
        -160px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 139, 47, 0.11),
            transparent 68%
        );

    pointer-events:
        none;
}


.statute-header-content {
    position:
        relative;

    z-index:
        2;

    max-width:
        690px;
}


.statute-header .section-kicker {
    margin-bottom:
        13px;
}


.statute-header h1 {
    margin:
        0;

    color:
        var(--blue-950);

    font-size:
        clamp(30px, 4vw, 48px);

    line-height:
        1.45;

    font-weight:
        900;
}


.statute-header p {
    max-width:
        650px;

    margin:
        15px 0 0;

    color:
        #667587;

    font-size:
        14px;

    line-height:
        2.1;
}


/* =========================================================
   HEADER MARK
========================================================= */

.statute-header-mark {
    position:
        relative;

    z-index:
        2;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;

    flex:
        0 0 auto;
}


.statute-header-mark span {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        88px;

    height:
        88px;

    border-radius:
        23px;

    background:
        linear-gradient(
            145deg,
            var(--blue-900),
            var(--blue-700)
        );

    color:
        #fff;

    font-size:
        24px;

    font-weight:
        900;

    letter-spacing:
        0.04em;

    box-shadow:
        0 15px 28px rgba(15, 39, 72, 0.15);
}


.statute-header-mark small {
    margin-top:
        10px;

    color:
        #8994a1;

    font-size:
        8px;

    font-weight:
        850;

    letter-spacing:
        0.10em;
}


/* =========================================================
   LEGAL NOTICE
========================================================= */

.statute-notice {
    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    padding:
        15px 17px;

    margin-bottom:
        18px;

    border:
        1px solid rgba(242, 139, 47, 0.14);

    border-radius:
        15px;

    background:
        rgba(242, 139, 47, 0.045);
}


.statute-notice-icon {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex:
        0 0 34px;

    width:
        34px;

    height:
        34px;

    border-radius:
        10px;

    background:
        rgba(242, 139, 47, 0.10);

    color:
        var(--orange-dark);

    font-size:
        13px;

    font-weight:
        900;
}


.statute-notice strong {
    display:
        block;

    margin-bottom:
        2px;

    color:
        var(--blue-900);

    font-size:
        11px;

    font-weight:
        850;
}


.statute-notice p {
    margin:
        0;

    color:
        #788594;

    font-size:
        10px;

    line-height:
        1.8;
}


/* =========================================================
   CONTENT CARD
========================================================= */

.statute-content-card {
    padding:
        38px 42px;

    border:
        1px solid var(--line);

    border-radius:
        22px;

    background:
        #fff;

    box-shadow:
        0 10px 30px rgba(15, 39, 72, 0.04);
}


/* =========================================================
   CONTENT HEADER
========================================================= */

.statute-content-header {
    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    margin-bottom:
        28px;
}


.statute-content-header span {
    flex:
        0 0 auto;

    color:
        var(--blue-900);

    font-size:
        12px;

    font-weight:
        850;
}


.statute-content-header div {
    flex:
        1;

    height:
        1px;

    background:
        linear-gradient(
            90deg,
            rgba(15,39,72,0.11),
            transparent
        );
}


/* =========================================================
   LEGAL RICHTEXT
========================================================= */

.statute-richtext {
    color:
        #4d5d6e;

    font-size:
        14px;

    line-height:
        2.25;

    text-align:
        justify;
}


.statute-richtext p {
    margin:
        0 0 20px;
}


.statute-richtext h2 {
    margin:
        36px 0 14px;

    padding-right:
        13px;

    border-right:
        3px solid var(--orange);

    color:
        var(--blue-900);

    font-size:
        22px;

    line-height:
        1.7;

    font-weight:
        850;
}


.statute-richtext h3 {
    margin:
        28px 0 11px;

    color:
        var(--blue-900);

    font-size:
        18px;

    line-height:
        1.7;

    font-weight:
        850;
}


.statute-richtext h4 {
    margin:
        23px 0 9px;

    color:
        var(--blue-800);

    font-size:
        15px;

    font-weight:
        850;
}


.statute-richtext strong {
    color:
        var(--blue-900);

    font-weight:
        850;
}


.statute-richtext ul,
.statute-richtext ol {
    margin:
        17px 0 24px;

    padding-right:
        25px;
}


.statute-richtext li {
    margin-bottom:
        10px;
}


.statute-richtext li::marker {
    color:
        var(--orange);
}


.statute-richtext a {
    color:
        var(--blue-700);

    font-weight:
        750;

    text-decoration:
        none;

    transition:
        color 0.25s ease;
}


.statute-richtext a:hover {
    color:
        var(--orange-dark);
}


.statute-richtext blockquote {
    margin:
        30px 0;

    padding:
        20px 22px;

    border-right:
        3px solid var(--orange);

    border-radius:
        0 12px 12px 0;

    background:
        rgba(242, 139, 47, 0.045);

    color:
        var(--blue-800);
}


/* =========================================================
   BOTTOM LINK
========================================================= */

.statute-detail-bottom {
    margin-top:
        25px;
}


.statute-back-link {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    color:
        var(--blue-800);

    font-size:
        12px;

    font-weight:
        850;

    text-decoration:
        none;

    transition:
        color 0.25s ease,
        gap 0.28s cubic-bezier(0.22,1,0.36,1);
}


.statute-back-link:hover {
    color:
        var(--orange-dark);

    gap:
        13px;
}


.statute-back-link span:first-child {
    transition:
        transform 0.28s cubic-bezier(0.22,1,0.36,1);
}


.statute-back-link:hover span:first-child {
    transform:
        translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 700px) {

    .statute-detail-page {
        padding:
            120px 0 70px;
    }

    .statute-detail-container {
        width:
            calc(100% - 32px);
    }

    .statute-header {
        flex-direction:
            column;

        align-items:
            flex-start;

        min-height:
            auto;

        padding:
            30px 24px;

        border-radius:
            20px;
    }

    .statute-header h1 {
        font-size:
            30px;
    }

    .statute-header p {
        font-size:
            13px;
    }

    .statute-header-mark {
        align-items:
            flex-start;
    }

    .statute-header-mark span {
        width:
            68px;

        height:
            68px;

        border-radius:
            17px;

        font-size:
            20px;
    }

    .statute-header-mark small {
        font-size:
            7px;
    }

    .statute-content-card {
        padding:
            27px 20px;

        border-radius:
            18px;
    }

    .statute-richtext {
        font-size:
            13px;

        line-height:
            2.12;

        text-align:
            right;
    }

    .statute-richtext h2 {
        font-size:
            20px;
    }

    .statute-richtext h3 {
        font-size:
            17px;
    }
}


@media (max-width: 480px) {

    .statute-detail-page {
        padding-top:
            105px;
    }

    .statute-breadcrumb {
        margin-bottom:
            20px;

        gap:
            6px;

        font-size:
            10px;
    }

    .statute-header {
        padding:
            25px 19px;
    }

    .statute-header h1 {
        font-size:
            26px;
    }

    .statute-content-card {
        padding:
            22px 17px;
    }

    .statute-notice {
        align-items:
            flex-start;
    }
}


/* =========================================================
   TOUCH
========================================================= */

@media (hover: none) {

    .statute-back-link:hover {
        gap:
            9px;

        color:
            var(--blue-800);
    }

    .statute-back-link:hover span:first-child {
        transform:
            none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .statute-breadcrumb a,
    .statute-richtext a,
    .statute-back-link,
    .statute-back-link span:first-child {
        transition:
            none !important;
    }
}
/* =========================================================
   HEADER - DYNAMIC DROPDOWN NAVIGATION
========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link-item,
.nav-dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-arrow {
    font-size: 11px;
    transition: transform .2s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown:focus-within .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: -12px;
    width: 280px;
    max-height: 460px;
    overflow-y: auto;
    padding: 9px;
    border: 1px solid rgba(20, 35, 60, 0.10);
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 45px rgba(20,35,60,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 13px;
    border-radius: 11px;
    color: #26364a;
    text-decoration: none;
    transition:
        background .18s ease,
        transform .18s ease;
}

.nav-dropdown-item:hover {
    background: rgba(22, 93, 170, .06);
    transform: translateX(-2px);
}

.nav-dropdown-item-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.nav-dropdown-item small {
    color: #7b8797;
    font-size: 11px;
    line-height: 1.7;
}

.nav-dropdown-empty {
    padding: 15px;
    color: #7b8797;
    font-size: 12px;
    text-align: center;
}

/* خدمات می‌تواند کمی عریض‌تر باشد */

.nav-dropdown-services {
    width: 320px;
}

/* =========================
   MOBILE SUBMENUS
========================= */

.mobile-nav-group {
    border-bottom: 1px solid rgba(20,35,60,.07);
}

.mobile-nav-group-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: right;
    cursor: pointer;
}

.mobile-nav-group-toggle span:last-child {
    transition: transform .2s ease;
}

.mobile-nav-group.open .mobile-nav-group-toggle span:last-child {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    display: none;
    padding: 0 14px 10px 0;
}

.mobile-nav-group.open .mobile-nav-submenu {
    display: block;
}

.mobile-nav-submenu a {
    display: block;
    padding: 9px 0;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
}

@media (max-width: 1000px) {

    .nav-links {
        gap: 15px;
    }

    .nav-link-item,
    .nav-dropdown-toggle {
        font-size: 14px;
    }

}

@media (max-width: 860px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

}
/* =========================================================
   HEADER DROPDOWN - FINAL FIX
========================================================= */

/* منوی اصلی */
.site-header .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* آیتم Dropdown */
.site-header .nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* دکمه شرکا / خدمات */
.site-header .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 0;
    margin: 0;
    padding: 0;

    background: transparent;
    color: inherit;

    font: inherit;
    cursor: pointer;
}

/* فلش */
.site-header .nav-dropdown-arrow {
    font-size: 11px;
    transition: transform .2s ease;
}

/* =========================
   DROPDOWN MENU
========================= */

.site-header .nav-dropdown-menu {
    position: absolute !important;

    top: calc(100% + 10px);
    right: -10px;

    width: 290px;
    max-height: 420px;

    overflow-y: auto;

    display: flex !important;
    flex-direction: column;

    padding: 8px;

    background: #ffffff;

    border: 1px solid rgba(20, 35, 60, .10);
    border-radius: 16px;

    box-shadow:
        0 18px 50px rgba(20, 35, 60, .14);

    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;
}

/* باز شدن فقط با Hover */
.site-header .nav-dropdown:hover .nav-dropdown-menu,
.site-header .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* فلش هنگام Hover */
.site-header .nav-dropdown:hover .nav-dropdown-arrow,
.site-header .nav-dropdown:focus-within .nav-dropdown-arrow {
    transform: rotate(180deg);
}

/* =========================
   DROPDOWN ITEMS
========================= */

.site-header .nav-dropdown-item {
    display: flex !important;
    flex-direction: column;
    gap: 3px;

    width: 100%;
    box-sizing: border-box;

    padding: 12px 13px;

    border-radius: 10px;

    text-decoration: none;
    color: #26364a;

    background: transparent;

    transition:
        background .18s ease,
        transform .18s ease;
}

.site-header .nav-dropdown-item:hover {
    background: rgba(22, 93, 170, .06);
    transform: translateX(-2px);
}

.site-header .nav-dropdown-item-title {
    display: block;

    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
}

.site-header .nav-dropdown-item small {
    display: block;

    color: #7b8797;

    font-size: 11px;
    line-height: 1.7;
}

/* عرض بیشتر برای خدمات */
.site-header .nav-dropdown-services {
    width: 330px;
}

/* پیام خالی */
.site-header .nav-dropdown-empty {
    display: block;

    padding: 14px;

    text-align: center;

    color: #7b8797;
    font-size: 12px;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 860px) {

    .site-header .nav-dropdown {
        display: none;
    }

}
.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
}