/* =========================================
   ROOT VARIABLES
========================================= */
:root {
    --primary-color: #42d996;
    --primary-dark: #20b778;
    --primary-light: #e9fbf3;
    --dark-color: #202020;
    --dark-secondary: #333b37;
    --white-color: #ffffff;
    --background-color: #f7fcf9;
    --text-color: #202020;
    --text-muted: #64716a;
    --border-color: #dcefe6;
    --header-height: 88px;
    --shadow-small:
        0 10px 30px rgba(29, 84, 59, 0.08);
    --shadow-medium:
        0 20px 50px rgba(29, 84, 59, 0.13);
    --transition:
        all 0.3s ease;
}

/* =========================================
   GLOBAL RESET
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* =========================================
   SCROLL REVEAL
========================================= */
html.js-enabled [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

html.js-enabled [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   COMMON CONTAINER
========================================= */
.custom-container {
    width: min(100% - 40px, 1240px);
    max-width: 1240px;
}

/* =========================================
   ACCESSIBILITY
========================================= */
.skip-link {
    position: fixed;
    z-index: 9999;
    top: -100px;
    left: 20px;
    padding: 12px 18px;
    border-radius: 8px;
    background-color: var(--dark-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 20px;
}

/* =========================================
   HEADER
========================================= */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 18px;
    pointer-events: none;
    transition: padding 0.3s ease;
}

.site-navbar {
    padding: 0;
    pointer-events: auto;
}

/* HEADER CONTAINER */
.header-shell {
    min-height: 76px;
    padding: 9px 11px 9px 20px;
    border: 1px solid rgba(199, 226, 212, 0.9);
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 55px rgba(28, 78, 54, 0.11);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition:
        min-height 0.3s ease,
        border-radius 0.3s ease,
        box-shadow 0.3s ease;
}

/* Header after page scroll */
.site-header.header-scrolled {
    padding-top: 9px;
    padding-bottom: 9px;
}

.site-header.header-scrolled .header-shell {
    min-height: 68px;
    box-shadow: 0 14px 45px rgba(28, 78, 54, 0.14);
}

/* =========================================
   LOGO
========================================= */
.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.header-logo {
    display: block;
    width: 172px;
    height: auto;
}

/* NAVIGATION CONTAINER */
.navbar-nav {
    align-items: center;
    gap: 2px;
    padding: 5px;
    border: 1px solid #e2f0e8;
    border-radius: 50px;
    background-color: #f3f9f6;
}

/* NAVIGATION LINKS */
.navbar-nav .nav-link {
    padding: 10px 18px !important;
    border-radius: 50px;
    color: #516058;
    font-size: 13px;
    font-weight: 700;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    background-color: rgba(255, 255, 255, 0.75);
    color: var(--dark-color);
}

.navbar-nav .nav-link.active {
    background-color: var(--white-color);
    color: var(--dark-color);
    box-shadow: 0 6px 18px rgba(35, 84, 61, 0.1);
}

/* CONTACT BUTTON */
.header-cta {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 6px 7px 6px 19px;
    border: 1px solid var(--dark-color);
    border-radius: 50px;
    background-color: var(--dark-color);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(32, 32, 32, 0.16);
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.header-cta-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-size: 14px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.header-cta:hover,
.header-cta:focus {
    border-color: var(--primary-dark);
    background-color: var(--primary-dark);
    color: var(--white-color);
    box-shadow: 0 16px 34px rgba(32, 183, 120, 0.25);
    transform: translateY(-2px);
}

.header-cta:hover .header-cta-icon {
    background-color: var(--white-color);
    color: var(--primary-dark);
    transform: rotate(45deg);
}

/* MOBILE MENU BUTTON */
.navbar-toggler {
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 13px;
    background-color: var(--primary-light);
    box-shadow: none !important;
}

.menu-line {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 20px;
    background-color: var(--dark-color);
    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}

/* Mobile menu opened icon */
.navbar-toggler[aria-expanded="true"] .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .menu-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
    position: relative;
    min-height: 880px;
    padding: 165px 0 85px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%,
            rgba(66, 217, 150, 0.13),
            transparent 28%),
        linear-gradient(135deg,
            #fbfffd 0%,
            #effaf4 50%,
            #f8fcfa 100%);
}

/* Background pattern */
.hero-grid-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(39, 126, 86, 0.07) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(39, 126, 86, 0.07) 1px,
            transparent 1px);
    background-size: 38px 38px;
    -webkit-mask-image:
        radial-gradient(circle, black 15%, transparent 70%);
    mask-image:
        radial-gradient(circle, black 15%, transparent 70%);
}

/* Background glows */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow-one {
    top: 130px;
    right: -170px;
    width: 450px;
    height: 450px;
    background-color: rgba(66, 217, 150, 0.13);
}

.hero-glow-two {
    bottom: -280px;
    left: 30%;
    width: 540px;
    height: 540px;
    background-color: rgba(66, 217, 150, 0.07);
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 9px 14px;
    border: 1px solid #cbead9;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.75);
    color: #496055;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    box-shadow: 0 0 0 5px rgba(66, 217, 150, 0.16);
    animation: heroDotPulse 2s ease-in-out infinite;
}

.hero-title {
    max-width: 650px;
    margin: 0;
    color: var(--dark-color);
    font-size: clamp(50px, 5.4vw, 76px);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1;
}

.hero-title span {
    color: var(--primary-dark);
}

.hero-description {
    max-width: 610px;
    margin: 27px 0 32px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

/* HERO BUTTONS */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-primary-button,
.hero-secondary-button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.hero-primary-button {
    gap: 13px;
    padding: 7px 8px 7px 21px;
    border: 1px solid var(--dark-color);
    background-color: var(--dark-color);
    color: var(--white-color);
    box-shadow: 0 14px 30px rgba(32, 32, 32, 0.16);
}

.hero-primary-button span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    transition: var(--transition);
}

.hero-primary-button:hover {
    border-color: var(--primary-dark);
    background-color: var(--primary-dark);
    color: var(--white-color);
    transform: translateY(-3px);
}

.hero-primary-button:hover span {
    background-color: var(--white-color);
    transform: rotate(45deg);
}

.hero-secondary-button {
    padding: 14px 23px;
    border: 1px solid #bad0c4;
    background-color: rgba(255, 255, 255, 0.75);
    color: var(--dark-color);
}

.hero-secondary-button:hover {
    border-color: var(--primary-dark);
    background-color: var(--white-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* HERO FEATURES */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 22px;
    margin-top: 31px;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5a6961;
    font-size: 12px;
    font-weight: 700;
}

.hero-feature i {
    display: inline-flex;
    width: 19px;
    height: 19px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 13px;
}

/* HERO MESSAGE VISUAL */
.hero-message-visual {
    position: relative;
    min-height: 610px;
    isolation: isolate;
}

.visual-orbit {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 510px;
    height: 510px;
    border: 1px dashed rgba(32, 183, 120, 0.3);
    border-radius: 50%;
    transform: translate(-46%, -50%);
    animation: orbitRotate 35s linear infinite;
}

.visual-orbit::before,
.visual-orbit::after {
    position: absolute;
    border: 1px solid rgba(32, 183, 120, 0.13);
    border-radius: 50%;
    content: "";
}

.visual-orbit::before {
    inset: 55px;
}

.visual-orbit::after {
    inset: 110px;
}

/* PHONE */
.message-phone {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 50%;
    width: 305px;
    height: 600px;
    padding: 11px;
    border: 2px solid #222a26;
    border-radius: 48px;
    background-color: #171b19;
    box-shadow:
        0 40px 85px rgba(28, 69, 50, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.13);
    transform: translateX(-43%) rotate(2.5deg);
    animation: phoneFloat 5.5s ease-in-out infinite;
}

.phone-camera {
    position: absolute;
    z-index: 8;
    top: 18px;
    left: 50%;
    width: 92px;
    height: 23px;
    border-radius: 50px;
    background-color: #171b19;
    transform: translateX(-50%);
}

.phone-camera::after {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 34px;
    height: 4px;
    border-radius: 20px;
    background-color: #3c4541;
    content: "";
    transform: translateX(-50%);
}

.phone-screen {
    height: 100%;
    padding: 22px 14px 16px;
    overflow: hidden;
    border-radius: 38px;
    background:
        linear-gradient(180deg,
            #fafffc 0%,
            #eaf8f0 100%);
}

.phone-message-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px -14px 0;
    padding: 14px 16px 12px;
    border-bottom: 1px solid #dcebe3;
    background-color: rgba(255, 255, 255, 0.9);
}

.phone-brand-icon {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 800;
}

.phone-brand-details strong,
.phone-brand-details small {
    display: block;
}

.phone-brand-details strong {
    font-size: 12px;
}

.phone-brand-details small {
    margin-top: 2px;
    color: #7c8a83;
    font-size: 9px;
}

.phone-brand-details small i {
    color: var(--primary-dark);
}

.message-date {
    margin: 15px 0 10px;
    color: #88968f;
    font-size: 8px;
    font-weight: 700;
    text-align: center;
}

/* RCS MESSAGE */
.rcs-message-card {
    padding: 18px;
    border: 1px solid rgba(66, 217, 150, 0.29);
    border-radius: 22px 22px 22px 7px;
    background-color: var(--white-color);
    box-shadow: 0 15px 30px rgba(43, 93, 69, 0.1);
}

.rcs-message-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.rcs-badge {
    padding: 5px 8px;
    border-radius: 20px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.rcs-message-card h2 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.rcs-message-card p {
    margin: 0;
    color: #6c7a73;
    font-size: 10px;
    line-height: 1.6;
}

.verification-code {
    margin: 15px 0;
    padding: 12px 8px;
    border: 1px dashed #a8dfc4;
    border-radius: 12px;
    background-color: var(--primary-light);
    color: #176d48;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-align: center;
}

.verification-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px;
    border-radius: 10px;
    background-color: var(--dark-color);
    color: var(--white-color);
    font-size: 10px;
    font-weight: 800;
}

/* SMS MESSAGE */
.sms-message-bubble {
    width: 87%;
    margin: 14px 0 0 auto;
    padding: 12px 13px;
    border: 1px solid #dbe9e2;
    border-radius: 17px 17px 5px 17px;
    background-color: var(--white-color);
    color: #627068;
    font-size: 9px;
    line-height: 1.5;
    box-shadow: 0 10px 22px rgba(43, 93, 69, 0.07);
}

.sms-message-bubble span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary-dark);
    font-size: 8px;
    font-weight: 800;
}

.sms-message-bubble strong {
    color: var(--dark-color);
}

/* Typing dots */
.message-typing {
    display: flex;
    width: fit-content;
    gap: 4px;
    margin-top: 13px;
    padding: 9px 12px;
    border-radius: 14px 14px 14px 5px;
    background-color: var(--white-color);
}

.message-typing span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #8ba097;
    animation: typingDot 1.3s ease-in-out infinite;
}

.message-typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.message-typing span:nth-child(3) {
    animation-delay: 0.3s;
}

/* FLOATING CARDS */
.floating-message-card,
.delivery-floating-card,
.rcs-floating-label {
    position: absolute;
    z-index: 8;
    border: 1px solid rgba(211, 232, 222, 0.95);
    background-color: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(31, 83, 58, 0.13);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.floating-message-card {
    display: flex;
    min-width: 215px;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border-radius: 16px;
    animation: floatingCard 4.5s ease-in-out infinite;
}

.floating-message-icon {
    display: flex;
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 16px;
}

.whatsapp-message-icon {
    background-color: #e9faef;
    color: #1fa95a;
}

.floating-message-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.floating-message-content small {
    color: #829088;
    font-size: 8px;
    font-weight: 700;
}

.floating-message-content strong {
    color: var(--dark-color);
    font-size: 10px;
    font-weight: 800;
}

.message-success {
    color: var(--primary-dark);
    font-size: 14px;
}

.active-message-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(66, 217, 150, 0.15);
    animation: heroDotPulse 2s ease-in-out infinite;
}

.sms-floating-card {
    top: 65px;
    left: -15px;
}

.whatsapp-floating-card {
    top: 225px;
    right: -25px;
    animation-delay: 0.8s;
}

.rcs-floating-label {
    top: 20px;
    right: 20px;
    padding: 9px 13px;
    border-radius: 50px;
    color: var(--primary-dark);
    font-size: 9px;
    font-weight: 800;
    animation: floatingCard 5s ease-in-out infinite;
}

.rcs-floating-label i {
    margin-right: 5px;
}

.delivery-floating-card {
    bottom: 45px;
    left: 5px;
    width: 190px;
    padding: 13px;
    border-radius: 16px;
    animation: floatingCard 5s ease-in-out infinite;
    animation-delay: 1.2s;
}

.delivery-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-header>span {
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background-color: var(--dark-color);
    color: var(--primary-color);
}

.delivery-header small,
.delivery-header strong {
    display: block;
}

.delivery-header small {
    color: #849189;
    font-size: 8px;
}

.delivery-header strong {
    font-size: 10px;
}

.delivery-progress {
    height: 4px;
    margin-top: 11px;
    overflow: hidden;
    border-radius: 20px;
    background-color: #e4eee9;
}

.delivery-progress span {
    display: block;
    width: 88%;
    height: 100%;
    border-radius: inherit;
    background-color: var(--primary-color);
}

/* HERO ANIMATIONS */
.hero-reveal-one,
.hero-reveal-two,
.hero-reveal-three,
.hero-reveal-four,
.hero-reveal-five,
.hero-reveal-visual {
    opacity: 0;
    animation:
        heroReveal 0.75s forwards cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-reveal-one {
    animation-delay: 0.08s;
}

.hero-reveal-two {
    animation-delay: 0.18s;
}

.hero-reveal-three {
    animation-delay: 0.28s;
}

.hero-reveal-four {
    animation-delay: 0.38s;
}

.hero-reveal-five {
    animation-delay: 0.48s;
}

.hero-reveal-visual {
    animation-delay: 0.25s;
}

@keyframes heroReveal {

    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes phoneFloat {

    0%,
    100% {
        transform:
            translateX(-43%) rotate(2.5deg) translateY(0);
    }

    50% {
        transform:
            translateX(-43%) rotate(1deg) translateY(-10px);
    }
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes typingDot {

    0%,
    60%,
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

@keyframes heroDotPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(66, 217, 150, 0.12);
    }

    50% {
        box-shadow:
            0 0 0 7px rgba(66, 217, 150, 0.2);
    }
}

@keyframes orbitRotate {

    from {
        transform:
            translate(-46%, -50%) rotate(0deg);
    }

    to {
        transform:
            translate(-46%, -50%) rotate(360deg);
    }
}

/* =========================================
   SOLUTIONS SECTION
========================================= */
.solutions-section {
    position: relative;
    padding: 110px 0;
    background-color: var(--white-color);
}

.solutions-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-label span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(66, 217, 150, 0.14);
}

.solutions-heading h2 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.solutions-heading h2 span,
.solution-content h3 span {
    color: var(--primary-dark);
}

.solutions-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
}

/* SOLUTION TABS */
.solution-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 850px;
    margin: 0 auto 35px;
    padding: 7px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background-color: #f3f9f6;
}

.solution-tab {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 15px;
    border: 0;
    border-radius: 16px;
    background-color: transparent;
    color: #68766f;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    transition: var(--transition);
}

.solution-tab:hover {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--dark-color);
}

.solution-tab.active {
    background-color: var(--white-color);
    color: var(--dark-color);
    box-shadow: 0 9px 25px rgba(34, 84, 60, 0.11);
}

.solution-tab-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 17px;
}

.whatsapp-tab-icon {
    background-color: #e8faee;
    color: #1fa95a;
}

.rcs-tab-icon {
    background-color: #edf7f2;
    color: #267e58;
}

.solution-tab small {
    display: block;
    margin-bottom: 2px;
    color: #97a49d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

/* SOLUTION PANELS */
.solution-panel {
    padding: 55px;
    border: 1px solid var(--border-color);
    border-radius: 32px;
    background-color: #f8fcfa;
    box-shadow: 0 25px 70px rgba(37, 86, 63, 0.09);
}

.solution-panel.active {
    animation: solutionPanelOpen 0.5s ease;
}

.solution-panel[hidden] {
    display: none !important;
}

.solution-content {
    max-width: 520px;
}

.solution-number {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.solution-content h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.solution-content>p {
    margin-bottom: 27px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* SOLUTION FEATURES */
.solution-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-feature {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px;
    border: 1px solid #e1eee7;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.76);
    transition: var(--transition);
}

.solution-feature:hover {
    border-color: #bce4cf;
    background-color: var(--white-color);
    transform: translateX(4px);
}

.solution-feature>span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 16px;
}

.solution-feature strong,
.solution-feature small {
    display: block;
}

.solution-feature strong {
    margin-bottom: 3px;
    color: var(--dark-color);
    font-size: 12px;
    font-weight: 800;
}

.solution-feature small {
    color: #7d8b84;
    font-size: 10px;
    line-height: 1.5;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 26px;
    color: var(--dark-color);
    font-size: 12px;
    font-weight: 800;
}

.solution-link i {
    transition: var(--transition);
}

.solution-link:hover {
    color: var(--primary-dark);
}

.solution-link:hover i {
    transform: translate(3px, -3px);
}

/* COMMON SOLUTION PREVIEW */
.solution-preview {
    position: relative;
    min-height: 485px;
    padding: 30px;
    overflow: hidden;
    border-radius: 26px;
    box-shadow:
        0 25px 60px rgba(28, 74, 52, 0.16);
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preview-header small,
.preview-header strong {
    display: block;
}

.preview-header small {
    margin-bottom: 3px;
    color: #aebcb5;
    font-size: 9px;
}

.preview-header strong {
    font-size: 13px;
}

.preview-live-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
}

.preview-live-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--primary-color);
    animation: heroDotPulse 2s ease-in-out infinite;
}

/* SMS PREVIEW */
.sms-solution-preview {
    background-color: #1d2421;
    color: var(--white-color);
}

.sms-route {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 55px 0 45px;
}

.route-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #94a29b;
    font-size: 9px;
    font-weight: 700;
}

.route-step>span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid #445049;
    border-radius: 15px;
    background-color: #29322e;
    font-size: 17px;
}

.route-step.active>span {
    border-color: rgba(66, 217, 150, 0.5);
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.route-step.active small {
    color: var(--white-color);
}

.route-line {
    position: relative;
    width: 70px;
    height: 2px;
    margin: 0 7px 23px;
    overflow: hidden;
    background-color: #3a4640;
}

.route-line span {
    position: absolute;
    width: 40%;
    height: 100%;
    background-color: var(--primary-color);
    animation: routeProgress 2s linear infinite;
}

.sms-preview-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border: 1px solid #3d4943;
    border-radius: 18px;
    background-color: #29322e;
}

.preview-message-logo {
    display: flex;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 800;
}

.sms-preview-message small {
    color: var(--primary-color);
    font-size: 9px;
    font-weight: 800;
}

.sms-preview-message p {
    margin: 6px 0;
    color: #e8f0ec;
    font-size: 11px;
    line-height: 1.6;
}

.sms-preview-message span {
    color: #899790;
    font-size: 8px;
}

.preview-result-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.preview-result-row>div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px;
    border: 1px solid #39453f;
    border-radius: 13px;
    background-color: #252d29;
}

.preview-result-row>div>span {
    color: var(--primary-color);
}

.preview-result-row small,
.preview-result-row strong {
    display: block;
}

.preview-result-row small {
    color: #8d9a94;
    font-size: 8px;
}

.preview-result-row strong {
    font-size: 9px;
}

/* WHATSAPP PREVIEW */
.whatsapp-solution-preview {
    background-color: #e9f7ef;
}

.whatsapp-preview-header,
.rcs-preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border-radius: 16px;
    background-color: var(--white-color);
}

.whatsapp-preview-logo,
.rcs-preview-logo {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #25d366;
    color: var(--white-color);
    font-size: 13px;
    font-weight: 800;
}

.whatsapp-preview-header strong,
.whatsapp-preview-header small,
.rcs-preview-header strong,
.rcs-preview-header small {
    display: block;
}

.whatsapp-preview-header strong,
.rcs-preview-header strong {
    font-size: 11px;
}

.whatsapp-preview-header small,
.rcs-preview-header small {
    color: #829088;
    font-size: 8px;
}

.whatsapp-chat-area {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 28px 5px 0;
}

.whatsapp-message {
    max-width: 82%;
    padding: 13px;
    font-size: 10px;
    line-height: 1.6;
    box-shadow: 0 8px 20px rgba(34, 85, 61, 0.08);
}

.whatsapp-message p {
    margin: 0 0 5px;
}

.whatsapp-message>small {
    display: block;
    margin-bottom: 4px;
    color: #1fa95a;
    font-size: 8px;
    font-weight: 800;
}

.whatsapp-message>span {
    display: block;
    color: #86938c;
    font-size: 7px;
    text-align: right;
}

.received-message {
    border-radius: 15px 15px 15px 4px;
    background-color: var(--white-color);
}

.sent-message {
    align-self: flex-end;
    border-radius: 15px 15px 4px 15px;
    background-color: #d7f8e2;
}

.sent-message i {
    color: #188a4a;
}

.whatsapp-actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 9px 0;
}

.whatsapp-actions span {
    padding: 7px;
    border: 1px solid #bfe5cc;
    border-radius: 8px;
    color: #188a4a;
    font-size: 8px;
    font-weight: 800;
    text-align: center;
}

/* RCS PREVIEW */
.rcs-solution-preview {
    background-color: #eaf8f1;
}

.rcs-preview-logo {
    background-color: var(--primary-color);
}

.rcs-preview-header small i {
    color: var(--primary-dark);
}

.rcs-preview-badge {
    margin-left: auto;
    padding: 6px 9px;
    border-radius: 20px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 8px;
    font-weight: 800;
}

.rcs-rich-preview {
    margin: 20px 8px 0;
    overflow: hidden;
    border: 1px solid #d3e9de;
    border-radius: 20px;
    background-color: var(--white-color);
    box-shadow: 0 18px 40px rgba(35, 85, 61, 0.12);
}

.rcs-rich-banner {
    display: flex;
    min-height: 120px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background-color: var(--dark-color);
    color: var(--primary-color);
}

.rcs-rich-banner i {
    font-size: 27px;
}

.rcs-rich-banner span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rcs-rich-content {
    padding: 20px;
}

.rcs-rich-content>small {
    color: var(--primary-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.rcs-rich-content h4 {
    margin: 7px 0;
    font-size: 17px;
    font-weight: 800;
}

.rcs-rich-content p {
    margin-bottom: 13px;
    color: var(--text-muted);
    font-size: 10px;
    line-height: 1.6;
}

.rcs-preview-code {
    padding: 11px;
    border: 1px dashed #a4ddc0;
    border-radius: 10px;
    background-color: var(--primary-light);
    color: #176d48;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-align: center;
}

.rcs-preview-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    margin-top: 10px;
}

.rcs-preview-actions span {
    padding: 9px;
    border: 1px solid var(--border-color);
    border-radius: 9px;
    color: var(--primary-dark);
    font-size: 8px;
    font-weight: 800;
    text-align: center;
}

/* SOLUTIONS ANIMATIONS */
@keyframes solutionPanelOpen {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes routeProgress {

    from {
        left: -40%;
    }

    to {
        left: 100%;
    }
}

/* =========================================
   INDUSTRIES SECTION
========================================= */
.industries-section {
    padding: 110px 0;
    background-color: #f3f9f6;
}

.industries-heading {
    margin-bottom: 50px;
}

.industries-heading h2 {
    max-width: 720px;
    margin: 0;
    color: var(--dark-color);
    font-size: clamp(40px, 4.5vw, 60px);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.07;
}

.industries-heading h2 span {
    color: var(--primary-dark);
}

.industries-heading p {
    max-width: 500px;
    margin: 0 0 5px auto;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* INDUSTRY CARDS */
.industry-card {
    position: relative;
    height: 100%;
    padding: 31px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    background-color: var(--white-color);
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.industry-card:hover {
    border-color: #b8dfcc;
    box-shadow: 0 25px 55px rgba(34, 82, 59, 0.11);
    transform: translateY(-6px);
}

.industry-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.industry-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 20px;
}

.industry-number {
    color: #a0ada6;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.industry-content>small {
    display: block;
    margin-bottom: 9px;
    color: var(--primary-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.industry-content h3 {
    margin-bottom: 13px;
    color: var(--dark-color);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.industry-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 21px;
}

.industry-tags span {
    padding: 7px 10px;
    border: 1px solid #d6e9df;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #5e6d65;
    font-size: 9px;
    font-weight: 700;
}

/* RETAIL CARD */
.retail-industry-card {
    min-height: 440px;
    background-color: #e9f9f1;
}

.retail-message-preview {
    padding: 13px;
    border: 1px solid rgba(197, 227, 211, 0.9);
    border-radius: 21px;
    background-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 45px rgba(35, 87, 62, 0.1);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.retail-industry-card:hover .retail-message-preview {
    transform: rotate(0deg) translateY(-4px);
}

.retail-message-header {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px;
}

.retail-message-header>span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 12px;
    font-weight: 800;
}

.retail-message-header strong,
.retail-message-header small {
    display: block;
}

.retail-message-header strong {
    font-size: 10px;
}

.retail-message-header small {
    color: #89968f;
    font-size: 7px;
}

.retail-order-card {
    margin-top: 7px;
    padding: 16px;
    border-radius: 16px;
    background-color: var(--white-color);
    box-shadow: 0 10px 25px rgba(37, 86, 63, 0.07);
}

.order-status-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-status-line>span {
    display: inline-flex;
    width: 39px;
    height: 39px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--dark-color);
    color: var(--primary-color);
}

.order-status-line small,
.order-status-line strong {
    display: block;
}

.order-status-line small {
    margin-bottom: 3px;
    color: #89968f;
    font-size: 7px;
    font-weight: 800;
}

.order-status-line strong {
    font-size: 10px;
}

.order-progress {
    height: 5px;
    margin: 20px 0 8px;
    overflow: hidden;
    border-radius: 20px;
    background-color: #e5eee9;
}

.order-progress span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background-color: var(--primary-color);
    animation: orderProgress 3s ease-in-out infinite;
}

.order-progress-labels {
    display: flex;
    justify-content: space-between;
    color: #8b9891;
    font-size: 7px;
    font-weight: 700;
}

.retail-order-card button {
    width: 100%;
    margin-top: 15px;
    padding: 9px;
    border: 0;
    border-radius: 9px;
    background-color: var(--dark-color);
    color: var(--white-color);
    font-size: 8px;
    font-weight: 800;
}

/* FINANCE CARD */
.finance-industry-card {
    min-height: 440px;
    border-color: #2f3834;
    background-color: #1e2522;
    color: var(--white-color);
}

.finance-industry-card:hover {
    border-color: rgba(66, 217, 150, 0.55);
    box-shadow: 0 25px 60px rgba(23, 54, 40, 0.22);
}

.dark-industry-icon {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.finance-industry-card .industry-number {
    color: #718079;
}

.finance-industry-card .industry-content>small {
    color: var(--primary-color);
}

.finance-industry-card .industry-content h3 {
    color: var(--white-color);
}

.finance-industry-card .industry-content p {
    color: #aebbb5;
}

.dark-industry-tags span {
    border-color: #414b46;
    background-color: #29312d;
    color: #b8c5bf;
}

.finance-alert-card {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 30px;
    padding: 14px;
    border: 1px solid #3b4640;
    border-radius: 16px;
    background-color: #29312d;
}

.finance-alert-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.finance-alert-card small {
    display: block;
    margin-bottom: 4px;
    color: var(--primary-color);
    font-size: 7px;
    font-weight: 800;
}

.finance-alert-card p {
    margin: 0;
    color: #e0e8e4;
    font-size: 9px;
    line-height: 1.5;
}

.finance-check {
    margin-left: auto;
    color: var(--primary-color);
}

/* SMALL INDUSTRY CARDS */
.small-industry-card {
    min-height: 350px;
}

.small-industry-card .industry-card-top {
    margin-bottom: 31px;
}

.small-industry-card h3 {
    font-size: 23px;
}

.small-message-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background-color: #f7fbf9;
}

.small-message-preview>span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.small-message-preview small,
.small-message-preview strong {
    display: block;
}

.small-message-preview small {
    margin-bottom: 3px;
    color: #8c9992;
    font-size: 7px;
}

.small-message-preview strong {
    font-size: 9px;
}

.travel-industry-card {
    background-color: #f7faf8;
}

.travel-industry-icon {
    background-color: #edf4f0;
    color: #526961;
}

.education-industry-card {
    background-color: #eaf9f2;
}

.education-industry-icon {
    background-color: var(--white-color);
}

.travel-message-preview,
.education-message-preview {
    background-color: var(--white-color);
}

/* INDUSTRIES CTA */
.industries-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 38px;
    padding: 28px 31px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background-color: var(--white-color);
    box-shadow: 0 18px 45px rgba(34, 82, 59, 0.08);
}

.industries-cta small {
    display: block;
    margin-bottom: 7px;
    color: var(--primary-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.industries-cta h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.industries-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
    padding: 6px 7px 6px 18px;
    border-radius: 50px;
    background-color: var(--dark-color);
    color: var(--white-color);
    font-size: 11px;
    font-weight: 800;
    transition: var(--transition);
}

.industries-cta-button span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    transition: var(--transition);
}

.industries-cta-button:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
    transform: translateY(-3px);
}

.industries-cta-button:hover span {
    background-color: var(--white-color);
    transform: rotate(45deg);
}

/* INDUSTRY ANIMATIONS */
@keyframes orderProgress {

    0%,
    100% {
        width: 60%;
    }

    50% {
        width: 82%;
    }
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-section {
    padding: 115px 0;
    background-color: var(--white-color);
}

/* ABOUT VISUAL */
.about-visual-card {
    position: relative;
    min-height: 610px;
    padding: 34px;
    overflow: hidden;
    border-radius: 32px;
    background-color: #1e2522;
    color: var(--white-color);
    box-shadow: 0 35px 75px rgba(26, 67, 48, 0.2);
}

.about-card-glow {
    position: absolute;
    top: -130px;
    right: -130px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background-color: rgba(66, 217, 150, 0.18);
}

.about-card-grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px);
    background-size: 35px 35px;
    -webkit-mask-image:
        radial-gradient(circle at top right, black, transparent 70%);
    mask-image:
        radial-gradient(circle at top right, black, transparent 70%);
}

.about-brand-box {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 11px 15px;
    border-radius: 14px;
    background-color: var(--white-color);
}

.about-brand-box img {
    width: 155px;
    height: auto;
}

.about-visual-content {
    position: relative;
    z-index: 2;
    margin-top: 85px;
}

.about-visual-label {
    display: block;
    margin-bottom: 17px;
    color: var(--primary-color);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.about-visual-content h3 {
    max-width: 390px;
    margin-bottom: 17px;
    color: var(--white-color);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.16;
}

.about-visual-content p {
    max-width: 370px;
    margin: 0;
    color: #aebbb5;
    font-size: 13px;
    line-height: 1.75;
}

/* ABOUT CHANNEL FLOW */
.about-channel-flow {
    position: absolute;
    z-index: 3;
    right: 28px;
    bottom: 34px;
    left: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 15px;
    border: 1px solid #3d4842;
    border-radius: 19px;
    background-color: rgba(40, 49, 45, 0.94);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.about-channel-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-channel-item>span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-size: 15px;
}

.about-channel-item small,
.about-channel-item strong {
    display: block;
}

.about-channel-item small {
    margin-bottom: 2px;
    color: #899790;
    font-size: 7px;
}

.about-channel-item strong {
    color: var(--white-color);
    font-size: 9px;
}

.about-flow-arrow {
    color: #68776f;
    font-size: 11px;
}

.about-floating-label {
    position: absolute;
    z-index: 4;
    top: 115px;
    right: -12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(66, 217, 150, 0.35);
    border-radius: 50px;
    background-color: rgba(39, 49, 44, 0.94);
    color: #dce7e1;
    font-size: 9px;
    font-weight: 700;
    box-shadow: 0 18px 35px rgba(10, 30, 20, 0.25);
    animation: floatingCard 5s ease-in-out infinite;
}

.about-floating-label span {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* ABOUT CONTENT */
.about-content {
    max-width: 650px;
    margin-left: auto;
    padding-left: 40px;
}

.about-content h2 {
    margin-bottom: 25px;
    color: var(--dark-color);
    font-size: clamp(41px, 4.7vw, 61px);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.07;
}

.about-content h2 span {
    color: var(--primary-dark);
}

.about-lead {
    margin-bottom: 13px;
    color: #435249;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
}

.about-description {
    margin-bottom: 28px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
}

/* ABOUT VALUE CARDS */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.about-value-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    border: 1px solid var(--border-color);
    border-radius: 17px;
    background-color: #f8fcfa;
    transition: var(--transition);
}

.about-value-card:hover {
    border-color: #b8dfcc;
    background-color: var(--white-color);
    box-shadow: 0 15px 35px rgba(34, 82, 59, 0.09);
    transform: translateY(-4px);
}

.about-value-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 16px;
}

.about-value-card h3 {
    margin: 2px 0 5px;
    color: var(--dark-color);
    font-size: 12px;
    font-weight: 800;
}

.about-value-card p {
    margin: 0;
    color: #7b8982;
    font-size: 10px;
    line-height: 1.55;
}

/* ABOUT CONTACT LINK */
.about-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 27px;
    color: var(--dark-color);
    font-size: 12px;
    font-weight: 800;
}

.about-contact-link span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--dark-color);
    color: var(--primary-color);
    transition: var(--transition);
}

.about-contact-link:hover {
    color: var(--primary-dark);
}

.about-contact-link:hover span {
    background-color: var(--primary-dark);
    color: var(--white-color);
    transform: rotate(45deg);
}

/* OUR APPROACH */
.about-approach {
    display: grid;
    grid-template-columns: 0.75fr 2fr;
    gap: 45px;
    margin-top: 75px;
    padding: 34px;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    background-color: #f3f9f6;
}

.approach-heading {
    padding-right: 25px;
    border-right: 1px solid var(--border-color);
}

.approach-heading small {
    display: block;
    margin-bottom: 11px;
    color: var(--primary-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.approach-heading h3 {
    margin: 0;
    color: var(--dark-color);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.approach-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 18px;
    align-items: center;
}

.approach-step {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.approach-step-number {
    display: inline-flex;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background-color: var(--white-color);
    color: var(--primary-dark);
    font-size: 9px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(34, 82, 59, 0.08);
}

.approach-step h4 {
    margin: 1px 0 6px;
    font-size: 12px;
    font-weight: 800;
}

.approach-step p {
    margin: 0;
    color: var(--text-muted);
    font-size: 9px;
    line-height: 1.55;
}

.approach-arrow {
    color: #9bb3a7;
    font-size: 13px;
}

/* =========================================
   CONTACT MODAL
========================================= */
.contact-modal .modal-dialog {
    max-width: 1120px;
    padding: 15px;
}

.contact-modal-content {
    overflow: hidden;
    border: 1px solid rgba(211, 231, 221, 0.9);
    border-radius: 30px;
    background-color: var(--white-color);
    box-shadow: 0 35px 100px rgba(18, 55, 37, 0.28);
}

.contact-modal-close {
    position: absolute;
    z-index: 20;
    top: 19px;
    right: 19px;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--dark-color);
    font-size: 14px;
    box-shadow: 0 8px 22px rgba(34, 82, 59, 0.1);
    transition: var(--transition);
}

.contact-modal-close:hover {
    border-color: var(--primary-dark);
    background-color: var(--primary-light);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

/* MODAL INTRODUCTION */
.contact-modal-intro {
    position: relative;
    min-height: 690px;
    height: 100%;
    padding: 42px;
    overflow: hidden;
    background-color: #1e2522;
    color: var(--white-color);
}

.contact-modal-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.11) 1px,
            transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image:
        radial-gradient(circle at top left, black, transparent 72%);
    mask-image:
        radial-gradient(circle at top left, black, transparent 72%);
}

.contact-modal-glow {
    position: absolute;
    right: -180px;
    bottom: -180px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background-color: rgba(66, 217, 150, 0.16);
}

.contact-modal-brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 13px;
    background-color: var(--white-color);
}

.contact-modal-brand img {
    width: 145px;
    height: auto;
}

.contact-modal-intro-content {
    position: relative;
    z-index: 2;
    margin-top: 70px;
}

.contact-modal-label {
    display: block;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.contact-modal-intro-content h2 {
    max-width: 390px;
    margin-bottom: 17px;
    color: var(--white-color);
    font-size: 37px;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.contact-modal-intro-content p {
    max-width: 390px;
    margin: 0;
    color: #afbbb5;
    font-size: 12px;
    line-height: 1.75;
}

/* Channel tags */
.contact-modal-channels {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 27px;
}

.contact-modal-channels span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border: 1px solid #3c4842;
    border-radius: 30px;
    background-color: #29312d;
    color: #d7e0dc;
    font-size: 8px;
    font-weight: 700;
}

.contact-modal-channels i {
    color: var(--primary-color);
}

/* Process list */
.contact-modal-process {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 42px;
}

.contact-modal-process>div {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px;
    border: 1px solid #3a4540;
    border-radius: 14px;
    background-color: rgba(42, 51, 47, 0.86);
}

.contact-modal-process span {
    display: inline-flex;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.contact-modal-process p {
    margin: 0;
    color: #d3ddd8;
    font-size: 9px;
    font-weight: 600;
}

/* =========================================
   MODAL FORM
========================================= */
.contact-modal-form-wrapper {
    padding: 48px 48px 38px;
}

.contact-form-heading {
    max-width: 600px;
    margin-bottom: 27px;
    padding-right: 35px;
}

.contact-form-heading>span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.contact-form-heading h2 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.15;
}

.contact-form-heading p {
    margin: 0;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.65;
}

.contact-field label {
    display: block;
    margin-bottom: 7px;
    color: #536159;
    font-size: 9px;
    font-weight: 800;
}

.contact-field label span {
    color: var(--primary-dark);
}

.contact-input-wrapper {
    position: relative;
}

.contact-input-wrapper>i {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 14px;
    color: #89978f;
    font-size: 13px;
    transform: translateY(-50%);
}

.contact-form .form-control,
.contact-form .form-select {
    min-height: 48px;
    padding: 12px 14px 12px 39px;
    border: 1px solid #dce9e2;
    border-radius: 12px;
    background-color: #f8fbf9;
    color: var(--dark-color);
    font-size: 11px;
    box-shadow: none;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-dark);
    background-color: var(--white-color);
    box-shadow: 0 0 0 4px rgba(66, 217, 150, 0.12);
}

.contact-form .form-control::placeholder {
    color: #a1ada6;
}

.contact-message-field {
    min-height: 105px !important;
    padding: 13px 14px !important;
    resize: vertical;
}

.contact-form .invalid-feedback {
    margin-top: 5px;
    font-size: 8px;
}

/* Honeypot */
.contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* CONTACT CONSENT */
.contact-consent {
    position: relative;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: #f7fbf9;
}

.contact-consent input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary-dark);
}

.contact-consent label {
    margin: 0;
    color: #68766f;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.55;
}

.contact-consent label a {
    color: var(--primary-dark);
    font-weight: 800;
    text-decoration: underline;
}

.contact-consent .invalid-feedback {
    grid-column: 2;
}

/* FORM STATUS */
.contact-form-status {
    margin-top: 14px;
    padding: 11px 13px;
    border-radius: 11px;
    font-size: 9px;
    font-weight: 700;
}

.contact-form-status.success {
    border: 1px solid #bce5ce;
    background-color: #eaf9f1;
    color: #177247;
}

.contact-form-status.error {
    border: 1px solid #f0c9c9;
    background-color: #fff1f1;
    color: #a23434;
}

/* SUBMIT BUTTON */
.contact-submit-button {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 6px 7px 6px 20px;
    border: 0;
    border-radius: 50px;
    background-color: var(--dark-color);
    color: var(--white-color);
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 13px 30px rgba(32, 32, 32, 0.15);
    transition: var(--transition);
}

.contact-submit-button:hover:not(:disabled) {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.submit-button-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-submit-icon {
    display: inline-flex;
    width: 39px;
    height: 39px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    transition: var(--transition);
}

.contact-submit-button:hover .contact-submit-icon {
    background-color: var(--white-color);
    transform: rotate(45deg);
}

/* ===== BEGIN FINAL CTA SECTION ===== */
.footer-cta-section {
    position: relative;
    padding: 110px 0;
    background: var(--background-color);
}

.footer-cta-card {
    position: relative;
    z-index: 2;
    padding: clamp(45px, 6vw, 75px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 36px;
    background: var(--dark-color);
    color: var(--white-color);
    box-shadow: 0 30px 80px rgba(32, 32, 32, 0.18);
}

.footer-cta-card::before,
.footer-cta-card::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(66, 217, 150, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.footer-cta-card::before {
    top: -170px;
    right: -100px;
    width: 360px;
    height: 360px;
}

.footer-cta-card::after {
    right: 90px;
    bottom: -170px;
    width: 260px;
    height: 260px;
}

.footer-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-cta-card h2 {
    max-width: 720px;
    margin: 0;
    color: var(--white-color);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.footer-cta-card p {
    max-width: 680px;
    margin: 22px 0 0;
    color: #b8c2bd;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-channel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
}

.footer-channel-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dce5e0;
    font-size: 0.82rem;
    font-weight: 700;
}

.footer-channel-list i {
    color: var(--primary-color);
}

.footer-cta-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 24px;
    border: 1px solid var(--primary-color);
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--dark-color);
    font-size: 0.88rem;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-cta-button:hover {
    border-color: var(--white-color);
    background: var(--white-color);
    color: var(--dark-color);
    box-shadow: 0 15px 35px rgba(66, 217, 150, 0.2);
    transform: translateY(-3px);
}

/* ===== BEGIN FOOTER ===== */
.site-footer {
    margin-top: -38px;
    padding: 125px 0 25px;
    background: #151917;
    color: var(--white-color);
}

.footer-brand {
    max-width: 430px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 25px;
    padding: 10px 15px;
    border-radius: 14px;
    background: var(--white-color);
}

.footer-logo img {
    display: block;
    width: 170px;
    height: auto;
}

.footer-brand p {
    max-width: 410px;
    margin: 0 0 25px;
    color: #96a39c;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary-color);
    font-size: 0.84rem;
    font-weight: 800;
    transition: gap 0.25s ease, color 0.25s ease;
}

.footer-contact-button:hover {
    gap: 15px;
    color: var(--white-color);
}

.footer-title {
    margin: 0 0 24px;
    color: var(--white-color);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li:not(:last-child) {
    margin-bottom: 14px;
}

.footer-links a {
    position: relative;
    color: #96a39c;
    font-size: 0.86rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transform: translateY(-50%);
    transition: width 0.25s ease;
}

.footer-links a:hover {
    padding-left: 18px;
    color: var(--white-color);
}

.footer-links a:hover::before {
    width: 11px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    font-style: normal;
}

.footer-contact-list a,
.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #bac3be;
    font-size: 0.8rem;
    line-height: 1.65;
}

.footer-contact-list a {
    transition: color 0.25s ease;
}

.footer-contact-list a:hover {
    color: var(--primary-color);
}

.footer-contact-list small {
    display: block;
    margin-bottom: 2px;
    color: #6f7c75;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-contact-icon {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid #303834;
    border-radius: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 70px;
    padding-top: 24px;
    border-top: 1px solid #29302c;
}

.footer-bottom p {
    margin: 0;
    color: #738078;
    font-size: 0.74rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-links a {
    color: #87938c;
    font-size: 0.74rem;
    transition: color 0.25s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

.footer-legal-links span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #536059;
}

/* ===== BEGIN BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 14px 35px rgba(25, 95, 63, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background-color 0.25s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--white-color);
}

/* ===== BEGIN LEGAL PAGE CSS ===== */
.legal-page-body {
    background: #f6fbf8;
    color: var(--dark-color);
    font-family: "Manrope", sans-serif;
}

.legal-header {
    position: relative;
    z-index: 20;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
}

.legal-header-wrapper {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.legal-logo img {
    display: block;
    width: 170px;
    height: auto;
}

.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: var(--white-color);
    color: var(--dark-color);
    font-size: 0.78rem;
    font-weight: 800;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.legal-back-link:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    color: var(--dark-color);
    transform: translateX(-3px);
}

.legal-hero {
    position: relative;
    padding: 105px 0 90px;
    overflow: hidden;
    background: var(--dark-color);
}

.legal-hero::after {
    content: "";
    position: absolute;
    top: -170px;
    right: -100px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(66, 217, 150, 0.18);
    border-radius: 50%;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 830px;
}

.legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--primary-color);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-hero h1 {
    margin: 0;
    color: var(--white-color);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1;
}

.legal-hero p {
    max-width: 760px;
    margin: 27px 0 25px;
    color: #b9c4be;
    font-size: 1rem;
    line-height: 1.85;
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid #39423e;
    border-radius: 999px;
    color: #dce5e0;
    font-size: 0.72rem;
    font-weight: 700;
}

.legal-content-section {
    padding: 90px 0 110px;
}

.legal-sidebar {
    position: sticky;
    top: 25px;
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: var(--white-color);
}

.legal-sidebar h2 {
    margin: 0 0 18px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.legal-sidebar nav {
    display: flex;
    flex-direction: column;
}

.legal-sidebar nav a {
    padding: 10px 0;
    border-bottom: 1px solid #edf4f0;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 600;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.legal-sidebar nav a:last-child {
    border-bottom: 0;
}

.legal-sidebar nav a:hover {
    padding-left: 7px;
    color: var(--primary-dark);
}

.legal-policy-card {
    padding: clamp(30px, 5vw, 65px);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background: var(--white-color);
    box-shadow: 0 24px 70px rgba(32, 90, 62, 0.08);
}

.legal-policy-section {
    position: relative;
    padding: 0 0 55px;
    scroll-margin-top: 30px;
}

.legal-policy-section:not(:first-child) {
    padding-top: 55px;
    border-top: 1px solid #e7f0eb;
}

.legal-policy-section:last-child {
    padding-bottom: 0;
}

.policy-section-number {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.legal-policy-section h2 {
    margin: 0 0 22px;
    color: var(--dark-color);
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    font-weight: 750;
    letter-spacing: -0.035em;
}

.legal-policy-section h3 {
    margin: 28px 0 13px;
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 800;
}

.legal-policy-section p {
    margin: 0 0 17px;
    color: #65716b;
    font-size: 0.91rem;
    line-height: 1.9;
}

.legal-policy-section p:last-child {
    margin-bottom: 0;
}

.legal-policy-section a {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.legal-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 27px;
    color: #65716b;
    font-size: 0.88rem;
    line-height: 1.75;
}

.legal-list li::before {
    content: "\F26B";
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--primary-dark);
    font-family: "bootstrap-icons";
    font-size: 0.94rem;
}

.legal-notice {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 28px;
    padding: 20px;
    border: 1px solid #c8ead9;
    border-radius: 17px;
    background: var(--primary-light);
}

.legal-notice i {
    flex: 0 0 auto;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.legal-notice p {
    margin: 0;
    color: #416051;
    font-size: 0.82rem;
}

.legal-channel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.legal-channel-grid div {
    display: flex;
    min-height: 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #fbfefc;
    color: var(--dark-color);
}

.legal-channel-grid i {
    color: var(--primary-dark);
    font-size: 1.25rem;
}

.legal-channel-grid span {
    font-size: 0.7rem;
    font-weight: 800;
}

.legal-contact-card {
    display: grid;
    gap: 14px;
    margin-top: 25px;
    padding: 25px;
    border-radius: 20px;
    background: var(--dark-color);
}

.legal-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #353d39;
}

.legal-contact-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-contact-item > i {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    background: rgba(66, 217, 150, 0.12);
    color: var(--primary-color);
}

.legal-contact-item small {
    display: block;
    margin-bottom: 3px;
    color: #7d8c84;
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
}

.legal-contact-item a,
.legal-contact-item p {
    margin: 0;
    color: #e4ebe7;
    font-size: 0.81rem;
    line-height: 1.65;
    text-decoration: none;
}

.legal-footer {
    padding: 25px 0;
    background: #101311;
}

.legal-footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.legal-footer p {
    margin: 0;
    color: #76827c;
    font-size: 0.72rem;
}

.legal-footer-wrapper > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.legal-footer a {
    color: #96a29c;
    font-size: 0.72rem;
    transition: color 0.25s ease;
}

.legal-footer a:hover {
    color: var(--primary-color);
}