/*==============================================================
 RAEES IMPORT & EXPORT
 EXPORT PAGE
 Ultra Premium Final CSS

 File:
 /public_html/assets/css/sections/export.css
==============================================================*/


/*==============================================================
 01. PAGE VARIABLES
==============================================================*/

.export-page-main {
    --export-black: #17140f;
    --export-dark: #211c15;

    --export-green: #063f31;
    --export-green-dark: #032d24;
    --export-green-light: #0b5542;

    --export-gold: #b67b25;
    --export-gold-dark: #91601d;
    --export-gold-light: #e4bd78;

    --export-cream: #fbf7ef;
    --export-cream-dark: #f3eadb;

    --export-white: #ffffff;

    --export-text: #5f584f;
    --export-muted: #837a6f;

    --export-border: rgba(25, 20, 14, 0.10);
    --export-gold-border: rgba(182, 123, 37, 0.25);

    --export-shadow:
        0 24px 70px rgba(28, 22, 14, 0.10);

    --export-shadow-hover:
        0 34px 90px rgba(28, 22, 14, 0.15);

    position: relative;

    width: 100%;

    overflow: hidden;

    background: #ffffff;
}

.export-page-main *,
.export-page-main *::before,
.export-page-main *::after {
    box-sizing: border-box;
}

.export-page-main img {
    display: block;

    max-width: 100%;
}

.export-page-main a {
    text-decoration: none;
}

.export-page-main .container {
    position: relative;

    z-index: 2;
}


/*==============================================================
 02. COMMON KICKERS
==============================================================*/

.export-kicker,
.export-section-kicker,
.export-final-kicker {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    font-size: 11px;
    line-height: 1.2;

    font-weight: 800;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: var(--export-gold);
}

.export-kicker::before,
.export-section-kicker::before,
.export-final-kicker::before {
    content: "";

    width: 38px;
    height: 1px;

    flex: 0 0 auto;

    background:
        linear-gradient(
            90deg,
            var(--export-gold),
            var(--export-gold-light)
        );
}


/*==============================================================
 03. HERO
==============================================================*/

.export-hero {
    position: relative;

    isolation: isolate;

    min-height: 760px;

    display: flex;
    align-items: center;

    padding: 105px 0;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #fffdf9 0%,
            #fbf6ed 50%,
            #f5ecdd 100%
        );
}


/*==============================================================
 04. HERO BACKGROUND
==============================================================*/

.export-hero-background {
    position: absolute;

    inset: 0;

    z-index: -1;

    overflow: hidden;

    pointer-events: none;
}

.export-hero-glow {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}

.export-hero-glow-one {
    width: 600px;
    height: 600px;

    top: -300px;
    left: -230px;

    background:
        radial-gradient(
            circle,
            rgba(207, 158, 76, 0.17) 0%,
            rgba(207, 158, 76, 0) 70%
        );
}

.export-hero-glow-two {
    width: 720px;
    height: 720px;

    right: -300px;
    bottom: -350px;

    background:
        radial-gradient(
            circle,
            rgba(6, 63, 49, 0.12) 0%,
            rgba(6, 63, 49, 0) 70%
        );
}

.export-hero-grid {
    position: absolute;

    width: 570px;
    height: 570px;

    right: 4%;
    top: 10%;

    opacity: 0.24;

    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;

    mask-image:
        radial-gradient(
            circle at center,
            #000 15%,
            transparent 70%
        );

    -webkit-mask-image:
        radial-gradient(
            circle at center,
            #000 15%,
            transparent 70%
        );
}


/*==============================================================
 05. HERO LAYOUT
==============================================================*/

.export-hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;

    gap: clamp(60px, 8vw, 120px);
}


/*==============================================================
 06. HERO CONTENT
==============================================================*/

.export-hero-content {
    position: relative;

    max-width: 700px;
}

.export-hero-content h1 {
    max-width: 710px;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(56px, 5.2vw, 84px);

    line-height: 0.98;

    font-weight: 500;

    letter-spacing: -0.045em;

    color: var(--export-black);
}

.export-hero-content h1 span {
    display: block;

    margin-top: 10px;

    color: var(--export-gold);
}

.export-hero-description {
    max-width: 640px;

    margin: 31px 0 0;

    font-size: 16px;
    line-height: 1.9;

    color: var(--export-text);
}

.export-hero-description strong {
    font-weight: 800;

    color: var(--export-black);
}


/*==============================================================
 07. HERO BUTTONS
==============================================================*/

.export-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 14px;

    margin-top: 35px;
}

.export-primary-btn,
.export-outline-btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 0 25px;

    border-radius: 12px;

    font-size: 13px;
    line-height: 1;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.export-primary-btn {
    border: 1px solid var(--export-black);

    background: var(--export-black);

    color: #ffffff;

    box-shadow:
        0 14px 30px rgba(23, 20, 15, 0.15);
}

.export-primary-btn:hover {
    transform: translateY(-3px);

    border-color: var(--export-green);

    background: var(--export-green);

    color: #ffffff;

    box-shadow:
        0 19px 40px rgba(6, 63, 49, 0.20);
}

.export-outline-btn {
    border:
        1px solid rgba(23, 20, 15, 0.20);

    background:
        rgba(255, 255, 255, 0.55);

    color: var(--export-black);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.export-outline-btn:hover {
    transform: translateY(-3px);

    border-color: var(--export-gold);

    background: #ffffff;

    color: var(--export-gold-dark);
}


/*==============================================================
 08. HERO FEATURES
==============================================================*/

.export-hero-features {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

    margin-top: 44px;
    padding-top: 28px;

    border-top:
        1px solid rgba(23, 20, 15, 0.10);
}

.export-hero-feature {
    display: flex;
    align-items: center;

    gap: 10px;
}

.export-hero-feature > span {
    width: 38px;
    height: 38px;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        rgba(6, 63, 49, 0.08);

    color: var(--export-green);

    font-size: 12px;
}

.export-hero-feature strong,
.export-hero-feature small {
    display: block;
}

.export-hero-feature strong {
    margin-bottom: 3px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 12px;

    color: var(--export-black);
}

.export-hero-feature small {
    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: var(--export-muted);
}


/*==============================================================
 09. HERO VISUAL
==============================================================*/

.export-hero-visual {
    position: relative;

    width: 100%;
    max-width: 560px;

    margin-left: auto;
}

.export-hero-image-card {
    position: relative;

    width: 100%;

    padding: 11px;

    border:
        1px solid rgba(182, 123, 37, 0.27);

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.78);

    box-shadow:
        0 35px 85px rgba(30, 24, 16, 0.18);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.export-hero-image-card::before {
    content: "";

    position: absolute;

    top: -24px;
    right: -24px;

    width: 115px;
    height: 115px;

    border-top:
        1px solid rgba(182, 123, 37, 0.55);

    border-right:
        1px solid rgba(182, 123, 37, 0.55);

    border-radius: 0 25px 0 0;

    pointer-events: none;
}

.export-hero-image-card::after {
    content: "";

    position: absolute;

    left: -23px;
    bottom: -23px;

    width: 105px;
    height: 105px;

    border-left:
        1px solid rgba(182, 123, 37, 0.42);

    border-bottom:
        1px solid rgba(182, 123, 37, 0.42);

    border-radius: 0 0 0 25px;

    pointer-events: none;
}

.export-hero-image-wrap {
    position: relative;

    width: 100%;
    height: 570px;

    overflow: hidden;

    border-radius: 22px;

    background: #e9e3d8;
}

.export-hero-image-wrap::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(6, 28, 22, 0) 48%,
            rgba(6, 28, 22, 0.34) 100%
        );

    pointer-events: none;
}

.export-hero-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.8s cubic-bezier(.2, .8, .2, 1);
}

.export-hero-image-card:hover
.export-hero-image-wrap img {
    transform: scale(1.045);
}


/*==============================================================
 10. HERO FLOATING CARD
==============================================================*/

.export-floating-card {
    position: absolute;

    left: -42px;
    bottom: 88px;

    z-index: 4;

    min-width: 205px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 15px 18px;

    border:
        1px solid rgba(182, 123, 37, 0.18);

    border-radius: 16px;

    background:
        rgba(255, 253, 248, 0.96);

    box-shadow:
        0 18px 44px rgba(24, 20, 15, 0.16);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.export-floating-icon {
    flex: 0 0 auto;

    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--export-green);

    color: var(--export-gold-light);
}

.export-floating-card small,
.export-floating-card strong {
    display: block;
}

.export-floating-card small {
    margin-bottom: 4px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    color: var(--export-muted);
}

.export-floating-card strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    color: var(--export-black);
}


/*==============================================================
 11. GLOBAL BADGE
==============================================================*/

.export-global-badge {
    position: absolute;

    top: 52px;
    right: -25px;

    z-index: 4;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 12px 16px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--export-green),
            var(--export-green-light)
        );

    box-shadow:
        0 18px 42px rgba(6, 63, 49, 0.24);

    color: #ffffff;
}

.export-global-badge > span {
    flex: 0 0 auto;

    width: 35px;
    height: 35px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.12);

    color: var(--export-gold-light);
}

.export-global-badge small,
.export-global-badge strong {
    display: block;
}

.export-global-badge small {
    margin-bottom: 3px;

    font-size: 8px;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    color:
        rgba(255, 255, 255, 0.65);
}

.export-global-badge strong {
    font-size: 11px;

    color: #ffffff;
}


/*==============================================================
 12. INTRODUCTION
==============================================================*/

.export-intro-section {
    position: relative;

    padding: 115px 0;

    background: #ffffff;
}

.export-intro-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: start;

    gap: clamp(60px, 8vw, 125px);
}

.export-intro-heading h2 {
    max-width: 540px;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(43px, 4vw, 62px);

    line-height: 1.04;

    font-weight: 500;

    letter-spacing: -0.04em;

    color: var(--export-black);
}

.export-intro-heading h2 span {
    display: block;

    margin-top: 7px;

    color: var(--export-gold);
}

.export-intro-content {
    padding-top: 8px;
}

.export-intro-content p {
    margin: 0;

    font-size: 15px;
    line-height: 1.9;

    color: var(--export-text);
}

.export-intro-content p + p {
    margin-top: 22px;
}


/*==============================================================
 13. COMMON SECTION HEADING
==============================================================*/

.export-section-heading {
    max-width: 780px;

    margin: 0 auto;

    text-align: center;
}

.export-section-heading
.export-section-kicker {
    justify-content: center;
}

.export-section-heading h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(43px, 4vw, 62px);

    line-height: 1.04;

    font-weight: 500;

    letter-spacing: -0.04em;

    color: var(--export-black);
}

.export-section-heading h2 span {
    color: var(--export-gold);
}

.export-section-heading > p {
    max-width: 680px;

    margin: 21px auto 0;

    font-size: 14px;
    line-height: 1.85;

    color: var(--export-text);
}


/*==============================================================
 14. EXPORT PROCESS
==============================================================*/

.export-process-section {
    position: relative;

    padding: 115px 0 125px;

    background:
        linear-gradient(
            180deg,
            #fbf7ef 0%,
            #fffdf9 100%
        );
}

.export-process-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

    margin-top: 60px;
}


/*==============================================================
 15. PROCESS CARD
==============================================================*/

.export-process-card {
    position: relative;

    min-height: 300px;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid rgba(23, 20, 15, 0.09);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.90);

    box-shadow:
        0 18px 45px rgba(30, 24, 16, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.export-process-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -85px;
    right: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(182, 123, 37, 0.11),
            transparent 70%
        );
}

.export-process-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(182, 123, 37, 0.28);

    box-shadow:
        0 28px 65px rgba(30, 24, 16, 0.11);
}

.export-process-number {
    position: absolute;

    top: 27px;
    right: 27px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;

    color:
        rgba(145, 96, 29, 0.58);
}

.export-process-icon {
    width: 55px;
    height: 55px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 29px;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            var(--export-green),
            #07533f
        );

    box-shadow:
        0 13px 28px rgba(6, 63, 49, 0.16);

    color: var(--export-gold-light);

    transition:
        transform 0.35s ease;
}

.export-process-card:hover
.export-process-icon {
    transform:
        translateY(-2px)
        rotate(-4deg);
}

.export-process-card h3 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;
    line-height: 1.2;

    font-weight: 500;

    color: var(--export-black);
}

.export-process-card p {
    margin: 14px 0 0;

    font-size: 12px;
    line-height: 1.75;

    color: var(--export-text);
}


/*==============================================================
 16. CAPABILITIES SECTION
==============================================================*/

.export-capabilities-section {
    position: relative;

    padding: 125px 0;

    background: #ffffff;
}

.export-capabilities-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(400px, 0.95fr);

    align-items: center;

    gap: clamp(65px, 8vw, 120px);
}


/*==============================================================
 17. CAPABILITIES CONTENT
==============================================================*/

.export-capabilities-content h2 {
    max-width: 620px;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(43px, 4vw, 61px);

    line-height: 1.04;

    font-weight: 500;

    letter-spacing: -0.04em;

    color: var(--export-black);
}

.export-capabilities-content h2 span {
    display: block;

    margin-top: 7px;

    color: var(--export-gold);
}

.export-capabilities-content > p {
    max-width: 620px;

    margin: 25px 0 0;

    font-size: 14px;
    line-height: 1.85;

    color: var(--export-text);
}

.export-capabilities-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;

    margin-top: 35px;
}

.export-capability-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 19px;

    border:
        1px solid rgba(23, 20, 15, 0.08);

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fdf9f2
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.export-capability-item:hover {
    transform: translateY(-3px);

    border-color:
        rgba(182, 123, 37, 0.22);

    box-shadow:
        0 16px 35px rgba(30, 24, 16, 0.07);
}

.export-capability-item > span {
    flex: 0 0 auto;

    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--export-green);

    color: var(--export-gold-light);

    font-size: 11px;
}

.export-capability-item strong {
    display: block;

    margin-bottom: 5px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    color: var(--export-black);
}

.export-capability-item p {
    margin: 0;

    font-size: 10px;
    line-height: 1.65;

    color: var(--export-text);
}


/*==============================================================
 18. CAPABILITIES IMAGE
==============================================================*/

.export-capabilities-media {
    position: relative;

    max-width: 560px;

    margin-left: auto;
}

.export-capabilities-image {
    position: relative;

    height: 590px;

    padding: 10px;

    overflow: hidden;

    border:
        1px solid rgba(182, 123, 37, 0.23);

    border-radius: 27px;

    background: #ffffff;

    box-shadow:
        0 30px 75px rgba(30, 24, 16, 0.14);
}

.export-capabilities-image::after {
    content: "";

    position: absolute;

    inset: 10px;

    border-radius: 19px;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(5, 39, 30, 0.28)
        );

    pointer-events: none;
}

.export-capabilities-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 19px;

    transition:
        transform 0.8s cubic-bezier(.2, .8, .2, 1);
}

.export-capabilities-image:hover img {
    transform: scale(1.045);
}


/*==============================================================
 19. CAPABILITIES FLOATING CARD
==============================================================*/

.export-capabilities-floating {
    position: absolute;

    left: -35px;
    bottom: 55px;

    z-index: 4;

    min-width: 220px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 16px 18px;

    border:
        1px solid rgba(182, 123, 37, 0.18);

    border-radius: 15px;

    background:
        rgba(255, 253, 248, 0.96);

    box-shadow:
        0 18px 42px rgba(24, 20, 15, 0.15);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.export-capabilities-floating > span {
    flex: 0 0 auto;

    width: 39px;
    height: 39px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--export-green);

    color: var(--export-gold-light);
}

.export-capabilities-floating small,
.export-capabilities-floating strong {
    display: block;
}

.export-capabilities-floating small {
    margin-bottom: 4px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    color: var(--export-muted);
}

.export-capabilities-floating strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    color: var(--export-black);
}


/*==============================================================
 20. PRODUCTS SECTION
==============================================================*/

.export-products-section {
    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #fbf7ef 0%,
            #fffdf9 100%
        );
}

.export-products-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 15px;

    margin-top: 55px;
}


/*==============================================================
 21. PRODUCT CARD
==============================================================*/

.export-product-card {
    position: relative;

    min-height: 280px;

    display: flex;
    flex-direction: column;

    padding: 27px 24px;

    overflow: hidden;

    border:
        1px solid rgba(23, 20, 15, 0.09);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.92);

    box-shadow:
        0 17px 40px rgba(30, 24, 16, 0.06);

    color: var(--export-black);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
}

.export-product-card::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    top: -70px;
    right: -70px;

    border-radius: 50%;

    background:
        rgba(182, 123, 37, 0.07);
}

.export-product-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(182, 123, 37, 0.30);

    background: #ffffff;

    box-shadow:
        0 27px 60px rgba(30, 24, 16, 0.11);
}

.export-product-number {
    position: absolute;

    top: 23px;
    right: 23px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 12px;

    color:
        rgba(145, 96, 29, 0.55);
}

.export-product-icon {
    width: 50px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 29px;

    border-radius: 14px;

    background: var(--export-green);

    color: var(--export-gold-light);

    box-shadow:
        0 12px 26px rgba(6, 63, 49, 0.15);

    transition:
        transform 0.35s ease;
}

.export-product-card:hover
.export-product-icon {
    transform:
        rotate(-5deg)
        scale(1.04);
}

.export-product-card small {
    display: block;

    margin-bottom: 8px;

    font-size: 8px;
    line-height: 1.4;

    font-weight: 800;

    letter-spacing: 0.10em;

    text-transform: uppercase;

    color: var(--export-gold-dark);
}

.export-product-card > strong {
    display: block;

    padding-right: 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    line-height: 1.2;

    font-weight: 500;

    color: var(--export-black);
}

.export-product-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: auto;
    padding-top: 28px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.06em;

    text-transform: uppercase;

    color: var(--export-gold-dark);
}

.export-product-link i {
    transition:
        transform 0.3s ease;
}

.export-product-card:hover
.export-product-link i {
    transform: translateX(6px);
}


/*==============================================================
 22. WHY SECTION
==============================================================*/

.export-why-section {
    position: relative;

    padding: 115px 0;

    background: #ffffff;
}

.export-why-card {
    position: relative;

    max-width: 1220px;

    margin: 0 auto;

    padding: 58px;

    overflow: hidden;

    border:
        1px solid rgba(182, 123, 37, 0.16);

    border-radius: 27px;

    background:
        linear-gradient(
            120deg,
            #fffaf1 0%,
            #ffffff 52%,
            #f7f0e4 100%
        );

    box-shadow:
        0 25px 65px rgba(30, 24, 16, 0.08);
}

.export-why-card::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    top: -185px;
    right: -160px;

    border:
        1px solid rgba(182, 123, 37, 0.13);

    border-radius: 50%;

    box-shadow:
        0 0 0 55px rgba(182, 123, 37, 0.025);

    pointer-events: none;
}

.export-why-heading {
    max-width: 700px;
}

.export-why-heading h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(40px, 3.8vw, 57px);

    line-height: 1.04;

    font-weight: 500;

    letter-spacing: -0.04em;

    color: var(--export-black);
}

.export-why-heading h2 span {
    color: var(--export-gold);
}


/*==============================================================
 23. WHY GRID
==============================================================*/

.export-why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    margin-top: 50px;
}

.export-why-item {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 5px 25px;

    border-right:
        1px solid rgba(23, 20, 15, 0.09);
}

.export-why-item:first-child {
    padding-left: 0;
}

.export-why-item:last-child {
    padding-right: 0;

    border-right: 0;
}

.export-why-item > span {
    flex: 0 0 auto;

    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--export-green);

    color: var(--export-gold-light);
}

.export-why-item strong {
    display: block;

    margin-bottom: 8px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;

    color: var(--export-black);
}

.export-why-item p {
    margin: 0;

    font-size: 10px;
    line-height: 1.7;

    color: var(--export-text);
}


/*==============================================================
 24. FINAL CTA
==============================================================*/

.export-final-cta {
    position: relative;

    padding: 30px 0 120px;

    background: #ffffff;
}

.export-final-card {
    position: relative;

    max-width: 1180px;
    min-height: 370px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    padding:
        65px clamp(40px, 6vw, 80px);

    overflow: hidden;

    border-radius: 28px;

    background:
        linear-gradient(
            120deg,
            #073f31 0%,
            #043326 55%,
            #062b22 100%
        );

    box-shadow:
        0 30px 75px rgba(5, 50, 38, 0.20);
}

.export-final-card::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -160px;
    top: -180px;

    border:
        1px solid rgba(228, 189, 120, 0.15);

    border-radius: 50%;

    box-shadow:
        0 0 0 60px rgba(228, 189, 120, 0.025);
}

.export-final-card::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: 40px;
    bottom: -250px;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 50%;
}

.export-final-content {
    position: relative;

    z-index: 3;

    max-width: 730px;
}

.export-final-kicker {
    color: var(--export-gold-light);
}

.export-final-content h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(43px, 4vw, 62px);

    line-height: 1.02;

    font-weight: 500;

    letter-spacing: -0.04em;

    color: #ffffff;
}

.export-final-content h2 span {
    color: var(--export-gold-light);
}

.export-final-content > p {
    max-width: 660px;

    margin: 22px 0 0;

    font-size: 14px;
    line-height: 1.8;

    color:
        rgba(255, 255, 255, 0.72);
}


/*==============================================================
 25. FINAL CTA BUTTONS
==============================================================*/

.export-final-actions {
    position: relative;

    z-index: 5;

    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 31px;
}

.export-final-primary,
.export-final-whatsapp {
    position: relative;

    z-index: 6;

    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 0 23px;

    border-radius: 11px;

    font-size: 13px;
    line-height: 1;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.export-final-primary {
    border:
        1px solid rgba(255, 255, 255, 0.10);

    background:
        linear-gradient(
            135deg,
            #e4b55c,
            #c88a2c
        );

    color: #18130c;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.15);
}

.export-final-primary:hover {
    transform: translateY(-3px);

    background: #ffffff;

    border-color: #ffffff;

    color: var(--export-green);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.20);
}

.export-final-whatsapp {
    border:
        1px solid rgba(255, 255, 255, 0.28);

    background:
        rgba(255, 255, 255, 0.06);

    color: #ffffff;
}

.export-final-whatsapp i {
    font-size: 17px;

    color: #4ade80;
}

.export-final-whatsapp:hover {
    transform: translateY(-3px);

    border-color: #1fcf67;

    background: #1fcf67;

    color: #ffffff;

    box-shadow:
        0 16px 32px rgba(31, 207, 103, 0.18);
}

.export-final-whatsapp:hover i {
    color: #ffffff;
}


/*==============================================================
 26. FINAL DECORATION
==============================================================*/

.export-final-decoration {
    position: absolute;

    z-index: 1;

    top: 50%;
    right: 75px;

    transform: translateY(-50%);

    width: 220px;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(228, 189, 120, 0.12);

    border-radius: 50%;

    font-size: 95px;

    color:
        rgba(228, 189, 120, 0.11);

    pointer-events: none;
}

.export-final-decoration::before {
    content: "";

    position: absolute;

    inset: 22px;

    border:
        1px solid rgba(228, 189, 120, 0.08);

    border-radius: 50%;
}


/*==============================================================
 27. BUTTON SAFETY
==============================================================*/

.export-page-main
.export-primary-btn,

.export-page-main
.export-outline-btn,

.export-page-main
.export-final-primary,

.export-page-main
.export-final-whatsapp {
    width: auto;

    max-width: 100%;

    text-decoration: none;

    white-space: nowrap;

    overflow: visible;

    opacity: 1;

    visibility: visible;
}


/*==============================================================
 28. RESPONSIVE - 1199PX
==============================================================*/

@media (max-width: 1199px) {

    .export-hero {
        min-height: auto;

        padding: 90px 0;
    }

    .export-hero-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, 0.85fr);

        gap: 65px;
    }

    .export-hero-content h1 {
        font-size:
            clamp(52px, 5.5vw, 72px);
    }

    .export-hero-image-wrap {
        height: 520px;
    }

    .export-floating-card {
        left: -25px;
    }


    /* PRODUCTS */

    .export-products-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    /* WHY */

    .export-why-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 30px 0;
    }

    .export-why-item:nth-child(2) {
        border-right: 0;
    }

    .export-why-item:nth-child(3) {
        padding-left: 0;
    }

}


/*==============================================================
 29. RESPONSIVE - 991PX
==============================================================*/

@media (max-width: 991px) {

    /* HERO */

    .export-hero {
        padding: 80px 0 95px;
    }

    .export-hero-layout {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .export-hero-content {
        max-width: 760px;
    }

    .export-hero-visual {
        max-width: 650px;

        margin: 0 auto;
    }

    .export-hero-image-wrap {
        height: 620px;
    }

    .export-floating-card {
        left: 20px;
        bottom: 35px;
    }

    .export-global-badge {
        right: 20px;
    }


    /* INTRO */

    .export-intro-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .export-intro-heading h2 {
        max-width: 670px;
    }


    /* PROCESS */

    .export-process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* CAPABILITIES */

    .export-capabilities-layout {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .export-capabilities-content {
        max-width: 730px;
    }

    .export-capabilities-media {
        width: 100%;
        max-width: 650px;

        margin: 0 auto;
    }


    /* PRODUCTS */

    .export-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* FINAL */

    .export-final-decoration {
        right: -50px;

        opacity: 0.45;
    }

}


/*==============================================================
 30. RESPONSIVE - 767PX
==============================================================*/

@media (max-width: 767px) {

    /* HERO */

    .export-hero {
        padding: 65px 0 75px;
    }

    .export-hero-content h1 {
        font-size:
            clamp(46px, 12vw, 62px);
    }

    .export-hero-description {
        margin-top: 24px;

        font-size: 14px;
        line-height: 1.75;
    }

    .export-hero-actions {
        align-items: stretch;
    }


    /* FEATURES */

    .export-hero-features {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 38px;
    }

    .export-hero-feature {
        padding-bottom: 13px;

        border-bottom:
            1px solid rgba(23, 20, 15, 0.07);
    }

    .export-hero-feature:last-child {
        padding-bottom: 0;

        border-bottom: 0;
    }


    /* HERO IMAGE */

    .export-hero-visual {
        width: calc(100% - 10px);
    }

    .export-hero-image-card {
        padding: 8px;

        border-radius: 24px;
    }

    .export-hero-image-card::before,
    .export-hero-image-card::after {
        display: none;
    }

    .export-hero-image-wrap {
        height: 480px;

        border-radius: 18px;
    }

    .export-floating-card {
        left: 18px;
        bottom: 18px;

        min-width: 175px;

        padding: 12px 14px;
    }

    .export-global-badge {
        top: 18px;
        right: 18px;
    }


    /* INTRO */

    .export-intro-section {
        padding: 85px 0;
    }

    .export-intro-heading h2 {
        font-size:
            clamp(38px, 10vw, 50px);
    }


    /* COMMON HEADING */

    .export-section-heading h2 {
        font-size:
            clamp(38px, 10vw, 50px);
    }


    /* PROCESS */

    .export-process-section {
        padding: 90px 0;
    }

    .export-process-grid {
        grid-template-columns: 1fr;

        margin-top: 42px;
    }

    .export-process-card {
        min-height: auto;
    }


    /* CAPABILITIES */

    .export-capabilities-section {
        padding: 90px 0;
    }

    .export-capabilities-content h2 {
        font-size:
            clamp(38px, 10vw, 50px);
    }

    .export-capabilities-list {
        grid-template-columns: 1fr;
    }

    .export-capabilities-image {
        height: 500px;
    }

    .export-capabilities-floating {
        left: 18px;
        bottom: 25px;
    }


    /* PRODUCTS */

    .export-products-section {
        padding: 90px 0;
    }

    .export-products-grid {
        grid-template-columns: 1fr;

        margin-top: 42px;
    }

    .export-product-card {
        min-height: 240px;
    }


    /* WHY */

    .export-why-section {
        padding: 85px 0;
    }

    .export-why-card {
        padding: 38px 26px;

        border-radius: 22px;
    }

    .export-why-heading h2 {
        font-size:
            clamp(38px, 10vw, 50px);
    }

    .export-why-grid {
        grid-template-columns: 1fr;

        gap: 0;

        margin-top: 35px;
    }

    .export-why-item,
    .export-why-item:first-child,
    .export-why-item:nth-child(3) {
        padding: 22px 0;

        border-right: 0;

        border-bottom:
            1px solid rgba(23, 20, 15, 0.08);
    }

    .export-why-item:last-child {
        border-bottom: 0;
    }


    /* FINAL CTA */

    .export-final-cta {
        padding: 20px 0 90px;
    }

    .export-final-card {
        min-height: auto;

        padding: 48px 28px;

        border-radius: 22px;
    }

    .export-final-content h2 {
        font-size:
            clamp(38px, 10vw, 50px);
    }

    .export-final-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .export-final-primary,
    .export-final-whatsapp {
        width: 100%;

        min-height: 54px;
    }

    .export-final-decoration {
        display: none;
    }

}


/*==============================================================
 31. RESPONSIVE - 575PX
==============================================================*/

@media (max-width: 575px) {

    /* COMMON */

    .export-kicker,
    .export-section-kicker,
    .export-final-kicker {
        font-size: 9px;

        letter-spacing: 0.14em;
    }

    .export-kicker::before,
    .export-section-kicker::before,
    .export-final-kicker::before {
        width: 27px;
    }


    /* HERO */

    .export-hero {
        padding-top: 55px;
    }

    .export-hero-content h1 {
        font-size: 43px;
    }

    .export-hero-actions {
        flex-direction: column;
    }

    .export-primary-btn,
    .export-outline-btn {
        width: 100%;

        min-height: 53px;
    }

    .export-hero-image-wrap {
        height: 400px;
    }

    .export-global-badge {
        max-width: 165px;
    }

    .export-global-badge strong {
        font-size: 9px;
    }


    /* INTRO */

    .export-intro-content p {
        font-size: 14px;

        line-height: 1.8;
    }


    /* PROCESS */

    .export-process-card {
        padding: 26px 23px;
    }


    /* CAPABILITIES */

    .export-capabilities-image {
        height: 420px;

        padding: 7px;

        border-radius: 22px;
    }

    .export-capabilities-image::after {
        inset: 7px;

        border-radius: 16px;
    }

    .export-capabilities-image img {
        border-radius: 16px;
    }

    .export-capabilities-floating {
        right: 12px;
        left: 12px;

        width: auto;
        min-width: 0;
    }


    /* PRODUCTS */

    .export-product-card {
        padding: 25px 22px;
    }


    /* WHY */

    .export-why-card {
        padding: 34px 22px;
    }


    /* FINAL */

    .export-final-card {
        padding: 42px 22px;
    }

    .export-final-content h2 {
        font-size: 38px;
    }

}


/*==============================================================
 32. VERY SMALL DEVICES
==============================================================*/

@media (max-width: 380px) {

    .export-hero-content h1 {
        font-size: 39px;
    }

    .export-hero-image-wrap {
        height: 350px;
    }

    .export-global-badge {
        display: none;
    }

    .export-floating-card {
        left: 12px;
        right: 12px;

        width: auto;
        max-width: none;
    }

    .export-capabilities-image {
        height: 360px;
    }

    .export-section-heading h2,
    .export-intro-heading h2,
    .export-capabilities-content h2,
    .export-why-heading h2 {
        font-size: 35px;
    }

    .export-final-content h2 {
        font-size: 35px;
    }

}


/*==============================================================
 33. ACCESSIBILITY
==============================================================*/

.export-page-main a:focus-visible,
.export-page-main button:focus-visible {
    outline:
        3px solid rgba(182, 123, 37, 0.45);

    outline-offset: 4px;
}


/*==============================================================
 34. REDUCED MOTION
==============================================================*/

@media (prefers-reduced-motion: reduce) {

    .export-page-main *,
    .export-page-main *::before,
    .export-page-main *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}