/*==============================================================
 RAEES IMPORT & EXPORT
 TERMS & CONDITIONS PAGE
 Ultra Premium Final CSS

 File:
 /public_html/assets/css/sections/terms-and-conditions.css
==============================================================*/


/*==============================================================
 01. PAGE VARIABLES
==============================================================*/

.terms-page-main {
    --terms-black: #17140f;
    --terms-dark: #211c15;

    --terms-green: #063f31;
    --terms-green-dark: #032d24;
    --terms-green-light: #0b5542;

    --terms-gold: #b67b25;
    --terms-gold-dark: #91601d;
    --terms-gold-light: #e4bd78;

    --terms-cream: #fbf7ef;
    --terms-cream-dark: #f3eadb;

    --terms-white: #ffffff;

    --terms-text: #5f584f;
    --terms-muted: #837a6f;

    --terms-border: rgba(25, 20, 14, 0.10);
    --terms-gold-border: rgba(182, 123, 37, 0.25);

    position: relative;
    width: 100%;
    overflow: hidden;

    background: #ffffff;
}

.terms-page-main *,
.terms-page-main *::before,
.terms-page-main *::after {
    box-sizing: border-box;
}

.terms-page-main a {
    text-decoration: none;
}

.terms-page-main .container {
    position: relative;
    z-index: 2;
}


/*==============================================================
 02. COMMON KICKERS
==============================================================*/

.terms-kicker,
.terms-section-kicker,
.terms-final-kicker {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;

    letter-spacing: 0.17em;
    text-transform: uppercase;

    color: var(--terms-gold);
}

.terms-kicker::before,
.terms-section-kicker::before,
.terms-final-kicker::before {
    content: "";

    width: 36px;
    height: 1px;

    flex: 0 0 auto;

    background:
        linear-gradient(
            90deg,
            var(--terms-gold),
            var(--terms-gold-light)
        );
}


/*==============================================================
 03. HERO
==============================================================*/

.terms-hero {
    position: relative;
    isolation: isolate;

    min-height: 650px;

    display: flex;
    align-items: center;

    padding: 100px 0;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #fffdf9 0%,
            #fbf6ed 52%,
            #f5ecdd 100%
        );
}


/*==============================================================
 04. HERO BACKGROUND
==============================================================*/

.terms-hero-background {
    position: absolute;
    inset: 0;

    z-index: -1;

    overflow: hidden;
    pointer-events: none;
}

.terms-hero-glow {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}

.terms-hero-glow-one {
    width: 620px;
    height: 620px;

    top: -330px;
    left: -230px;

    background:
        radial-gradient(
            circle,
            rgba(182, 123, 37, 0.17),
            transparent 70%
        );
}

.terms-hero-glow-two {
    width: 720px;
    height: 720px;

    right: -300px;
    bottom: -390px;

    background:
        radial-gradient(
            circle,
            rgba(6, 63, 49, 0.13),
            transparent 70%
        );
}

.terms-hero-grid {
    position: absolute;

    width: 570px;
    height: 570px;

    right: 4%;
    top: 7%;

    opacity: 0.22;

    background-image:
        linear-gradient(
            rgba(182, 123, 37, 0.11) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(182, 123, 37, 0.11) 1px,
            transparent 1px
        );

    background-size: 38px 38px;

    -webkit-mask-image:
        radial-gradient(
            circle,
            #000 15%,
            transparent 70%
        );

    mask-image:
        radial-gradient(
            circle,
            #000 15%,
            transparent 70%
        );
}


/*==============================================================
 05. HERO LAYOUT
==============================================================*/

.terms-hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(360px, 0.75fr);

    align-items: center;

    gap: clamp(60px, 9vw, 130px);
}


/*==============================================================
 06. HERO CONTENT
==============================================================*/

.terms-hero-content {
    max-width: 720px;
}

.terms-hero-content h1 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(56px, 5.4vw, 84px);

    line-height: 0.98;

    font-weight: 500;

    letter-spacing: -0.045em;

    color: var(--terms-black);
}

.terms-hero-content h1 span {
    display: block;

    margin-top: 8px;

    color: var(--terms-gold);
}

.terms-hero-description {
    max-width: 650px;

    margin: 30px 0 0;

    font-size: 15px;
    line-height: 1.9;

    color: var(--terms-text);
}

.terms-hero-description strong {
    color: var(--terms-black);

    font-weight: 800;
}


/*==============================================================
 07. HERO META
==============================================================*/

.terms-hero-meta {
    display: flex;
    align-items: center;

    margin-top: 40px;
    padding-top: 26px;

    border-top:
        1px solid rgba(23, 20, 15, 0.10);
}

.terms-meta-item {
    display: flex;
    align-items: center;

    gap: 12px;
}

.terms-meta-item > span {
    width: 39px;
    height: 39px;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background:
        rgba(6, 63, 49, 0.08);

    color: var(--terms-green);
}

.terms-meta-item small,
.terms-meta-item strong {
    display: block;
}

.terms-meta-item small {
    margin-bottom: 4px;

    font-size: 8px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 0.11em;
    text-transform: uppercase;

    color: var(--terms-muted);
}

.terms-meta-item strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;

    color: var(--terms-black);
}

.terms-meta-divider {
    width: 1px;
    height: 40px;

    margin: 0 28px;

    background:
        rgba(23, 20, 15, 0.11);
}


/*==============================================================
 08. HERO LEGAL CARD
==============================================================*/

.terms-hero-visual {
    position: relative;

    width: 100%;
    max-width: 420px;

    margin-left: auto;
}

.terms-legal-card {
    position: relative;

    min-height: 470px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 46px 42px;

    overflow: hidden;

    border:
        1px solid rgba(182, 123, 37, 0.25);

    border-radius: 26px;

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        0 35px 85px rgba(30, 24, 16, 0.14);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.terms-legal-card::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    top: -140px;
    right: -115px;

    border:
        1px solid rgba(182, 123, 37, 0.13);

    border-radius: 50%;

    box-shadow:
        0 0 0 42px rgba(182, 123, 37, 0.025);

    pointer-events: none;
}

.terms-legal-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--terms-green),
            var(--terms-gold),
            var(--terms-green)
        );
}

.terms-legal-number {
    position: absolute;

    top: 27px;
    right: 29px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;

    color:
        rgba(145, 96, 29, 0.58);
}

.terms-legal-icon {
    width: 66px;
    height: 66px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 29px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            var(--terms-green),
            var(--terms-green-light)
        );

    box-shadow:
        0 15px 32px rgba(6, 63, 49, 0.18);

    color: var(--terms-gold-light);

    font-size: 23px;
}

.terms-legal-label {
    display: block;

    margin-bottom: 10px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--terms-gold-dark);
}

.terms-legal-card > strong {
    display: block;

    max-width: 310px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;
    line-height: 1.18;

    font-weight: 500;

    color: var(--terms-black);
}

.terms-legal-card > p {
    margin: 15px 0 0;

    font-size: 11px;
    line-height: 1.75;

    color: var(--terms-text);
}


/*==============================================================
 09. HERO LEGAL FEATURES
==============================================================*/

.terms-legal-features {
    display: flex;
    flex-direction: column;

    gap: 9px;

    margin-top: 23px;
}

.terms-legal-features span {
    display: flex;
    align-items: center;

    gap: 9px;

    font-size: 9px;

    font-weight: 700;

    color: var(--terms-text);
}

.terms-legal-features i {
    width: 21px;
    height: 21px;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(6, 63, 49, 0.09);

    color: var(--terms-green);

    font-size: 8px;
}

.terms-legal-line {
    width: 100%;
    height: 1px;

    margin: 25px 0 17px;

    background:
        rgba(23, 20, 15, 0.09);
}

.terms-legal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--terms-muted);
}

.terms-legal-footer i {
    color: var(--terms-gold);
}


/*==============================================================
 10. CONTENT SECTION
==============================================================*/

.terms-content-section {
    position: relative;

    padding: 115px 0 125px;

    background: #ffffff;
}

.terms-content-layout {
    display: grid;

    grid-template-columns:
        280px
        minmax(0, 1fr);

    align-items: start;

    gap: clamp(45px, 6vw, 90px);
}


/*==============================================================
 11. SIDEBAR
==============================================================*/

.terms-sidebar {
    position: relative;
}

.terms-sidebar-card {
    position: sticky;

    top: 110px;

    padding: 28px 23px;

    border:
        1px solid rgba(23, 20, 15, 0.08);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #fffdf9,
            #f9f2e7
        );

    box-shadow:
        0 18px 45px rgba(30, 24, 16, 0.06);
}

.terms-sidebar-label {
    display: block;

    margin-bottom: 20px;
    padding-bottom: 16px;

    border-bottom:
        1px solid rgba(23, 20, 15, 0.08);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.15em;
    text-transform: uppercase;

    color: var(--terms-gold-dark);
}

.terms-nav {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.terms-nav a {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 9px;

    border-radius: 9px;

    font-size: 9px;
    line-height: 1.4;

    font-weight: 700;

    color: var(--terms-text);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.terms-nav a span {
    flex: 0 0 auto;

    width: 23px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 9px;

    color: var(--terms-gold);
}

.terms-nav a:hover {
    transform: translateX(3px);

    background:
        rgba(6, 63, 49, 0.07);

    color: var(--terms-green);
}


/*==============================================================
 12. MAIN CONTENT
==============================================================*/

.terms-content {
    min-width: 0;

    max-width: 850px;
}


/*==============================================================
 13. INTRO BOX
==============================================================*/

.terms-intro-box {
    display: flex;
    align-items: flex-start;

    gap: 17px;

    margin-bottom: 55px;
    padding: 25px 27px;

    border:
        1px solid rgba(182, 123, 37, 0.18);

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #fffaf1,
            #ffffff
        );
}

.terms-intro-box > span {
    width: 38px;
    height: 38px;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--terms-green);

    color: var(--terms-gold-light);
}

.terms-intro-box p {
    margin: 1px 0 0;

    font-size: 12px;
    line-height: 1.8;

    color: var(--terms-text);
}


/*==============================================================
 14. TERMS SECTIONS
==============================================================*/

.terms-section {
    position: relative;

    display: grid;

    grid-template-columns:
        55px
        minmax(0, 1fr);

    gap: 25px;

    padding: 0 0 55px;
    margin: 0 0 55px;

    border-bottom:
        1px solid rgba(23, 20, 15, 0.08);

    scroll-margin-top: 130px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section-number {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(182, 123, 37, 0.20);

    border-radius: 13px;

    background: var(--terms-cream);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;

    color: var(--terms-gold-dark);
}

.terms-section-body {
    min-width: 0;
}

.terms-section-body
.terms-section-kicker {
    margin-bottom: 11px;

    font-size: 8px;
}

.terms-section-body
.terms-section-kicker::before {
    width: 23px;
}

.terms-section-body h2 {
    margin: 0 0 20px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(28px, 2.8vw, 39px);

    line-height: 1.1;

    font-weight: 500;

    letter-spacing: -0.025em;

    color: var(--terms-black);
}

.terms-section-body > p {
    margin: 0;

    font-size: 13px;
    line-height: 1.9;

    color: var(--terms-text);
}

.terms-section-body > p + p {
    margin-top: 18px;
}


/*==============================================================
 15. STANDARD TERMS LIST
==============================================================*/

.terms-list {
    display: flex;
    flex-direction: column;

    gap: 12px;

    margin: 26px 0 0;
    padding: 0;

    list-style: none;
}

.terms-list li {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 15px 17px;

    border:
        1px solid rgba(23, 20, 15, 0.07);

    border-radius: 11px;

    background:
        rgba(251, 247, 239, 0.55);

    font-size: 11px;
    line-height: 1.7;

    color: var(--terms-text);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.terms-list li:hover {
    transform: translateX(3px);

    border-color:
        rgba(182, 123, 37, 0.18);

    background:
        rgba(251, 247, 239, 0.85);
}

.terms-list li > span {
    width: 24px;
    height: 24px;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    border-radius: 50%;

    background:
        rgba(6, 63, 49, 0.10);

    color: var(--terms-green);

    font-size: 8px;
}


/*==============================================================
 16. WARNING LIST
==============================================================*/

.terms-list-warning li {
    background:
        rgba(145, 96, 29, 0.045);
}

.terms-list-warning li > span {
    background:
        rgba(145, 96, 29, 0.10);

    color: var(--terms-gold-dark);
}


/*==============================================================
 17. PRODUCT GRID
==============================================================*/

.terms-product-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 9px;

    margin: 28px 0;
}

.terms-product-grid > div {
    position: relative;

    min-width: 0;

    padding: 18px 10px;

    overflow: hidden;

    border:
        1px solid rgba(23, 20, 15, 0.08);

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fdf9f2
        );

    text-align: center;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.terms-product-grid > div::before {
    content: "";

    position: absolute;

    width: 70px;
    height: 70px;

    top: -50px;
    right: -40px;

    border-radius: 50%;

    background:
        rgba(182, 123, 37, 0.06);

    pointer-events: none;
}

.terms-product-grid > div:hover {
    transform: translateY(-4px);

    border-color:
        rgba(182, 123, 37, 0.25);

    box-shadow:
        0 15px 30px rgba(30, 24, 16, 0.07);
}

.terms-product-grid > div > span {
    width: 36px;
    height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            var(--terms-green),
            var(--terms-green-light)
        );

    color: var(--terms-gold-light);

    font-size: 11px;
}

.terms-product-grid strong,
.terms-product-grid small {
    display: block;
}

.terms-product-grid strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 12px;
    line-height: 1.3;

    font-weight: 500;

    color: var(--terms-black);
}

.terms-product-grid small {
    margin-top: 5px;

    font-size: 7px;
    line-height: 1.4;

    font-weight: 800;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: var(--terms-muted);
}


/*==============================================================
 18. TERMS NOTE
==============================================================*/

.terms-note {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-top: 24px;
    padding: 19px 20px;

    border-left:
        3px solid var(--terms-gold);

    border-radius: 0 12px 12px 0;

    background:
        rgba(182, 123, 37, 0.07);
}

.terms-note > i {
    flex: 0 0 auto;

    margin-top: 3px;

    color: var(--terms-gold-dark);
}

.terms-note p {
    margin: 0;

    font-size: 11px;
    line-height: 1.75;

    color: var(--terms-text);
}


/*==============================================================
 19. COMMERCIAL GRID
==============================================================*/

.terms-commercial-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 11px;

    margin-top: 28px;
}

.terms-commercial-grid > div {
    position: relative;

    min-width: 0;

    padding: 21px 14px;

    overflow: hidden;

    border:
        1px solid rgba(6, 63, 49, 0.10);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(6, 63, 49, 0.055),
            rgba(255, 255, 255, 0.96)
        );

    text-align: center;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.terms-commercial-grid > div:hover {
    transform: translateY(-4px);

    border-color:
        rgba(6, 63, 49, 0.20);

    box-shadow:
        0 15px 30px rgba(6, 63, 49, 0.07);
}

.terms-commercial-grid > div > span {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    border-radius: 11px;

    background: var(--terms-green);

    color: var(--terms-gold-light);

    font-size: 12px;
}

.terms-commercial-grid strong,
.terms-commercial-grid small {
    display: block;
}

.terms-commercial-grid strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    font-weight: 500;

    color: var(--terms-black);
}

.terms-commercial-grid small {
    margin-top: 5px;

    font-size: 7px;
    line-height: 1.4;

    font-weight: 800;

    letter-spacing: 0.05em;
    text-transform: uppercase;

    color: var(--terms-muted);
}


/*==============================================================
 20. CONTACT SECTION
==============================================================*/

.terms-contact-section {
    padding-bottom: 0;

    border-bottom: 0;
}

.terms-contact-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    margin-top: 27px;
    padding: 0 23px;

    border:
        1px solid var(--terms-green);

    border-radius: 11px;

    background: var(--terms-green);

    color: #ffffff;

    font-size: 12px;
    line-height: 1;

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 12px 26px rgba(6, 63, 49, 0.12);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.terms-contact-btn:hover {
    transform: translateY(-3px);

    border-color: var(--terms-gold-dark);

    background: var(--terms-gold-dark);

    color: #ffffff;

    box-shadow:
        0 16px 35px rgba(145, 96, 29, 0.18);
}

.terms-contact-btn i {
    transition: transform 0.3s ease;
}

.terms-contact-btn:hover i {
    transform: translateX(4px);
}


/*==============================================================
 21. FINAL CTA SECTION
==============================================================*/

.terms-final-section {
    position: relative;

    padding: 20px 0 120px;

    background: #ffffff;
}

.terms-final-card {
    position: relative;

    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 30px;

    padding: 48px 55px;

    overflow: hidden;

    border-radius: 25px;

    background:
        linear-gradient(
            120deg,
            #073f31 0%,
            #043326 60%,
            #062b22 100%
        );

    box-shadow:
        0 28px 70px rgba(5, 50, 38, 0.20);
}

.terms-final-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -180px;
    right: -100px;

    border:
        1px solid rgba(228, 189, 120, 0.14);

    border-radius: 50%;

    box-shadow:
        0 0 0 50px rgba(228, 189, 120, 0.025);

    pointer-events: none;
}

.terms-final-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: 130px;
    bottom: -130px;

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;

    pointer-events: none;
}


/*==============================================================
 22. FINAL ICON
==============================================================*/

.terms-final-icon {
    position: relative;
    z-index: 2;

    width: 70px;
    height: 70px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(228, 189, 120, 0.20);

    border-radius: 19px;

    background:
        rgba(255, 255, 255, 0.07);

    color: var(--terms-gold-light);

    font-size: 24px;
}


/*==============================================================
 23. FINAL CONTENT
==============================================================*/

.terms-final-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}

.terms-final-kicker {
    margin-bottom: 10px;

    color: var(--terms-gold-light);
}

.terms-final-content h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(31px, 3vw, 44px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -0.03em;

    color: #ffffff;
}

.terms-final-content h2 span {
    color: var(--terms-gold-light);
}

.terms-final-content p {
    max-width: 600px;

    margin: 15px 0 0;

    font-size: 11px;
    line-height: 1.75;

    color:
        rgba(255, 255, 255, 0.70);
}


/*==============================================================
 24. FINAL BUTTON
==============================================================*/

.terms-final-action {
    position: relative;
    z-index: 3;
}

.terms-final-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 23px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #e4b55c,
            #c88a2c
        );

    color: #18130c;

    white-space: nowrap;

    font-size: 12px;
    line-height: 1;

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.14);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.terms-final-btn:hover {
    transform: translateY(-3px);

    background: #ffffff;

    color: var(--terms-green);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.20);
}

.terms-final-btn i {
    transition: transform 0.3s ease;
}

.terms-final-btn:hover i {
    transform: translateX(4px);
}


/*==============================================================
 25. BUTTON SAFETY
==============================================================*/

.terms-page-main
.terms-contact-btn,

.terms-page-main
.terms-final-btn {
    width: auto;

    max-width: 100%;

    text-decoration: none;

    white-space: nowrap;

    overflow: visible;

    opacity: 1;

    visibility: visible;
}


/*==============================================================
 26. RESPONSIVE - 1199PX
==============================================================*/

@media (max-width: 1199px) {

    .terms-hero-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(340px, 0.72fr);

        gap: 70px;
    }

    .terms-content-layout {
        grid-template-columns:
            250px
            minmax(0, 1fr);

        gap: 50px;
    }

    .terms-product-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/*==============================================================
 27. RESPONSIVE - 991PX
==============================================================*/

@media (max-width: 991px) {

    /* HERO */

    .terms-hero {
        min-height: auto;

        padding: 85px 0;
    }

    .terms-hero-layout {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .terms-hero-content {
        max-width: 760px;
    }

    .terms-hero-visual {
        max-width: 600px;

        margin: 0;
    }

    .terms-legal-card {
        min-height: 430px;
    }


    /* CONTENT */

    .terms-content-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .terms-sidebar-card {
        position: relative;

        top: auto;
    }

    .terms-nav {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 5px;
    }

    .terms-content {
        max-width: none;
    }


    /* COMMERCIAL GRID */

    .terms-commercial-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* FINAL CTA */

    .terms-final-card {
        grid-template-columns:
            auto
            minmax(0, 1fr);

        padding: 45px;
    }

    .terms-final-action {
        grid-column: 2;
    }

}


/*==============================================================
 28. RESPONSIVE - 767PX
==============================================================*/

@media (max-width: 767px) {

    /* HERO */

    .terms-hero {
        padding: 65px 0 75px;
    }

    .terms-hero-content h1 {
        font-size:
            clamp(45px, 11vw, 60px);
    }

    .terms-hero-description {
        font-size: 14px;

        line-height: 1.8;
    }

    .terms-hero-meta {
        flex-direction: column;
        align-items: flex-start;

        gap: 17px;
    }

    .terms-meta-divider {
        display: none;
    }

    .terms-legal-card {
        min-height: auto;

        padding: 40px 30px;
    }


    /* CONTENT */

    .terms-content-section {
        padding: 85px 0 95px;
    }

    .terms-nav {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .terms-section {
        grid-template-columns: 1fr;

        gap: 18px;

        padding-bottom: 43px;
        margin-bottom: 43px;
    }

    .terms-section-number {
        width: 42px;
        height: 42px;
    }

    .terms-section-body h2 {
        font-size:
            clamp(28px, 7vw, 36px);
    }


    /* PRODUCT GRID */

    .terms-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* FINAL */

    .terms-final-section {
        padding-bottom: 90px;
    }

    .terms-final-card {
        grid-template-columns: 1fr;

        gap: 24px;

        padding: 40px 30px;

        border-radius: 22px;
    }

    .terms-final-action {
        grid-column: auto;
    }

    .terms-final-btn {
        width: 100%;
    }

}


/*==============================================================
 29. RESPONSIVE - 575PX
==============================================================*/

@media (max-width: 575px) {

    /* COMMON */

    .terms-kicker,
    .terms-section-kicker,
    .terms-final-kicker {
        font-size: 9px;

        letter-spacing: 0.13em;
    }

    .terms-kicker::before,
    .terms-section-kicker::before,
    .terms-final-kicker::before {
        width: 27px;
    }


    /* HERO */

    .terms-hero {
        padding-top: 55px;
    }

    .terms-hero-content h1 {
        font-size: 41px;
    }

    .terms-legal-card {
        padding: 35px 24px;
    }

    .terms-legal-card > strong {
        font-size: 25px;
    }


    /* SIDEBAR */

    .terms-sidebar-card {
        padding: 23px 18px;
    }

    .terms-nav {
        grid-template-columns: 1fr;
    }


    /* INTRO */

    .terms-intro-box {
        padding: 20px;

        gap: 13px;
    }

    .terms-intro-box > span {
        width: 34px;
        height: 34px;
    }


    /* CONTENT */

    .terms-section-body > p {
        font-size: 12px;

        line-height: 1.85;
    }


    /* LIST */

    .terms-list li {
        padding: 14px;

        font-size: 10px;
    }


    /* PRODUCT GRID */

    .terms-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* COMMERCIAL GRID */

    .terms-commercial-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* CONTACT */

    .terms-contact-btn {
        width: 100%;

        padding-left: 17px;
        padding-right: 17px;

        white-space: normal;

        text-align: center;

        line-height: 1.4;
    }


    /* FINAL */

    .terms-final-card {
        padding: 35px 23px;
    }

    .terms-final-content h2 {
        font-size: 34px;
    }

}


/*==============================================================
 30. VERY SMALL DEVICES
==============================================================*/

@media (max-width: 380px) {

    .terms-hero-content h1 {
        font-size: 37px;
    }

    .terms-legal-card {
        padding:
            33px 20px
            28px;
    }

    .terms-legal-card > strong {
        font-size: 23px;
    }

    .terms-legal-features span {
        font-size: 8px;
    }

    .terms-product-grid,
    .terms-commercial-grid {
        grid-template-columns: 1fr;
    }

    .terms-final-content h2 {
        font-size: 31px;
    }

}


/*==============================================================
 31. ACCESSIBILITY
==============================================================*/

.terms-page-main a:focus-visible,
.terms-page-main button:focus-visible {
    outline:
        3px solid rgba(182, 123, 37, 0.45);

    outline-offset: 4px;
}


/*==============================================================
 32. REDUCED MOTION
==============================================================*/

@media (prefers-reduced-motion: reduce) {

    .terms-page-main *,
    .terms-page-main *::before,
    .terms-page-main *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}