/* =========================================================
   HIREPROO - PRIVACY POLICY
   ========================================================= */

/* ---------------------------------------------------------
   ROOT / VARIABLES
--------------------------------------------------------- */

:root {
    --privacy-primary: #0b1f3a;
    --privacy-primary-dark: #07162a;
    --privacy-secondary: #12345b;
    --privacy-accent: #0c3ae1;
    --privacy-accent-dark: #d98b12;

    --privacy-text: #263445;
    --privacy-text-light: #64748b;
    --privacy-heading: #10243e;

    --privacy-bg: #ffffff;
    --privacy-bg-light: #f6f8fb;
    --privacy-bg-soft: #eef3f8;

    --privacy-border: #dfe6ee;
    --privacy-border-light: #e9eef4;

    --privacy-white: #ffffff;

    --privacy-shadow:
        0 15px 45px rgba(11, 31, 58, 0.08);

    --privacy-transition:
        all 0.3s ease;
}


/* ---------------------------------------------------------
   GLOBAL PRIVACY PAGE
--------------------------------------------------------- */

html {
    scroll-behavior: smooth;
}

.privacy-content {
    position: relative;
    background: var(--privacy-bg);
}

.privacy-content .container {
    width: min(1180px, 92%);
    margin: 0 auto;
}
/* =========================================================
   PRIVACY HERO
========================================================= */

.privacy-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            var(--privacy-primary-dark) 0%,
            var(--privacy-primary) 55%,
            var(--privacy-secondary) 100%
        );
}


/* Background Layer */

.privacy-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}


/* Decorative circles */

.privacy-hero-bg::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -190px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.025),
        0 0 0 140px rgba(255, 255, 255, 0.02);
}


/* Decorative gradient */

.privacy-hero-bg::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    bottom: -260px;
    border-radius: 50%;
    background: rgba(244, 166, 42, 0.08);
    filter: blur(10px);
}


/* Hero container */

.privacy-hero-container {
    position: relative;
    z-index: 2;
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* Hero content */

.privacy-hero-content {
    max-width: 760px;
    padding: 80px 0;
}


/* ---------------------------------------------------------
   SECTION LABEL
--------------------------------------------------------- */

.privacy-hero .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.privacy-hero .section-label::before {
    content: "";
    width: 30px;
    height: 2px;
    display: inline-block;
    background: var(--privacy-accent);
}


.privacy-hero .light-label {
    color: rgba(255, 255, 255, 0.75);
}


/* ---------------------------------------------------------
   HERO HEADING
--------------------------------------------------------- */

.privacy-hero h1 {
    margin: 0;
    color: var(--privacy-white);
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
}


.privacy-hero h1 span {
    display: inline-block;
    color: var(--privacy-accent);
}


.privacy-hero p {
    max-width: 690px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   LAST UPDATED
--------------------------------------------------------- */

.privacy-updated {
    display: inline-flex;
    align-items: center;
    margin-top: 30px;
    padding: 10px 16px;
    border-left: 3px solid var(--privacy-accent);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}


/* =========================================================
   PRIVACY CONTENT LAYOUT
========================================================= */

.privacy-content {
    padding-top: 90px;
    padding-bottom: 100px;
}


.privacy-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 75px;
    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.privacy-sidebar {
    position: sticky;
    top: 110px;
    padding: 26px 0;
}


.privacy-sidebar-title {
    margin-bottom: 18px;
    color: var(--privacy-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.privacy-nav {
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--privacy-border);
}


.privacy-nav a {
    position: relative;
    display: block;
    padding: 11px 18px;
    color: var(--privacy-text-light);
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    transition: var(--privacy-transition);
}


.privacy-nav a::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--privacy-accent);
    transform: scaleY(0);
    transform-origin: center;
    transition: var(--privacy-transition);
}


.privacy-nav a:hover {
    color: var(--privacy-primary);
    background: var(--privacy-bg-light);
}


.privacy-nav a:hover::before {
    transform: scaleY(1);
}


/* =========================================================
   POLICY ARTICLE
========================================================= */

.privacy-article {
    min-width: 0;
    max-width: 820px;
}


/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.privacy-intro {
    margin-bottom: 60px;
    padding: 32px 35px;
    border-left: 4px solid var(--privacy-accent);
    background: var(--privacy-bg-light);
}


.privacy-intro p {
    margin: 0;
    color: var(--privacy-text);
    font-size: 16px;
    line-height: 1.85;
}


.privacy-intro p + p {
    margin-top: 18px;
}


/* =========================================================
   PRIVACY SECTIONS
========================================================= */

.privacy-section {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 25px;
    padding: 0 0 55px;
    margin-bottom: 55px;
    border-bottom: 1px solid var(--privacy-border-light);
    scroll-margin-top: 100px;
}


.privacy-section:last-of-type {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   SECTION NUMBER
--------------------------------------------------------- */

.privacy-section-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
    color: var(--privacy-accent);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}


.privacy-section-number::after {
    content: "";
    position: absolute;
    top: 34px;
    left: 17px;
    width: 24px;
    height: 1px;
    background: var(--privacy-border);
}


/* ---------------------------------------------------------
   SECTION HEADINGS
--------------------------------------------------------- */

.privacy-section h2 {
    margin: 0 0 18px;
    color: var(--privacy-heading);
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.4px;
}


.privacy-section p {
    margin: 0 0 18px;
    color: var(--privacy-text);
    font-size: 15.5px;
    line-height: 1.85;
}


.privacy-section p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   POLICY LISTS
========================================================= */

.privacy-section ul {
    margin: 20px 0 22px;
    padding: 0;
    list-style: none;
}


.privacy-section ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 27px;
    color: var(--privacy-text);
    font-size: 15px;
    line-height: 1.7;
}


.privacy-section ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--privacy-accent);
}


.privacy-section ul li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.privacy-contact-section {
    margin-top: 10px;
    margin-bottom: 0;
    padding: 35px;
    border: 1px solid var(--privacy-border);
    border-left: 4px solid var(--privacy-accent);
    background:
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #ffffff 100%
        );
}


.privacy-contact-section .privacy-section-number {
    padding-top: 2px;
}


.privacy-contact-section .privacy-section-number::after {
    display: none;
}


.privacy-contact-section h2 {
    margin-bottom: 15px;
}


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

.privacy-contact-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    padding: 14px 24px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.privacy-contact-section .btn-primary {
    background: var(--privacy-primary);
    color: var(--privacy-white);
    box-shadow:
        0 8px 22px rgba(11, 31, 58, 0.16);
}


.privacy-contact-section .btn-primary:hover {
    background: var(--privacy-accent);
    color: var(--privacy-primary);
    transform: translateY(-2px);
    box-shadow:
        0 12px 25px rgba(11, 31, 58, 0.18);
}


.privacy-contact-section .btn span {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}


.privacy-contact-section .btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   FINAL POLICY NOTE
========================================================= */

.privacy-final-note {
    margin-top: 55px;
    padding: 30px 32px;
    border: 1px solid var(--privacy-border);
    border-radius: 2px;
    background: var(--privacy-bg-soft);
}


.privacy-final-note strong {
    display: block;
    margin-bottom: 10px;
    color: var(--privacy-heading);
    font-size: 15px;
    font-weight: 800;
}


.privacy-final-note p {
    margin: 0;
    color: var(--privacy-text-light);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   TEXT SELECTION
========================================================= */

.privacy-article ::selection {
    background: var(--privacy-accent);
    color: var(--privacy-primary);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .privacy-hero {
        min-height: 440px;
    }


    .privacy-hero-content {
        padding: 70px 0;
    }


    .privacy-content {
        padding-top: 70px;
        padding-bottom: 80px;
    }


    .privacy-layout {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 45px;
    }


    .privacy-section {
        grid-template-columns: 45px minmax(0, 1fr);
        gap: 20px;
    }


    .privacy-section-number::after {
        left: 13px;
    }


    .privacy-section h2 {
        font-size: 25px;
    }


    .privacy-intro {
        padding: 28px 30px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .privacy-hero {
        min-height: auto;
    }


    .privacy-hero-container {
        width: 90%;
    }


    .privacy-hero-content {
        padding: 65px 0;
    }


    .privacy-hero .section-label {
        margin-bottom: 18px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }


    .privacy-hero h1 {
        font-size: 48px;
        letter-spacing: -1.5px;
    }


    .privacy-hero p {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.75;
    }


    .privacy-updated {
        margin-top: 24px;
        font-size: 12px;
    }


    .privacy-content {
        padding-top: 55px;
        padding-bottom: 65px;
    }


    .privacy-content .container {
        width: 90%;
    }


    .privacy-layout {
        display: block;
    }


    /* Sidebar becomes horizontal/mobile navigation */

    .privacy-sidebar {
        position: relative;
        top: auto;
        margin-bottom: 45px;
        padding: 0;
    }


    .privacy-sidebar-title {
        margin-bottom: 14px;
    }


    .privacy-nav {
        border: 1px solid var(--privacy-border);
        background: var(--privacy-bg-light);
    }


    .privacy-nav a {
        padding: 12px 15px;
        border-bottom: 1px solid var(--privacy-border);
        font-size: 13px;
    }


    .privacy-nav a:last-child {
        border-bottom: none;
    }


    .privacy-nav a::before {
        display: none;
    }


    .privacy-nav a:hover {
        background: var(--privacy-white);
    }


    .privacy-intro {
        margin-bottom: 45px;
        padding: 24px 22px;
    }


    .privacy-intro p {
        font-size: 14.5px;
        line-height: 1.75;
    }


    .privacy-section {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-bottom: 42px;
        margin-bottom: 42px;
        scroll-margin-top: 30px;
    }


    .privacy-section-number {
        justify-content: flex-start;
        padding-top: 0;
        margin-bottom: 3px;
        font-size: 12px;
    }


    .privacy-section-number::after {
        display: none;
    }


    .privacy-section h2 {
        margin-bottom: 14px;
        font-size: 23px;
    }


    .privacy-section p {
        font-size: 14.5px;
        line-height: 1.8;
    }


    .privacy-section ul {
        margin: 18px 0 20px;
    }


    .privacy-section ul li {
        padding-left: 24px;
        font-size: 14px;
    }


    .privacy-contact-section {
        padding: 25px 22px;
    }


    .privacy-contact-section .privacy-section-number {
        margin-bottom: 5px;
    }


    .privacy-contact-section .btn {
        width: 100%;
        padding: 15px 20px;
    }


    .privacy-final-note {
        margin-top: 42px;
        padding: 24px 22px;
    }


    .privacy-final-note p {
        font-size: 13.5px;
    }

}


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

@media (max-width: 480px) {

    .privacy-hero-content {
        padding: 55px 0;
    }


    .privacy-hero h1 {
        font-size: 41px;
    }


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


    .privacy-updated {
        display: block;
        line-height: 1.5;
    }


    .privacy-content {
        padding-top: 45px;
    }


    .privacy-section h2 {
        font-size: 21px;
    }


    .privacy-section p {
        font-size: 14px;
    }


    .privacy-nav a {
        font-size: 12.5px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.privacy-nav a:focus-visible,
.privacy-contact-section .btn:focus-visible {
    outline: 3px solid rgba(244, 166, 42, 0.45);
    outline-offset: 3px;
}


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

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

    html {
        scroll-behavior: auto;
    }


    .privacy-nav a,
    .privacy-nav a::before,
    .privacy-contact-section .btn,
    .privacy-contact-section .btn span {
        transition: none;
    }
}
/* =========================================================
   TERMS & CONDITIONS
   HERO SECTION
   Uses the same root colors as privacy.css
========================================================= */


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

.terms-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--privacy-primary-dark) 0%,
            var(--privacy-primary) 55%,
            var(--privacy-secondary) 100%
        );
}


/* ---------------------------------------------------------
   HERO BACKGROUND
--------------------------------------------------------- */

.terms-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}


/* Decorative large circle */

.terms-hero-bg::before {
    content: "";

    position: absolute;

    width: 540px;
    height: 540px;

    right: -190px;
    top: -210px;

    border-radius: 50%;

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

    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.025),
        0 0 0 140px rgba(255, 255, 255, 0.018),
        0 0 0 210px rgba(255, 255, 255, 0.012);
}


/* Decorative accent circle */

.terms-hero-bg::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -190px;
    bottom: -270px;

    border-radius: 50%;

    background: rgba(244, 166, 42, 0.08);

    filter: blur(8px);
}


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

.terms-hero-container {
    position: relative;
    z-index: 2;

    width: min(1180px, 92%);
    margin: 0 auto;
}


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

.terms-hero-content {
    max-width: 780px;
    padding: 80px 0;
}


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

.terms-hero .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

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

    line-height: 1;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.terms-hero .section-label::before {
    content: "";

    width: 30px;
    height: 2px;

    display: inline-block;

    background: var(--privacy-accent);
}


.terms-hero .light-label {
    color: rgba(255, 255, 255, 0.75);
}


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

.terms-hero h1 {
    margin: 0;

    color: var(--privacy-white);

    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -2px;
}


.terms-hero h1 span {
    display: inline-block;

    color: var(--privacy-accent);
}


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

.terms-hero p {
    max-width: 700px;

    margin: 28px 0 0;

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

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   LAST UPDATED
========================================================= */

.terms-updated {
    display: inline-flex;
    align-items: center;

    margin-top: 30px;

    padding: 10px 16px;

    border-left: 3px solid var(--privacy-accent);

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

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

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 0.3px;
}


/* =========================================================
   TERMS CONTENT
========================================================= */

.terms-content {
    position: relative;

    padding-top: 90px;
    padding-bottom: 100px;

    background: var(--privacy-bg);
}


.terms-content .container {
    width: min(1180px, 92%);

    margin: 0 auto;
}


/* =========================================================
   TERMS LAYOUT
========================================================= */

.terms-layout {
    display: grid;

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

    gap: 75px;

    align-items: start;
}


/* =========================================================
   TERMS SIDEBAR
========================================================= */

.terms-sidebar {
    position: sticky;

    top: 110px;

    padding: 26px 0;
}


.terms-sidebar-title {
    margin-bottom: 18px;

    color: var(--privacy-heading);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


/* =========================================================
   TERMS NAV
========================================================= */

.terms-nav {
    display: flex;

    flex-direction: column;

    border-left: 1px solid var(--privacy-border);
}


.terms-nav a {
    position: relative;

    display: block;

    padding: 11px 18px;

    color: var(--privacy-text-light);

    font-size: 14px;

    line-height: 1.45;

    text-decoration: none;

    transition: var(--privacy-transition);
}


.terms-nav a::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;

    width: 2px;
    height: 100%;

    background: var(--privacy-accent);

    transform: scaleY(0);

    transform-origin: center;

    transition: var(--privacy-transition);
}


.terms-nav a:hover {
    color: var(--privacy-primary);

    background: var(--privacy-bg-light);
}


.terms-nav a:hover::before {
    transform: scaleY(1);
}


/* =========================================================
   TERMS ARTICLE
========================================================= */

.terms-article {
    min-width: 0;

    max-width: 820px;
}


/* =========================================================
   TERMS INTRO
========================================================= */

.terms-intro {
    margin-bottom: 60px;

    padding: 32px 35px;

    border-left: 4px solid var(--privacy-accent);

    background: var(--privacy-bg-light);
}


.terms-intro p {
    margin: 0;

    color: var(--privacy-text);

    font-size: 16px;

    line-height: 1.85;
}


.terms-intro p + p {
    margin-top: 18px;
}


/* =========================================================
   TERMS SECTION
========================================================= */

.terms-section {
    position: relative;

    display: grid;

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

    gap: 25px;

    padding: 0 0 55px;

    margin-bottom: 55px;

    border-bottom: 1px solid var(--privacy-border-light);

    scroll-margin-top: 100px;
}


.terms-section:last-of-type {
    margin-bottom: 0;
}


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

.terms-section-number {
    display: flex;

    align-items: flex-start;

    justify-content: center;

    padding-top: 5px;

    color: var(--privacy-accent);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;
}


.terms-section-number::after {
    content: "";

    position: absolute;

    top: 34px;
    left: 17px;

    width: 24px;
    height: 1px;

    background: var(--privacy-border);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.terms-section h2 {
    margin: 0 0 18px;

    color: var(--privacy-heading);

    font-size: 28px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.4px;
}


/* =========================================================
   SECTION PARAGRAPHS
========================================================= */

.terms-section p {
    margin: 0 0 18px;

    color: var(--privacy-text);

    font-size: 15.5px;

    line-height: 1.85;
}


.terms-section p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TERMS LIST
========================================================= */

.terms-section ul {
    margin: 20px 0 22px;

    padding: 0;

    list-style: none;
}


.terms-section ul li {
    position: relative;

    margin-bottom: 12px;

    padding-left: 27px;

    color: var(--privacy-text);

    font-size: 15px;

    line-height: 1.7;
}


.terms-section ul li::before {
    content: "";

    position: absolute;

    top: 10px;
    left: 3px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--privacy-accent);
}


.terms-section ul li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.terms-contact-section {
    margin-top: 10px;

    margin-bottom: 0;

    padding: 35px;

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

    border-left: 4px solid var(--privacy-accent);

    background:
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #ffffff 100%
        );
}


.terms-contact-section .terms-section-number {
    padding-top: 2px;
}


.terms-contact-section .terms-section-number::after {
    display: none;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.terms-contact-section .btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 12px;

    padding: 14px 24px;

    border-radius: 3px;

    font-size: 14px;

    font-weight: 700;

    line-height: 1;

    text-decoration: none;

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


.terms-contact-section .btn-primary {
    background: var(--privacy-primary);

    color: var(--privacy-white);

    box-shadow:
        0 8px 22px rgba(11, 31, 58, 0.16);
}


.terms-contact-section .btn-primary:hover {
    background: var(--privacy-accent);

    color: var(--privacy-primary);

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(11, 31, 58, 0.18);
}


.terms-contact-section .btn span {
    font-size: 18px;

    line-height: 1;

    transition: transform 0.3s ease;
}


.terms-contact-section .btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   FINAL NOTE
========================================================= */

.terms-final-note {
    margin-top: 55px;

    padding: 30px 32px;

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

    border-radius: 2px;

    background: var(--privacy-bg-soft);
}


.terms-final-note strong {
    display: block;

    margin-bottom: 10px;

    color: var(--privacy-heading);

    font-size: 15px;

    font-weight: 800;
}


.terms-final-note p {
    margin: 0;

    color: var(--privacy-text-light);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   TEXT SELECTION
========================================================= */

.terms-article ::selection {
    background: var(--privacy-accent);

    color: var(--privacy-primary);
}


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

@media (max-width: 991px) {

    .terms-hero {
        min-height: 440px;
    }


    .terms-hero-content {
        padding: 70px 0;
    }


    .terms-content {
        padding-top: 70px;

        padding-bottom: 80px;
    }


    .terms-layout {
        grid-template-columns: 210px minmax(0, 1fr);

        gap: 45px;
    }


    .terms-section {
        grid-template-columns: 45px minmax(0, 1fr);

        gap: 20px;
    }


    .terms-section-number::after {
        left: 13px;
    }


    .terms-section h2 {
        font-size: 25px;
    }


    .terms-intro {
        padding: 28px 30px;
    }

}


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

@media (max-width: 767px) {

    .terms-hero {
        min-height: auto;
    }


    .terms-hero-container {
        width: 90%;
    }


    .terms-hero-content {
        padding: 65px 0;
    }


    .terms-hero .section-label {
        margin-bottom: 18px;

        font-size: 10px;

        letter-spacing: 1.5px;
    }


    .terms-hero h1 {
        font-size: 48px;

        letter-spacing: -1.5px;
    }


    .terms-hero p {
        margin-top: 22px;

        font-size: 15px;

        line-height: 1.75;
    }


    .terms-updated {
        margin-top: 24px;

        font-size: 12px;
    }


    /* -----------------------------------------------------
       CONTENT
    ----------------------------------------------------- */

    .terms-content {
        padding-top: 55px;

        padding-bottom: 65px;
    }


    .terms-content .container {
        width: 90%;
    }


    /* -----------------------------------------------------
       SIDEBAR
    ----------------------------------------------------- */

    .terms-layout {
        display: block;
    }


    .terms-sidebar {
        position: relative;

        top: auto;

        margin-bottom: 45px;

        padding: 0;
    }


    .terms-sidebar-title {
        margin-bottom: 14px;
    }


    .terms-nav {
        border: 1px solid var(--privacy-border);

        background: var(--privacy-bg-light);
    }


    .terms-nav a {
        padding: 12px 15px;

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

        font-size: 13px;
    }


    .terms-nav a:last-child {
        border-bottom: none;
    }


    .terms-nav a::before {
        display: none;
    }


    .terms-nav a:hover {
        background: var(--privacy-white);
    }


    /* -----------------------------------------------------
       INTRO
    ----------------------------------------------------- */

    .terms-intro {
        margin-bottom: 45px;

        padding: 24px 22px;
    }


    .terms-intro p {
        font-size: 14.5px;

        line-height: 1.75;
    }


    /* -----------------------------------------------------
       SECTIONS
    ----------------------------------------------------- */

    .terms-section {
        grid-template-columns: 1fr;

        gap: 8px;

        padding-bottom: 42px;

        margin-bottom: 42px;

        scroll-margin-top: 30px;
    }


    .terms-section-number {
        justify-content: flex-start;

        padding-top: 0;

        margin-bottom: 3px;

        font-size: 12px;
    }


    .terms-section-number::after {
        display: none;
    }


    .terms-section h2 {
        margin-bottom: 14px;

        font-size: 23px;
    }


    .terms-section p {
        font-size: 14.5px;

        line-height: 1.8;
    }


    .terms-section ul {
        margin: 18px 0 20px;
    }


    .terms-section ul li {
        padding-left: 24px;

        font-size: 14px;
    }


    /* -----------------------------------------------------
       CONTACT
    ----------------------------------------------------- */

    .terms-contact-section {
        padding: 25px 22px;
    }


    .terms-contact-section .terms-section-number {
        margin-bottom: 5px;
    }


    .terms-contact-section .btn {
        width: 100%;

        padding: 15px 20px;
    }


    /* -----------------------------------------------------
       FINAL NOTE
    ----------------------------------------------------- */

    .terms-final-note {
        margin-top: 42px;

        padding: 24px 22px;
    }


    .terms-final-note p {
        font-size: 13.5px;
    }

}


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

@media (max-width: 480px) {

    .terms-hero-content {
        padding: 55px 0;
    }


    .terms-hero h1 {
        font-size: 41px;
    }


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


    .terms-updated {
        display: block;

        line-height: 1.5;
    }


    .terms-content {
        padding-top: 45px;
    }


    .terms-section h2 {
        font-size: 21px;
    }


    .terms-section p {
        font-size: 14px;
    }


    .terms-nav a {
        font-size: 12.5px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.terms-nav a:focus-visible,
.terms-contact-section .btn:focus-visible {
    outline: 3px solid rgba(244, 166, 42, 0.45);

    outline-offset: 3px;
}


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

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

    html {
        scroll-behavior: auto;
    }


    .terms-nav a,
    .terms-nav a::before,
    .terms-contact-section .btn,
    .terms-contact-section .btn span {
        transition: none;
    }

}