/* ============================================================
   TRIMEROUS TECHNOLOGY
   DOCUMENTATION PAGE
   ADVANCED PREMIUM / NEXT-GEN DESIGN SYSTEM
   PREFIX: tr-doc-
============================================================ */


/* ============================================================
   01. ROOT VARIABLES
============================================================ */

#trimerous-documentation,
.tr-doc-hero,
.tr-doc-intro,
.tr-doc-categories,
.tr-doc-process,
.tr-doc-onboarding,
.tr-doc-reporting,
.tr-doc-developer,
.tr-doc-cta {

    --tr-doc-orange: #f05125;
    --tr-doc-orange-dark: #d93d16;
    --tr-doc-yellow: #faa41a;

    --tr-doc-dark: #0b0d12;
    --tr-doc-dark-2: #11141b;
    --tr-doc-dark-3: #171b24;

    --tr-doc-text: #1b2029;
    --tr-doc-muted: #6f7682;
    --tr-doc-light: #f6f7f9;
    --tr-doc-white: #ffffff;

    --tr-doc-border: rgba(15, 20, 30, .09);
    --tr-doc-shadow:
        0 20px 55px rgba(11, 13, 18, .08);

    --tr-doc-radius: 22px;
}


/* ============================================================
   02. HERO
============================================================ */

.tr-doc-hero {

    position: relative;
    overflow: hidden;

    padding: 155px 0 125px;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(240, 81, 37, .13),
            transparent 28%
        ),
        radial-gradient(
            circle at 20% 90%,
            rgba(250, 164, 26, .08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #080a0f 0%,
            #10131a 55%,
            #080a0f 100%
        );

    color: #fff;
}


/* subtle grid */

.tr-doc-hero::before {

    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    opacity: .35;

    pointer-events: none;
}


/* glow */

.tr-doc-hero::after {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(240,81,37,.18),
            transparent 68%
        );

    filter: blur(20px);

    pointer-events: none;
}


.tr-doc-hero .container {
    position: relative;
    z-index: 2;
}


/* ============================================================
   03. HERO CONTENT
============================================================ */

.tr-doc-hero-content {
    max-width: 780px;
}


.tr-doc-eyebrow,
.tr-doc-section-label {

    display: inline-flex;

    align-items: center;
    gap: 10px;

    font-family: "Poppins", sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.8px;

    color: var(--tr-doc-orange);

    text-transform: uppercase;
}


.tr-doc-eyebrow::before,
.tr-doc-section-label::before {

    content: "";

    width: 30px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--tr-doc-orange),
            var(--tr-doc-yellow)
        );

    border-radius: 20px;
}


.tr-doc-hero h1 {

    margin: 22px 0 24px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2.5px;

    color: #fff;
}


.tr-doc-hero h1 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            var(--tr-doc-orange),
            var(--tr-doc-yellow)
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.tr-doc-hero p {

    max-width: 680px;

    margin: 0 0 36px;

    color: rgba(255,255,255,.67);

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    line-height: 1.9;

    font-weight: 400;
}


/* ============================================================
   04. SEARCH
============================================================ */

.tr-doc-search {

    position: relative;

    width: min(100%, 610px);

    height: 64px;

    display: flex;
    align-items: center;

    padding: 0 22px;

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 14px;

    background:
        rgba(255,255,255,.055);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 20px 60px rgba(0,0,0,.25);

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}


.tr-doc-search:focus-within {

    border-color:
        rgba(240,81,37,.7);

    box-shadow:
        0 0 0 4px rgba(240,81,37,.08),
        0 25px 70px rgba(0,0,0,.3);

    transform: translateY(-2px);
}


.tr-doc-search i {

    color: var(--tr-doc-orange);

    font-size: 17px;

    margin-right: 14px;
}


.tr-doc-search input {

    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: #fff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
}


.tr-doc-search input::placeholder {
    color: rgba(255,255,255,.42);
}


/* ============================================================
   05. HERO VISUAL
============================================================ */

.tr-doc-hero-visual {

    position: relative;

    height: 390px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.tr-doc-doc-icon {

    position: relative;
    z-index: 4;

    width: 145px;
    height: 175px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.13),
            rgba(255,255,255,.035)
        );

    border: 1px solid rgba(255,255,255,.16);

    box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.1);

    backdrop-filter: blur(20px);
}


.tr-doc-doc-icon::before {

    content: "";

    position: absolute;

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(240,81,37,.45),
            transparent 70%
        );

    filter: blur(18px);

    z-index: -1;
}


.tr-doc-doc-icon i {

    font-size: 55px;

    background:
        linear-gradient(
            135deg,
            var(--tr-doc-orange),
            var(--tr-doc-yellow)
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* ============================================================
   06. ORBITS
============================================================ */

.tr-doc-orbit {

    position: absolute;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 50%;

    transform: rotate(-18deg);
}


.tr-doc-orbit-one {

    width: 300px;
    height: 300px;
}


.tr-doc-orbit-two {

    width: 440px;
    height: 180px;

    transform: rotate(38deg);
}


/* ============================================================
   07. FLOATING CARDS
============================================================ */

.tr-doc-floating-card {

    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 16px;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,.1);

    background:
        rgba(18,21,29,.78);

    backdrop-filter: blur(15px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.28);

    font-family: "Poppins", sans-serif;

    font-size: 11px;
    font-weight: 500;

    color: rgba(255,255,255,.8);
}


.tr-doc-floating-card i {

    color: var(--tr-doc-orange);

    font-size: 15px;
}


.tr-doc-card-one {

    top: 45px;
    right: 5px;

    animation: trDocFloatOne 5s ease-in-out infinite;
}


.tr-doc-card-two {

    left: 0;
    top: 145px;

    animation: trDocFloatTwo 6s ease-in-out infinite;
}


.tr-doc-card-three {

    right: 20px;
    bottom: 55px;

    animation: trDocFloatThree 5.5s ease-in-out infinite;
}


@keyframes trDocFloatOne {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


@keyframes trDocFloatTwo {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}


@keyframes trDocFloatThree {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* ============================================================
   08. INTRO
============================================================ */

.tr-doc-intro {

    padding: 105px 0 70px;

    background: #fff;
}


.tr-doc-section-label {

    color: var(--tr-doc-orange);

    margin-bottom: 17px;
}


.tr-doc-intro h2,
.tr-doc-process h2,
.tr-doc-onboarding h2,
.tr-doc-reporting h2,
.tr-doc-developer h2,
.tr-doc-cta h2 {

    margin: 0 0 20px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(31px, 4vw, 48px);

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -1.4px;

    color: var(--tr-doc-text);
}


.tr-doc-intro h2 span,
.tr-doc-process h2 span,
.tr-doc-onboarding h2 span,
.tr-doc-reporting h2 span,
.tr-doc-developer h2 span,
.tr-doc-cta h2 span {

    color: var(--tr-doc-orange);
}


.tr-doc-intro p,
.tr-doc-process > .container > .row p {

    max-width: 750px;

    margin-left: auto;
    margin-right: auto;

    color: var(--tr-doc-muted);

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    line-height: 1.9;
}


/* ============================================================
   09. CATEGORY SECTION
============================================================ */

.tr-doc-categories {

    padding: 35px 0 110px;

    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #f7f8fa 100%
        );
}


.tr-doc-category-card {

    position: relative;

    height: 100%;

    margin-bottom: 30px;

    padding: 36px 32px 31px;

    border-radius: var(--tr-doc-radius);

    border: 1px solid var(--tr-doc-border);

    background: #fff;

    box-shadow:
        0 12px 40px rgba(10,15,25,.045);

    overflow: hidden;

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        box-shadow .35s ease,
        border-color .35s ease;
}


.tr-doc-category-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--tr-doc-orange),
            var(--tr-doc-yellow)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .35s ease;
}


.tr-doc-category-card:hover {

    transform: translateY(-9px);

    border-color:
        rgba(240,81,37,.18);

    box-shadow:
        0 28px 65px rgba(10,15,25,.11);
}


.tr-doc-category-card:hover::before {
    transform: scaleX(1);
}


.tr-doc-category-icon {

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(240,81,37,.11),
            rgba(250,164,26,.13)
        );

    color: var(--tr-doc-orange);

    font-size: 21px;

    transition:
        transform .35s ease,
        background .35s ease;
}


.tr-doc-category-card:hover
.tr-doc-category-icon {

    transform: rotate(-4deg) scale(1.08);

    background:
        linear-gradient(
            135deg,
            rgba(240,81,37,.17),
            rgba(250,164,26,.2)
        );
}


.tr-doc-category-number {

    position: absolute;

    top: 30px;
    right: 30px;

    font-family: "Oswald", sans-serif;

    font-size: 42px;

    font-weight: 500;

    color: rgba(20,25,35,.045);

    line-height: 1;
}


.tr-doc-category-card h3 {

    margin: 0 0 13px;

    color: var(--tr-doc-text);

    font-family: "Poppins", sans-serif;

    font-size: 20px;

    font-weight: 600;
}


.tr-doc-category-card > p {

    min-height: 82px;

    margin: 0 0 22px;

    color: var(--tr-doc-muted);

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


.tr-doc-category-card ul {

    margin: 0;
    padding: 0;

    list-style: none;

    border-top: 1px solid var(--tr-doc-border);
}


.tr-doc-category-card li {

    border-bottom: 1px solid var(--tr-doc-border);
}


.tr-doc-category-card li:last-child {
    border-bottom: 0;
}


.tr-doc-category-card li a {

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 13px 0;

    color: #424955;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 500;

    text-decoration: none;

    transition:
        color .25s ease,
        padding-left .25s ease;
}


.tr-doc-category-card li a i {

    color: #a7adb7;

    transition:
        transform .25s ease,
        color .25s ease;
}


.tr-doc-category-card li a:hover {

    color: var(--tr-doc-orange);

    padding-left: 5px;
}


.tr-doc-category-card li a:hover i {

    color: var(--tr-doc-orange);

    transform: translateX(4px);
}


/* ============================================================
   10. PROCESS
============================================================ */

.tr-doc-process {

    position: relative;

    padding: 110px 0;

    background: #0b0d12;

    color: #fff;

    overflow: hidden;
}


.tr-doc-process::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    left: -300px;
    top: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(240,81,37,.11),
            transparent 70%
        );
}


.tr-doc-process .container {
    position: relative;
    z-index: 2;
}


.tr-doc-process h2 {
    color: #fff;
}


.tr-doc-process > .container > .row p {
    color: rgba(255,255,255,.58);
}


.tr-doc-process-grid {

    position: relative;

    margin-top: 65px;
}


/* connecting line */

.tr-doc-process-grid::before {

    content: "";

    position: absolute;

    left: 30px;
    top: 30px;
    bottom: 30px;

    width: 1px;

    background:
        linear-gradient(
            180deg,
            rgba(240,81,37,.7),
            rgba(255,255,255,.08)
        );
}


.tr-doc-process-item {

    position: relative;

    display: flex;

    gap: 28px;

    padding: 0 0 42px;
}


.tr-doc-process-item:last-child {
    padding-bottom: 0;
}


.tr-doc-process-number {

    position: relative;

    z-index: 2;

    flex: 0 0 61px;

    width: 61px;
    height: 61px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(240,81,37,.45);

    background: #0b0d12;

    color: var(--tr-doc-orange);

    font-family: "Oswald", sans-serif;

    font-size: 17px;

    box-shadow:
        0 0 0 8px rgba(11,13,18,1);
}


.tr-doc-process-content {

    padding-top: 4px;

    max-width: 650px;
}


.tr-doc-process-content h3 {

    margin: 0 0 8px;

    color: #fff;

    font-family: "Poppins", sans-serif;

    font-size: 19px;

    font-weight: 600;
}


.tr-doc-process-content p {

    margin: 0;

    color: rgba(255,255,255,.52);

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


/* ============================================================
   11. ONBOARDING
============================================================ */

.tr-doc-onboarding {

    padding: 115px 0;

    background: #f7f8fa;
}


.tr-doc-onboarding .row {
    align-items: center;
}


.tr-doc-onboarding > .container > .row > .col-lg-6:first-child {
    padding-right: 55px;
}


.tr-doc-onboarding h2 {
    font-size: clamp(30px, 4vw, 45px);
}


.tr-doc-onboarding > .container > .row > .col-lg-6:first-child p {

    max-width: 530px;

    margin: 0;

    color: var(--tr-doc-muted);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.9;
}


.tr-doc-check-list {

    padding: 34px;

    border-radius: 22px;

    background: #fff;

    border: 1px solid var(--tr-doc-border);

    box-shadow:
        0 20px 60px rgba(10,15,25,.06);
}


.tr-doc-check-item {

    display: flex;

    gap: 17px;

    padding: 21px 0;

    border-bottom: 1px solid var(--tr-doc-border);
}


.tr-doc-check-item:first-child {
    padding-top: 0;
}


.tr-doc-check-item:last-child {

    padding-bottom: 0;

    border-bottom: 0;
}


.tr-doc-check-icon {

    flex: 0 0 35px;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2px;

    border-radius: 50%;

    background:
        rgba(240,81,37,.1);

    color: var(--tr-doc-orange);

    font-size: 12px;
}


.tr-doc-check-item h4 {

    margin: 0 0 5px;

    color: var(--tr-doc-text);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;
}


.tr-doc-check-item p {

    margin: 0;

    color: var(--tr-doc-muted);

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.7;
}


/* ============================================================
   12. REPORTING
============================================================ */

.tr-doc-reporting {

    padding: 115px 0;

    background: #fff;
}


.tr-doc-reporting h2 {
    font-size: clamp(30px, 4vw, 45px);
}


.tr-doc-reporting > .container > .row > .col-lg-5 p {

    max-width: 480px;

    margin: 0;

    color: var(--tr-doc-muted);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.9;
}


.tr-doc-report-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


.tr-doc-report-card {

    position: relative;

    min-height: 185px;

    padding: 28px;

    border-radius: 18px;

    background: #f8f9fb;

    border: 1px solid rgba(15,20,30,.06);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


.tr-doc-report-card:hover {

    transform: translateY(-6px);

    background: #fff;

    box-shadow:
        0 20px 50px rgba(10,15,25,.09);
}


.tr-doc-report-card i {

    display: inline-flex;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(240,81,37,.11),
            rgba(250,164,26,.12)
        );

    color: var(--tr-doc-orange);

    font-size: 16px;
}


.tr-doc-report-card h3 {

    margin: 0 0 8px;

    color: var(--tr-doc-text);

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 600;
}


.tr-doc-report-card p {

    margin: 0;

    color: var(--tr-doc-muted);

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.7;
}


/* ============================================================
   13. DEVELOPER
============================================================ */

.tr-doc-developer {

    position: relative;

    padding: 105px 0;

    background:
        linear-gradient(
            135deg,
            #11141b,
            #090b10
        );

    overflow: hidden;
}


.tr-doc-developer::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    bottom: -260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(250,164,26,.12),
            transparent 70%
        );
}


.tr-doc-developer .container {
    position: relative;
    z-index: 2;
}


.tr-doc-developer h2 {
    color: #fff;

    max-width: 650px;
}


.tr-doc-developer > .container > .row > .col-lg-8 p {

    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.55);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.9;
}


.tr-doc-coming-list {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.tr-doc-coming-item {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px 17px;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,.08);

    background:
        rgba(255,255,255,.035);

    color: rgba(255,255,255,.75);

    font-family: "Poppins", sans-serif;

    transition:
        border-color .3s ease,
        background .3s ease;
}


.tr-doc-coming-item:hover {

    border-color:
        rgba(240,81,37,.3);

    background:
        rgba(240,81,37,.06);
}


.tr-doc-coming-item i {

    width: 25px;

    color: var(--tr-doc-orange);

    text-align: center;
}


.tr-doc-coming-item span {

    flex: 1;

    font-size: 12px;

    font-weight: 500;
}


.tr-doc-coming-item small {

    padding: 4px 8px;

    border-radius: 30px;

    background:
        rgba(255,255,255,.06);

    color: rgba(255,255,255,.4);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .7px;
}


/* ============================================================
   14. CTA
============================================================ */

.tr-doc-cta {

    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #f8f9fb,
            #fff
        );

    overflow: hidden;
}


.tr-doc-cta::before {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    left: -150px;
    bottom: -170px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(240,81,37,.1),
            transparent 70%
        );
}


.tr-doc-cta h2 {

    position: relative;

    font-size: clamp(32px, 4vw, 50px);
}


.tr-doc-cta p {

    max-width: 650px;

    margin: 0 auto 32px;

    color: var(--tr-doc-muted);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.9;
}


.tr-doc-cta-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* ============================================================
   15. BUTTONS
============================================================ */

.tr-doc-btn {

    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 10px;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none !important;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.tr-doc-btn i {
    margin-left: 9px;
}


.tr-doc-btn-primary {

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            var(--tr-doc-orange),
            #e94d1f
        );

    box-shadow:
        0 12px 30px rgba(240,81,37,.22);
}


.tr-doc-btn-primary:hover {

    color: #fff !important;

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(240,81,37,.3);
}


.tr-doc-btn-secondary {

    color: var(--tr-doc-text) !important;

    background: #fff;

    border: 1px solid rgba(15,20,30,.1);
}


.tr-doc-btn-secondary:hover {

    color: var(--tr-doc-orange) !important;

    transform: translateY(-3px);

    border-color:
        rgba(240,81,37,.3);

    box-shadow:
        0 12px 30px rgba(10,15,25,.07);
}


/* ============================================================
   16. SEARCH EMPTY STATE
============================================================ */

.tr-doc-category-card.tr-doc-no-result {

    display: none;
}


/* ============================================================
   17. TABLET
============================================================ */

@media (max-width: 1199px) {

    .tr-doc-hero {
        padding: 135px 0 105px;
    }

    .tr-doc-hero h1 {
        font-size: 58px;
    }

    .tr-doc-category-card {
        padding: 30px 27px;
    }

    .tr-doc-category-card > p {
        min-height: 95px;
    }

}


/* ============================================================
   18. MOBILE
============================================================ */

@media (max-width: 991px) {

    .tr-doc-hero {
        padding: 125px 0 90px;
    }

    .tr-doc-hero h1 {
        font-size: clamp(40px, 8vw, 58px);
        letter-spacing: -1.8px;
    }

    .tr-doc-hero p {
        font-size: 14px;
    }

    .tr-doc-intro {
        padding: 80px 0 50px;
    }

    .tr-doc-categories {
        padding-bottom: 75px;
    }

    .tr-doc-process,
    .tr-doc-onboarding,
    .tr-doc-reporting {
        padding: 85px 0;
    }

    .tr-doc-developer,
    .tr-doc-cta {
        padding: 90px 0;
    }

    .tr-doc-onboarding
    > .container
    > .row
    > .col-lg-6:first-child {

        padding-right: 15px;

        margin-bottom: 45px;
    }

    .tr-doc-reporting
    > .container
    > .row
    > .col-lg-5 {

        margin-bottom: 40px;
    }

}


/* ============================================================
   19. MOBILE SMALL
============================================================ */

@media (max-width: 767px) {

    .tr-doc-hero {
        padding: 105px 0 75px;
    }

    .tr-doc-eyebrow,
    .tr-doc-section-label {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .tr-doc-hero h1 {
        font-size: 39px;
        line-height: 1.12;
    }

    .tr-doc-hero p {
        font-size: 13px;
        line-height: 1.8;
    }

    .tr-doc-search {
        height: 57px;
    }

    .tr-doc-intro h2,
    .tr-doc-process h2,
    .tr-doc-onboarding h2,
    .tr-doc-reporting h2,
    .tr-doc-developer h2,
    .tr-doc-cta h2 {

        font-size: 31px;

        letter-spacing: -.8px;
    }

    .tr-doc-category-card {
        padding: 28px 25px;
    }

    .tr-doc-category-card > p {
        min-height: auto;
    }

    .tr-doc-process-grid {
        margin-top: 45px;
    }

    .tr-doc-process-item {
        gap: 19px;
    }

    .tr-doc-process-number {
        flex-basis: 53px;

        width: 53px;
        height: 53px;

        font-size: 15px;
    }

    .tr-doc-process-grid::before {
        left: 26px;
    }

    .tr-doc-process-content h3 {
        font-size: 17px;
    }

    .tr-doc-process-content p {
        font-size: 12px;
    }

    .tr-doc-check-list {
        padding: 25px 22px;
    }

    .tr-doc-report-grid {
        grid-template-columns: 1fr;
    }

    .tr-doc-report-card {
        min-height: auto;
    }

    .tr-doc-coming-list {
        margin-top: 35px;
    }

    .tr-doc-cta-buttons {
        flex-direction: column;
    }

    .tr-doc-btn {
        width: 100%;
        max-width: 320px;
    }

}


/* ============================================================
   20. EXTRA SMALL DEVICES
============================================================ */

@media (max-width: 480px) {

    .tr-doc-hero {
        padding-top: 95px;
    }

    .tr-doc-hero h1 {
        font-size: 34px;
    }

    .tr-doc-hero p {
        font-size: 12px;
    }

    .tr-doc-search {
        padding: 0 17px;
    }

    .tr-doc-search input {
        font-size: 12px;
    }

    .tr-doc-category-card {
        border-radius: 17px;
    }

    .tr-doc-check-item {
        gap: 12px;
    }

    .tr-doc-check-icon {
        flex-basis: 31px;

        width: 31px;
        height: 31px;
    }

}


/* ============================================================
   21. REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .tr-doc-floating-card,
    .tr-doc-category-card,
    .tr-doc-btn,
    .tr-doc-search,
    .tr-doc-report-card,
    .tr-doc-coming-item,
    .tr-doc-category-icon {

        animation: none !important;

        transition: none !important;
    }

}