* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Inter, system-ui, sans-serif;
}

:root {
    --primary-emerald: #059669;  
    --dark-slate: #0f172a;       
    --accent-amber: #d97706;  
    --soft-slate-light: #f8fafc;
    --white: #ffffff;
}

body {
    background: var(--soft-slate-light);
    color: var(--dark-slate);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.banner-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
    object-position: center center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    margin-top: 80px;
    padding: 0 15px;
    width: 100%;
}

.hero-content h1, 
.hero-content p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative !important;
    z-index: 10 !important;
}

.hero-content h1,
.hero-content p,
.hero-content .hero-btns,
.hero-content .theme-btn {
    position: relative;
    z-index: 11 !important;
}

.main-header {
    background: transparent;
    padding: 20px 0;
    transition: all 0.4s ease;
    z-index: 999;
}

.main-header.sticky {
    background: var(--soft-slate-light) !important;
    backdrop-filter: none;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding: 14px 0;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    margin-left: -75px !important;
    margin-right: 95px !important;
}

.navbar-brand img {
    width: 155px;
    height: auto;
    transform: scale(1.85);
    transform-origin: left center;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-nav {
    gap: 45px;
    align-items: center;
    margin-left: 70px;
    margin-right: auto;
}

.nav-link {
    font-weight: 700;
    color: var(--white) !important;
    transition: 0.3s;
    font-size: 17px;
    position: relative;
    padding: 8px 6px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--primary-emerald);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.main-header.sticky .nav-link {
    color: var(--dark-slate) !important;
}

.main-header.sticky .nav-link:hover {
    color: var(--dark-slate) !important;
}

.main-header.sticky .navbar-toggler {
    color: var(--dark-slate) !important;
}

.theme-btn {
    padding: 14px 32px;
    background: var(--primary-emerald);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
    border: none;
}

.theme-btn:hover {
    background: #047857;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.6);
}

.footer-styled-btn {
    padding: 14px 32px;
    background: var(--primary-emerald);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-styled-btn:hover {
    background: #1e293b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.6);
}

.navbar-toggler {
    border: none;
    font-size: 28px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 8px;
}

.mobile-offcanvas {
    background: rgba(248, 250, 252, 0.95) !important;
    backdrop-filter: blur(12px);
    width: 310px !important;
    height: 100vh !important;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: -10px 0 35px rgba(15, 23, 42, 0.15);
}

.offcanvas-header {
    background: transparent;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1) !important;
    padding-left: 0 !important;
    padding-right: 15px !important;
}

.offcanvas-logo {
    height: 75px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain;
    transform: none !important;
    margin-left: -15px !important;
}

.mobile-menu {
    padding-top: 5px;
}

.mobile-menu li {
    border-bottom: 1px solid #e2e8f0;
}

.mobile-menu li a {
    color: var(--dark-slate);
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 4px;
    transition: all 0.3s ease;
}

.mobile-menu li a i {
    width: 38px;
    height: 38px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--primary-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-menu li a:hover {
    color: var(--primary-emerald);
    padding-left: 8px;
}

.mobile-menu li a:hover i {
    background: var(--primary-emerald);
    color: #fff;
}

.footer-section {
    background: var(--dark-slate);
    color: #e2e8f0;
    padding: 90px 0 40px 0;
    position: relative;
    z-index: 3;
    border-top: 5px solid var(--primary-emerald);
}

.footer-logo-wrap {
    display: inline-block;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.footer-logo {
    height: 50px;
    width: auto;
    transform: translateX(-60px) scale(1.9);
    transform-origin: left center;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: var(--primary-emerald);
    border-radius: 2px;
}

.text-light-muted {
    font-size: 16px;
    line-height: 1.8;
    color: #94a3b8;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links li a {
    color: #94a3b8;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a i {
    font-size: 11px;
    color: var(--primary-emerald);
}

.footer-links li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #94a3b8;
}

.footer-contact li i {
    color: var(--primary-emerald);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-emerald);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    color: #94a3b8;
}

@media(max-width: 991px) {
      .navbar-brand {
        margin-left: -35px !important;
        margin-right: 0 !important;
    }

    .navbar-brand img {
        width: 135px;
    }
    .main-header {
        background: var(--soft-slate-light) !important;
        padding: 12px 0;
        box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
    }
    .main-header .nav-link {
        color: var(--dark-slate) !important;
    }
    .main-header .navbar-toggler {
        color: var(--dark-slate) !important;
        background: rgba(15, 23, 42, 0.05);
    }
    .hero-content h1 {
        font-size: 2.4rem !important;
    }
    .hero-content p {
        font-size: 1.1rem !important;
    }
}

@media(max-width: 576px) {
    .hero-btns a, 
    .hero-content a.btn,
    .hero-content .btn {
        width: auto !important;
        display: inline-block !important;
        text-align: center;
        padding: 8px 18px !important; 
        font-size: 14px !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem !important; 
    }

    .navbar-brand img {
        width: 120px;
    }
}

.hero-section .carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .carousel-inner,
.hero-section .carousel-item {
    width: 100%;
    height: 100%;
}

.hero-section .carousel-item .banner-image {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    z-index: 5;
}

.hero-section .carousel-item .banner-image {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
}

.hero-section .carousel-item {
    transition: transform 0.6s ease-in-out;
}

@media (max-width: 768px) {
    .hero-section {
        height: 88vh !important; 
        min-height: 520px;       
    }

    .hero-section .carousel-item .banner-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: fill !important; 
    }
}

/* Whatsapp Icon */
.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 108px;

    width: 70px;
    height: 70px;

    background: linear-gradient(135deg, #25D366, #16b957);
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;
    text-decoration: none;

    z-index: 9999;

    border: 3px solid rgba(255, 255, 255, 0.9);

    box-shadow:
        0 8px 25px rgba(37, 211, 102, 0.35),
        0 0 0 7px rgba(37, 211, 102, 0.10);

    transition: all 0.35s ease;

    animation: whatsappPulse 2.8s infinite;
}

.whatsapp-float:hover {
    color: #fff;

    transform: translateY(-6px) scale(1.08);

    box-shadow:
        0 14px 35px rgba(37, 211, 102, 0.45),
        0 0 0 9px rgba(37, 211, 102, 0.12);

    animation: none;
}

.whatsapp-float i {
    line-height: 1;
}

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 8px 25px rgba(37, 211, 102, 0.35),
            0 0 0 0 rgba(37, 211, 102, 0.35);
    }

    70% {
        box-shadow:
            0 8px 25px rgba(37, 211, 102, 0.35),
            0 0 0 13px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0 8px 25px rgba(37, 211, 102, 0.35),
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 767px) {

    .whatsapp-float {
        right: 16px;
        bottom: 95px;

        width: 64px;
        height: 64px;

        font-size: 34px;
    }

}

/* Scroll Icon */
.scroll-top-btn {
    position: fixed;
    right: 28px;
    bottom: 28px;

    width: 66px;
    height: 66px;

    border: 2px solid var(--primary-emerald);
    border-radius: 50%;

    background: var(--primary-emerald);
    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    cursor: pointer;

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    box-shadow: 0 8px 22px rgba(5, 150, 105, 0.30);

    transition: all 0.35s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary-emerald);
    color: var(--white);

    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.40);
}

@media (max-width: 767px) {

    .scroll-top-btn {
        right: 16px;
        bottom: 18px;

        width: 60px;
        height: 60px;

        font-size: 20px;
    }

}

/* Features Section */
.features-section {
    position: relative;
    z-index: 4;
    background-color: var(--soft-slate-light);
    margin-top: -65px;
    padding-bottom: 70px !important;
}

.features-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.feature-card-item {
    flex: 1;
    min-width: 0;
}

.feature-card {
    background: var(--white);
    border: 2px solid #cbd5e1;
    border-radius: 22px;
    padding: 38px 22px;
    transition: all 0.35s ease;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    gap: 24px;
    height: 100%;
    min-height: 240px; 
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.2);
    border-color: var(--primary-emerald);
    background: linear-gradient(to bottom, #ffffff 0%, #f0fdf4 100%);
}

.feature-icon-wrap {
    width: 62px;
    height: 62px;
    background: var(--primary-emerald);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 25px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 15px rgba(5, 150, 105, 0.3);
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: var(--dark-slate);
}

.feature-content h3 {
    font-size: 19px; 
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.feature-content p {
    font-size: 14px; 
    color: #475569;
    margin-bottom: 0;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .features-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .feature-card-item {
        flex: 0 0 31%;
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .feature-card-item {
        flex: 0 0 48%;
    }
}

@media (max-width: 576px) {
    .feature-card-item {
        flex: 0 0 100%;
    }
}

/* Payout Section */
/* .payout-section {
    padding: 90px 0;
    background: var(--soft-slate-light);
    position: relative;
}

.payout-heading {
    margin-bottom: 42px;
}

.payout-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-bottom: 10px;

    padding: 6px 13px;

    border-radius: 50px;

    background: rgba(5, 150, 105, 0.08);

    color: var(--primary-emerald);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.payout-heading h2 {
    margin: 0 0 10px;

    color: var(--dark-slate);

    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.payout-heading p {
    max-width: 650px;
    margin: 0 auto;

    color: #64748b;

    font-size: 15px;
    line-height: 1.7;
}

.payout-card {
    position: relative;

    max-width: 1150px;
    margin: auto;

    padding: 34px;

    background: var(--white);

    border: 1px solid #e2e8f0;

    border-radius: 24px;

    box-shadow:
        0 20px 55px rgba(15, 23, 42, 0.09);
}

.calculator-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}

.calculator-title {
    display: flex;

    align-items: center;

    gap: 13px;
}

.calculator-title-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(5, 150, 105, 0.10);

    color: var(--primary-emerald);

    font-size: 18px;
}

.calculator-title h4 {
    margin: 0 0 3px;

    color: var(--dark-slate);

    font-size: 16px;
    font-weight: 800;
}

.calculator-title p {
    margin: 0;

    color: #94a3b8;

    font-size: 12px;
}

.secure-badge {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 8px 12px;

    border-radius: 50px;

    background: #f0fdf4;

    color: var(--primary-emerald);

    font-size: 11px;
    font-weight: 700;
}

.calculator-divider {
    width: 100%;
    height: 1px;

    margin-bottom: 30px;

    background: #edf2f7;
}

.payout-field label {
    display: block;

    margin-bottom: 8px;

    color: var(--dark-slate);

    font-size: 13px;
    font-weight: 750;
}

.payout-card .form-control {
    width: 100%;
    height: 50px;

    padding: 0 14px;

    border: 1px solid #d7e0e8;
    border-radius: 11px;

    background: #fff;

    color: var(--dark-slate);

    font-size: 14px;

    outline: none;

    transition: all 0.25s ease;
}

.payout-card .form-control:hover {
    border-color: #b9c9d5;
}

.payout-card .form-control:focus {
    border-color: var(--primary-emerald);

    box-shadow:
        0 0 0 3px rgba(5, 150, 105, 0.08);
}

.weight-input-wrap {
    display: flex;

    height: 50px;

    border: 1px solid #d7e0e8;

    border-radius: 11px;

    overflow: hidden;

    background: #fff;

    transition: all 0.25s ease;
}

.weight-input-wrap:focus-within {
    border-color: var(--primary-emerald);

    box-shadow:
        0 0 0 3px rgba(5, 150, 105, 0.08);
}

.weight-input-wrap input {
    flex: 1;

    min-width: 0;

    height: 100% !important;

    border: none !important;

    border-radius: 0 !important;

    box-shadow: none !important;
}

.weight-input-wrap select {
    width: 82px;

    border: none;

    border-left: 1px solid #e2e8f0;

    outline: none;

    background: #f8fafc;

    color: var(--primary-emerald);

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;
}

.quantity-input-wrap {
    position: relative;

    height: 50px;
}

.quantity-input-wrap input {
    padding-right: 60px !important;
}

.quantity-input-wrap span {
    position: absolute;

    top: 50%;
    right: 15px;

    transform: translateY(-50%);

    color: var(--primary-emerald);

    font-size: 12px;
    font-weight: 800;

    pointer-events: none;
}

.calculator-hint {
    min-height: 50px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 13px;

    border-radius: 11px;

    background: #f8fafc;

    border: 1px solid #edf2f7;

    color: #64748b;

    font-size: 11px;

    line-height: 1.5;
}

.calculator-hint i {
    flex-shrink: 0;

    color: var(--primary-emerald);

    font-size: 14px;
}

.calculate-button-wrap {
    display: flex;

    align-items: center;
}

.payout-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    width: auto;
    min-width: 195px;

    height: 46px;

    padding: 0 20px;

    border: none;

    border-radius: 10px;

    background: var(--primary-emerald);

    color: var(--white);

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 7px 18px rgba(5, 150, 105, 0.20);

    transition: all 0.25s ease;
}

.payout-btn:hover {
    background: #047857;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(5, 150, 105, 0.28);
}

.payout-btn i {
    font-size: 12px;
}

.payout-arrow {
    transition: transform 0.25s ease;
}

.payout-btn:hover .payout-arrow {
    transform: translateX(3px);
}

.estimated-payout {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 32px;

    padding: 25px 27px;

    background:
        linear-gradient(
            135deg,
            #f0fdf4,
            #f7fef9
        );

    border: 1px solid rgba(5, 150, 105, 0.16);

    border-radius: 18px;
}

.result-left {
    display: flex;

    align-items: center;

    gap: 15px;
}

.result-icon {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background: var(--primary-emerald);

    color: #fff;

    font-size: 20px;

    box-shadow:
        0 8px 20px rgba(5, 150, 105, 0.18);
}

.result-label {
    display: block;

    margin-bottom: 2px;

    color: #64748b;

    font-size: 12px;
    font-weight: 700;
}

.result-left h3 {
    margin: 0;

    color: var(--primary-emerald);

    font-size: 31px;
    font-weight: 900;
}

.result-details {
    display: flex;

    align-items: center;

    gap: 30px;
}

.rate-box,
.calculation-box {
    padding-left: 22px;

    border-left: 1px solid #d5e8dc;
}

.rate-box span,
.calculation-box span {
    display: block;

    margin-bottom: 5px;

    color: #64748b;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}

.rate-box span i,
.calculation-box span i {
    margin-right: 4px;

    color: var(--primary-emerald);
}

.rate-box strong {
    color: var(--dark-slate);

    font-size: 14px;
}

.calculation-box p {
    max-width: 300px;

    margin: 0;

    color: #475569;

    font-size: 12px;

    line-height: 1.5;
}

.calculator-note {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 17px;

    color: #94a3b8;

    font-size: 11px;
}

.calculator-note i {
    color: var(--primary-emerald);
}

@media (max-width: 991px) {

    .payout-section {
        padding: 75px 0;
    }

    .payout-card {
        padding: 28px;
    }

    .calculator-top {
        margin-bottom: 18px;
    }

    .estimated-payout {
        align-items: flex-start;

        flex-direction: column;
    }

    .result-details {
        width: 100%;
    }

    .calculation-box p {
        max-width: none;
    }

}

@media (max-width: 767px) {

    .payout-section {
        padding: 60px 0;
    }

    .payout-heading {
        margin-bottom: 30px;
    }

    .payout-heading h2 {
        font-size: 29px;
    }

    .payout-heading p {
        padding: 0 12px;

        font-size: 14px;
    }

    .payout-card {
        padding: 21px 17px;

        border-radius: 19px;
    }

    .calculator-top {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }

    .calculator-title {
        width: 100%;
    }

    .secure-badge {
        font-size: 10px;
    }

    .calculator-divider {
        margin-bottom: 22px;
    }

    .payout-card .form-control {
        height: 49px;
    }

    .weight-input-wrap {
        height: 49px;
    }

    .quantity-input-wrap {
        height: 49px;
    }

    .calculator-hint {
        min-height: auto;
    }

    .calculate-button-wrap {
        justify-content: flex-start;

        margin-top: 2px;
    }

    .payout-btn {
        min-width: 180px;

        height: 45px;

        padding: 0 17px;

        font-size: 12px;
    }

    .estimated-payout {
        gap: 22px;

        margin-top: 27px;

        padding: 20px 17px;
    }

    .result-left {
        width: 100%;
    }

    .result-icon {
        width: 48px;
        height: 48px;

        font-size: 18px;
    }

    .result-left h3 {
        font-size: 28px;
    }

    .result-details {
        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }

    .rate-box,
    .calculation-box {
        width: 100%;

        padding-left: 0;
        padding-top: 14px;

        border-left: none;

        border-top: 1px solid #d5e8dc;
    }

    .calculation-box p {
        max-width: 100%;

        word-break: break-word;
    }

    .calculator-note {
        align-items: flex-start;

        line-height: 1.5;
    }

}

@media (max-width: 480px) {

    .payout-section {
        padding: 50px 0;
    }

    .payout-heading h2 {
        font-size: 25px;
    }

    .payout-heading p {
        font-size: 13px;
    }

    .payout-card {
        padding: 18px 14px;

        border-radius: 17px;
    }

    .calculator-title-icon {
        width: 42px;
        height: 42px;

        font-size: 16px;
    }

    .calculator-title h4 {
        font-size: 14px;
    }

    .calculator-title p {
        font-size: 11px;
    }

    .payout-btn {
        min-width: 175px;

        height: 44px;

        padding: 0 15px;
    }

    .estimated-payout {
        padding: 18px 15px;
    }

    .result-left h3 {
        font-size: 26px;
    }

}

@media (max-width: 380px) {

    .payout-card {
        padding: 16px 12px;
    }

    .payout-heading h2 {
        font-size: 23px;
    }

    .payout-btn {
        min-width: 100%;
    }

} */

/* Payout Section */
/* .custom-payout-section {
    padding: 90px 0;
    background: var(--soft-slate-light);
    position: relative;
}

.custom-payout-heading {
    margin-bottom: 42px;
}

.custom-payout-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 6px 13px;
    border-radius: 50px;
    background: rgba(5, 150, 105, 0.08);
    color: var(--primary-emerald);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.custom-payout-heading h2 {
    margin: 0 0 10px;
    color: var(--dark-slate);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.custom-payout-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.custom-payout-card {
    position: relative;
    max-width: 1150px;
    margin: auto;
    padding: 34px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.09);
}

.custom-calc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.custom-calc-title {
    display: flex;
    align-items: center;
    gap: 13px;
}

.custom-calc-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(5, 150, 105, 0.10);
    color: var(--primary-emerald);
    font-size: 18px;
}

.custom-calc-title h4 {
    margin: 0 0 3px;
    color: var(--dark-slate);
    font-size: 16px;
    font-weight: 800;
}

.custom-calc-title p {
    margin: 0;
    color: #94a3b8;
    font-size: 12px;
}

.custom-secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 50px;
    background: #f0fdf4;
    color: var(--primary-emerald);
    font-size: 11px;
    font-weight: 700;
}

.custom-calc-divider {
    width: 100%;
    height: 1px;
    margin-bottom: 30px;
    background: #edf2f7;
}

.custom-field-box label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-slate);
    font-size: 13px;
    font-weight: 750;
}

.custom-payout-card .custom-input-field {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid #d7e0e8;
    border-radius: 11px;
    background: #fff;
    color: var(--dark-slate);
    font-size: 14px;
    outline: none;
    transition: all 0.25s ease;
}

.custom-payout-card .custom-input-field:hover {
    border-color: #b9c9d5;
}

.custom-payout-card .custom-input-field:focus {
    border-color: var(--primary-emerald);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.08);
}

.custom-weight-wrap {
    display: flex;
    height: 50px;
    border: 1px solid #d7e0e8;
    border-radius: 11px;
    overflow: hidden;
    background: #fff;
    transition: all 0.25s ease;
}

.custom-weight-wrap:focus-within {
    border-color: var(--primary-emerald);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.08);
}

.custom-weight-wrap input {
    flex: 1;
    min-width: 0;
    height: 100% !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.custom-weight-wrap .custom-unit-select {
    width: 82px;
    border: none;
    border-left: 1px solid #e2e8f0;
    outline: none;
    background: #f8fafc;
    color: var(--primary-emerald);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.custom-qty-wrap {
    position: relative;
    height: 50px;
}

.custom-qty-wrap input {
    padding-right: 60px !important;
}

.custom-qty-wrap span {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--primary-emerald);
    font-size: 12px;
    font-weight: 800;
    pointer-events: none;
}

.custom-calc-hint {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border-radius: 11px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    color: #64748b;
    font-size: 11px;
    line-height: 1.5;
}

.custom-calc-hint i {
    flex-shrink: 0;
    color: var(--primary-emerald);
    font-size: 14px;
}

.custom-btn-wrap {
    display: flex;
    align-items: center;
}

.custom-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    min-width: 195px;
    height: 46px;
    padding: 0 20px;
    border: none;
    border-radius: 10px;
    background: var(--primary-emerald);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(5, 150, 105, 0.20);
    transition: all 0.25s ease;
}

.custom-submit-btn:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(5, 150, 105, 0.28);
}

.custom-submit-btn i {
    font-size: 12px;
}

.custom-arrow {
    transition: transform 0.25s ease;
}

.custom-submit-btn:hover .custom-arrow {
    transform: translateX(3px);
}

.custom-estimated-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 32px;
    padding: 25px 27px;
    background: linear-gradient(135deg, #f0fdf4, #f7fef9);
    border: 1px solid rgba(5, 150, 105, 0.16);
    border-radius: 18px;
}

.custom-result-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-res-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--primary-emerald);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.18);
}

.custom-res-label {
    display: block;
    margin-bottom: 2px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.custom-result-left h3 {
    margin: 0;
    color: var(--primary-emerald);
    font-size: 31px;
    font-weight: 900;
}

.custom-result-details {
    display: flex;
    align-items: center;
    gap: 30px;
}

.custom-rate-box,
.custom-calc-breakdown-box {
    padding-left: 22px;
    border-left: 1px solid #d5e8dc;
}

.custom-rate-box span,
.custom-calc-breakdown-box span {
    display: block;
    margin-bottom: 5px;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.custom-rate-box span i,
.custom-calc-breakdown-box span i {
    margin-right: 4px;
    color: var(--primary-emerald);
}

.custom-rate-box strong {
    color: var(--dark-slate);
    font-size: 14px;
}

.custom-calc-breakdown-box p {
    max-width: 300px;
    margin: 0;
    color: #475569;
    font-size: 12px;
    line-height: 1.5;
}

.custom-calc-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 17px;
    color: #94a3b8;
    font-size: 11px;
}

.custom-calc-note i {
    color: var(--primary-emerald);
}

@media (max-width: 991px) {
    .custom-payout-section {
        padding: 40px 12px;
    }

    .custom-payout-card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .custom-payout-card .row.g-4 > div {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .custom-calc-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .custom-calc-title h4 {
        font-size: 15px;
    }

    .custom-calc-title p {
        font-size: 11px;
    }

    .custom-secure-badge {
        font-size: 10px;
        padding: 6px 10px;
    }

    .custom-calc-divider {
        margin-bottom: 20px;
    }

    .custom-payout-card .custom-input-field,
    .custom-weight-wrap,
    .custom-qty-wrap {
        height: 46px;
    }

    .custom-payout-card .custom-input-field {
        font-size: 13px;
        padding: 0 12px;
    }

    .custom-weight-wrap .custom-unit-select {
        width: 75px;
        font-size: 11px;
    }

    .custom-qty-wrap span {
        right: 12px;
        font-size: 11px;
    }

    .custom-calc-hint {
        min-height: auto;
        padding: 10px;
        font-size: 10.5px;
    }

    .custom-submit-btn {
        width: 100% !important;
        min-width: 100% !important;
        height: 48px;
        font-size: 12.5px;
    }

    .custom-estimated-box {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-top: 24px;
        padding: 18px 14px;
        border-radius: 14px;
    }

    .custom-result-left {
        gap: 12px;
    }

    .custom-res-icon {
        width: 46px;
        height: 46px;
        font-size: 17px;
        border-radius: 11px;
    }

    .custom-result-left h3 {
        font-size: 26px;
    }

    .custom-result-details {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .custom-rate-box,
    .custom-calc-breakdown-box {
        padding-left: 0;
        padding-top: 12px;
        border-left: none;
        border-top: 1px solid #d5e8dc;
    }

    .custom-rate-box strong {
        font-size: 13px;
    }

    .custom-calc-breakdown-box p {
        max-width: 100%;
        font-size: 11.5px;
        word-break: break-word;
    }

    .custom-calc-note {
        font-size: 10.5px;
        margin-top: 14px;
    }
}

@media (max-width: 480px) {
    .custom-payout-section {
        padding: 30px 8px;
    }

    .custom-payout-heading h2 {
        font-size: 26px;
    }

    .custom-payout-heading p {
        font-size: 13px;
    }

    .custom-payout-card {
        padding: 14px 10px;
        border-radius: 14px;
    }

    .custom-calc-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .custom-result-left h3 {
        font-size: 22px;
    }
}

@media (max-width: 360px) {
    .custom-payout-heading h2 {
        font-size: 23px;
    }

    .custom-payout-card {
        padding: 12px 8px;
    }

    .custom-weight-wrap .custom-unit-select {
        width: 68px;
        font-size: 10px;
    }

    .custom-submit-btn {
        font-size: 11.5px;
        height: 44px;
    }
}

@media (max-width: 300px) {
    .custom-payout-section {
        padding: 20px 4px;
    }

    .custom-payout-heading h2 {
        font-size: 20px;
    }

    .custom-payout-card {
        padding: 10px 6px;
    }
} */

.custom-payout-section {
    padding: 90px 0;
    background: var(--soft-slate-light);
    position: relative;
}

.custom-payout-heading {
    margin-bottom: 42px;
}

.custom-payout-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 6px 13px;
    border-radius: 50px;
    background: rgba(5, 150, 105, 0.08);
    color: var(--primary-emerald);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.custom-payout-heading h2 {
    margin: 0 0 10px;
    color: var(--dark-slate);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.custom-payout-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.custom-payout-card {
    position: relative;
    max-width: 1150px;
    margin: auto;
    padding: 34px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.09);
}

.custom-calc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.custom-calc-title {
    display: flex;
    align-items: center;
    gap: 13px;
}

.custom-calc-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(5, 150, 105, 0.10);
    color: var(--primary-emerald);
    font-size: 18px;
}

.custom-calc-title h4 {
    margin: 0 0 3px;
    color: var(--dark-slate);
    font-size: 16px;
    font-weight: 800;
}

.custom-calc-title p {
    margin: 0;
    color: #94a3b8;
    font-size: 12px;
}

.custom-secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 50px;
    background: #f0fdf4;
    color: var(--primary-emerald);
    font-size: 11px;
    font-weight: 700;
}

.custom-calc-divider {
    width: 100%;
    height: 1px;
    margin-bottom: 30px;
    background: #edf2f7;
}

.custom-field-box label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-slate);
    font-size: 13px;
    font-weight: 750;
}

.custom-payout-card .custom-input-field {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid #d7e0e8;
    border-radius: 11px;
    background: #fff;
    color: var(--dark-slate);
    font-size: 14px;
    outline: none;
    transition: all 0.25s ease;
}

.custom-payout-card .custom-input-field:hover {
    border-color: #b9c9d5;
}

.custom-payout-card .custom-input-field:focus {
    border-color: var(--primary-emerald);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.08);
}

.custom-price-wrap {
    position: relative;
    height: 50px;
}

.custom-price-wrap > span {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-emerald);
    font-size: 14px;
    font-weight: 800;
    z-index: 2;
}

.custom-price-wrap input {
    padding-left: 30px !important;
    padding-right: 55px !important;
    background: #f8fafc !important;
    color: var(--primary-emerald) !important;
    font-weight: 800;
}

.custom-price-wrap small {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
    pointer-events: none;
}

.custom-qty-wrap {
    position: relative;
    height: 50px;
}

.custom-qty-wrap input {
    padding-right: 60px !important;
}

.custom-qty-wrap span {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--primary-emerald);
    font-size: 12px;
    font-weight: 800;
    pointer-events: none;
}

.custom-calc-hint {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border-radius: 11px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    color: #64748b;
    font-size: 11px;
    line-height: 1.5;
}

.custom-calc-hint i {
    flex-shrink: 0;
    color: var(--primary-emerald);
    font-size: 14px;
}

.custom-btn-wrap {
    display: flex;
    align-items: center;
}

.custom-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    min-width: 195px;
    height: 46px;
    padding: 0 20px;
    border: none;
    border-radius: 10px;
    background: var(--primary-emerald);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(5, 150, 105, 0.20);
    transition: all 0.25s ease;
}

.custom-submit-btn:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(5, 150, 105, 0.28);
}

.custom-submit-btn i {
    font-size: 12px;
}

.custom-arrow {
    transition: transform 0.25s ease;
}

.custom-submit-btn:hover .custom-arrow {
    transform: translateX(3px);
}

.custom-estimated-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 32px;
    padding: 25px 27px;
    background: linear-gradient(135deg, #f0fdf4, #f7fef9);
    border: 1px solid rgba(5, 150, 105, 0.16);
    border-radius: 18px;
}

.custom-result-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-res-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--primary-emerald);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.18);
}

.custom-res-label {
    display: block;
    margin-bottom: 2px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.custom-result-left h3 {
    margin: 0;
    color: var(--primary-emerald);
    font-size: 31px;
    font-weight: 900;
}

.custom-result-details {
    display: flex;
    align-items: center;
    gap: 30px;
}

.custom-rate-box,
.custom-calc-breakdown-box {
    padding-left: 22px;
    border-left: 1px solid #d5e8dc;
}

.custom-rate-box span,
.custom-calc-breakdown-box span {
    display: block;
    margin-bottom: 5px;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.custom-rate-box span i,
.custom-calc-breakdown-box span i {
    margin-right: 4px;
    color: var(--primary-emerald);
}

.custom-rate-box strong {
    color: var(--dark-slate);
    font-size: 14px;
}

.custom-calc-breakdown-box p {
    max-width: 300px;
    margin: 0;
    color: #475569;
    font-size: 12px;
    line-height: 1.5;
}

.custom-calc-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 17px;
    color: #94a3b8;
    font-size: 11px;
}

.custom-calc-note i {
    color: var(--primary-emerald);
}

@media (max-width: 991px) {

    .custom-payout-section {
        padding: 40px 12px;
    }

    .custom-payout-card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .custom-payout-card .row.g-4 > div {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .custom-calc-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .custom-calc-title h4 {
        font-size: 15px;
    }

    .custom-calc-title p {
        font-size: 11px;
    }

    .custom-secure-badge {
        font-size: 10px;
        padding: 6px 10px;
    }

    .custom-calc-divider {
        margin-bottom: 20px;
    }

    .custom-payout-card .custom-input-field,
    .custom-price-wrap,
    .custom-qty-wrap {
        height: 46px;
    }

    .custom-payout-card .custom-input-field {
        font-size: 13px;
        padding: 0 12px;
    }

    .custom-price-wrap > span {
        left: 12px;
    }

    .custom-price-wrap input {
        padding-left: 28px !important;
    }

    .custom-price-wrap small {
        right: 12px;
    }

    .custom-qty-wrap span {
        right: 12px;
        font-size: 11px;
    }

    .custom-calc-hint {
        min-height: auto;
        padding: 10px;
        font-size: 10.5px;
    }

    .custom-submit-btn {
        width: 100% !important;
        min-width: 100% !important;
        height: 48px;
        font-size: 12.5px;
    }

    .custom-estimated-box {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-top: 24px;
        padding: 18px 14px;
        border-radius: 14px;
    }

    .custom-result-left {
        gap: 12px;
    }

    .custom-res-icon {
        width: 46px;
        height: 46px;
        font-size: 17px;
        border-radius: 11px;
    }

    .custom-result-left h3 {
        font-size: 26px;
    }

    .custom-result-details {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .custom-rate-box,
    .custom-calc-breakdown-box {
        padding-left: 0;
        padding-top: 12px;
        border-left: none;
        border-top: 1px solid #d5e8dc;
    }

    .custom-rate-box strong {
        font-size: 13px;
    }

    .custom-calc-breakdown-box p {
        max-width: 100%;
        font-size: 11.5px;
        word-break: break-word;
    }

    .custom-calc-note {
        font-size: 10.5px;
        margin-top: 14px;
    }
}


@media (max-width: 480px) {

    .custom-payout-section {
        padding: 30px 8px;
    }

    .custom-payout-heading h2 {
        font-size: 26px;
    }

    .custom-payout-heading p {
        font-size: 13px;
    }

    .custom-payout-card {
        padding: 14px 10px;
        border-radius: 14px;
    }

    .custom-calc-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .custom-result-left h3 {
        font-size: 22px;
    }
}


@media (max-width: 360px) {

    .custom-payout-heading h2 {
        font-size: 23px;
    }

    .custom-payout-card {
        padding: 12px 8px;
    }

    .custom-submit-btn {
        font-size: 11.5px;
        height: 44px;
    }
}


@media (max-width: 300px) {

    .custom-payout-section {
        padding: 20px 4px;
    }

    .custom-payout-heading h2 {
        font-size: 20px;
    }

    .custom-payout-card {
        padding: 10px 6px;
    }
}

/* Pickup Workflow Section */
.pickup-workflow-section {
    position: relative;

    padding: 105px 0;

    background:
        linear-gradient(
            135deg,
            #f8fbfa 0%,
            #f1f8f5 50%,
            #f8fbfa 100%
        );

    overflow: hidden;
}

.pickup-workflow-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);
}

.pickup-glow-one {
    width: 500px;
    height: 500px;

    top: -270px;
    right: -170px;

    background:
        radial-gradient(
            circle,
            rgba(5, 150, 105, 0.11),
            rgba(5, 150, 105, 0) 70%
        );
}

.pickup-glow-two {
    width: 420px;
    height: 420px;

    bottom: -250px;
    left: -180px;

    background:
        radial-gradient(
            circle,
            rgba(5, 150, 105, 0.075),
            rgba(5, 150, 105, 0) 70%
        );
}

.pickup-workflow-heading {
    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: 0 auto 65px;
}

.pickup-workflow-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    padding: 8px 16px;

    border: 1px solid
        rgba(5, 150, 105, 0.15);

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.88);

    color: var(--primary-emerald);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.6px;

    box-shadow:
        0 6px 20px
        rgba(15, 23, 42, 0.04);
}

.pickup-workflow-tag i {
    font-size: 12px;
}

.pickup-workflow-heading h2 {
    margin: 0 0 15px;

    color: var(--dark-slate);

    font-size: 42px;

    font-weight: 900;

    line-height: 1.18;

    letter-spacing: -0.8px;
}

.pickup-workflow-heading h2 span {
    position: relative;

    color: var(--primary-emerald);
}

.pickup-workflow-heading h2 span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -5px;

    height: 3px;

    border-radius: 20px;

    background:
        rgba(5, 150, 105, 0.18);
}

.pickup-workflow-heading p {
    max-width: 720px;

    margin: 0 auto;

    color: #64748b;

    font-size: 16px;

    line-height: 1.8;
}

.pickup-steps {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: stretch;

    justify-content: center;

    max-width: 1230px;

    margin: 0 auto;
}

.pickup-step {
    position: relative;

    width: 25%;

    min-height: 315px;

    padding: 30px 26px 66px;

    background:
        rgba(255, 255, 255, 0.97);

    border: 1px solid #dfeae5;

    border-radius: 23px;

    box-shadow:
        0 16px 42px
        rgba(15, 23, 42, 0.065);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.pickup-step::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--primary-emerald),
            #34d399
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.35s ease;
}

.pickup-step::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -95px;
    bottom: -100px;

    border-radius: 50%;

    background:
        rgba(5, 150, 105, 0.045);

    transition:
        transform 0.4s ease;
}

.pickup-step:hover {
    transform: translateY(-11px);

    border-color:
        rgba(5, 150, 105, 0.30);

    box-shadow:
        0 27px 58px
        rgba(5, 150, 105, 0.13);
}

.pickup-step:hover::before {
    transform: scaleX(1);
}

.pickup-step:hover::after {
    transform: scale(1.45);
}

.pickup-step-top {
    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 27px;
}

.pickup-step-number {
    position: relative;

    z-index: 3;

    display: block;

    color: #cbded5;

    font-size: 48px;

    font-weight: 950;

    line-height: 1;

    letter-spacing: -2px;

    opacity: 1;

    visibility: visible;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.pickup-step:hover .pickup-step-number {
    color:
        rgba(5, 150, 105, 0.28);

    transform: translateX(2px);
}

.pickup-step-icon {
    position: relative;

    z-index: 4;

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #ecfdf5,
            #f4fdf9
        );

    border: 1px solid
        rgba(5, 150, 105, 0.16);

    color: var(--primary-emerald);

    font-size: 23px;

    opacity: 1;

    visibility: visible;

    box-shadow:
        0 10px 25px
        rgba(5, 150, 105, 0.10);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

.pickup-step-icon i {
    display: block;

    opacity: 1;

    visibility: visible;
}

.pickup-step:hover .pickup-step-icon {
    background:
        linear-gradient(
            135deg,
            var(--primary-emerald),
            #047857
        );

    color: #ffffff;

    transform:
        translateY(-3px)
        rotate(-5deg)
        scale(1.08);

    box-shadow:
        0 13px 30px
        rgba(5, 150, 105, 0.26);
}

.pickup-step-content {
    position: relative;

    z-index: 4;
}

.pickup-step-label {
    display: inline-block;

    margin-bottom: 9px;

    color: var(--primary-emerald);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.6px;
}

.pickup-step-content h3 {
    margin: 0 0 12px;

    color: var(--dark-slate);

    font-size: 21px;

    font-weight: 900;

    line-height: 1.3;
}

.pickup-step-content p {
    margin: 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.8;
}

.pickup-step-bottom {
    position: absolute;

    z-index: 5;

    left: 26px;
    bottom: 22px;
}

.pickup-step-bottom span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 11px;

    border-radius: 8px;

    background:
        #f0fdf4;

    color: var(--primary-emerald);

    font-size: 10px;

    font-weight: 850;
}

.pickup-step-bottom i {
    font-size: 10px;
}

.pickup-connector {
    position: relative;

    width: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;
}

.pickup-connector::before {
    content: "";

    position: absolute;

    width: 40px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #c9dfd5,
            #a9d1bf
        );
}

.pickup-connector span {
    position: relative;

    z-index: 5;

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid #d1e5dc;

    color: var(--primary-emerald);

    font-size: 10px;

    box-shadow:
        0 5px 14px
        rgba(15, 23, 42, 0.06);

    transition:
        all 0.3s ease;
}

.pickup-connector span:hover {
    background: var(--primary-emerald);

    color: #ffffff;

    border-color: var(--primary-emerald);
}

.pickup-trust-strip {
    position: relative;

    z-index: 2;

    max-width: 1020px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin: 52px auto 0;

    padding: 22px 28px;

    background:
        rgba(255, 255, 255, 0.96);

    border: 1px solid #dfeae5;

    border-radius: 19px;

    box-shadow:
        0 14px 38px
        rgba(15, 23, 42, 0.055);
}

.pickup-trust-item {
    display: flex;

    align-items: center;

    gap: 13px;

    flex: 1;
}

.pickup-trust-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #ecfdf5,
            #f7fffb
        );

    color: var(--primary-emerald);

    font-size: 17px;
}

.pickup-trust-item strong {
    display: block;

    margin-bottom: 4px;

    color: var(--dark-slate);

    font-size: 13px;

    font-weight: 850;
}

.pickup-trust-item span {
    display: block;

    color: #94a3b8;

    font-size: 11px;

    line-height: 1.4;
}

.pickup-trust-line {
    width: 1px;

    height: 40px;

    flex-shrink: 0;

    background: #e0ebe6;
}

@media (max-width: 1100px) {

    .pickup-steps {
        padding: 0 15px;
    }

    .pickup-step {
        padding-left: 21px;
        padding-right: 21px;
    }

    .pickup-connector {
        width: 34px;
    }

    .pickup-connector::before {
        width: 26px;
    }

    .pickup-trust-strip {
        margin-left: 15px;
        margin-right: 15px;
    }

}

@media (max-width: 991px) {

    .pickup-workflow-section {
        padding: 82px 0;
    }

    .pickup-workflow-heading {
        margin-bottom: 48px;
    }

    .pickup-workflow-heading h2 {
        font-size: 36px;
    }

    .pickup-workflow-heading p {
        font-size: 15px;
    }

    .pickup-steps {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }

    .pickup-step {
        width: 100%;

        min-height: 300px;
    }

    .pickup-connector {
        display: none;
    }

    .pickup-trust-strip {
        flex-wrap: wrap;

        gap: 18px;
    }

}

@media (max-width: 767px) {

    .pickup-workflow-section {
        padding: 65px 0;
    }

    .pickup-workflow-heading {
        padding: 0 15px;

        margin-bottom: 36px;
    }

    .pickup-workflow-tag {
        font-size: 10px;

        padding: 7px 13px;
    }

    .pickup-workflow-heading h2 {
        font-size: 30px;
    }

    .pickup-workflow-heading p {
        font-size: 13px;

        line-height: 1.75;
    }

    .pickup-steps {
        display: flex;

        flex-direction: column;

        gap: 15px;

        padding: 0 13px;
    }

    .pickup-step {
        width: 100%;

        min-height: auto;

        padding: 22px 20px 66px;

        border-radius: 18px;
    }

    .pickup-step-top {
        margin-bottom: 20px;
    }

    .pickup-step-number {
        font-size: 38px;
    }

    .pickup-step-icon {
        width: 51px;
        height: 51px;

        border-radius: 15px;

        font-size: 18px;
    }

    .pickup-step-label {
        font-size: 10px;
    }

    .pickup-step-content h3 {
        font-size: 18px;
    }

    .pickup-step-content p {
        font-size: 13px;

        line-height: 1.75;
    }

    .pickup-step-bottom {
        left: 20px;
        bottom: 19px;
    }

    .pickup-trust-strip {
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        margin: 30px 13px 0;

        padding: 7px 18px;

        border-radius: 16px;
    }

    .pickup-trust-item {
        padding: 14px 0;
    }

    .pickup-trust-line {
        width: 100%;
        height: 1px;
    }

}

@media (max-width: 480px) {

    .pickup-workflow-section {
        padding: 52px 0;
    }

    .pickup-workflow-heading {
        padding: 0 10px;
    }

    .pickup-workflow-heading h2 {
        font-size: 26px;
    }

    .pickup-workflow-heading p {
        font-size: 12.5px;
    }

    .pickup-steps {
        padding: 0 10px;

        gap: 13px;
    }

    .pickup-step {
        padding: 19px 17px 62px;

        border-radius: 17px;
    }

    .pickup-step-number {
        font-size: 34px;
    }

    .pickup-step-icon {
        width: 47px;
        height: 47px;

        font-size: 16px;
    }

    .pickup-step-content h3 {
        font-size: 16px;
    }

    .pickup-step-content p {
        font-size: 12px;

        line-height: 1.7;
    }

    .pickup-step-bottom {
        left: 17px;
        bottom: 17px;
    }

    .pickup-trust-strip {
        margin-left: 10px;
        margin-right: 10px;
    }

    .pickup-trust-item strong {
        font-size: 12px;
    }

    .pickup-trust-item span {
        font-size: 10px;
    }

}

@media (max-width: 380px) {

    .pickup-workflow-heading h2 {
        font-size: 23px;
    }

    .pickup-workflow-heading p {
        font-size: 12px;
    }

    .pickup-step {
        padding: 17px 15px 60px;
    }

    .pickup-step-number {
        font-size: 31px;
    }

    .pickup-step-icon {
        width: 44px;
        height: 44px;

        font-size: 15px;
    }

    .pickup-step-content h3 {
        font-size: 15px;
    }

    .pickup-step-content p {
        font-size: 11.5px;
    }

    .pickup-step-bottom {
        left: 15px;
    }

}

/* Data Security Section */
.data-security-section {
    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fbf9 100%
        );

    overflow: hidden;
}

.data-security-heading {
    max-width: 820px;

    margin: 0 auto 62px;

    text-align: center;
}

.data-security-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    padding: 9px 18px;

    border-radius: 50px;

    background: #ecfdf5;

    color: #047857;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.data-security-tag i {
    font-size: 14px;
}

.data-security-heading h2 {
    margin: 0 0 17px;

    color: #0f172a;

    font-size: 46px;

    line-height: 1.15;

    font-weight: 900;

    letter-spacing: -1.3px;
}

.data-security-heading h2 span {
    color: #059669;
}

.data-security-heading p {
    max-width: 720px;

    margin: auto;

    color: #64748b;

    font-size: 17px;

    line-height: 1.8;
}

.data-security-layout {
    position: relative;

    display: grid;

    grid-template-columns: 43% 57%;

    align-items: center;

    max-width: 1200px;

    min-height: 590px;

    margin: auto;

    padding: 52px;

    background: #ffffff;

    border: 1px solid #dcebe4;

    border-radius: 32px;

    box-shadow:
        0 28px 75px rgba(15, 23, 42, 0.08);

    overflow: hidden;
}

.security-corner {
    position: absolute;

    z-index: 1;

    width: 58px;
    height: 58px;

    pointer-events: none;
}

.security-corner::before,
.security-corner::after {
    content: "";

    position: absolute;

    background: #10b981;

    border-radius: 5px;
}

.security-corner::before {
    width: 58px;
    height: 3px;
}

.security-corner::after {
    width: 3px;
    height: 58px;
}

.security-corner-tl {
    top: 0;
    left: 0;
}

.security-corner-tl::before {
    top: 0;
    left: 0;
}

.security-corner-tl::after {
    top: 0;
    left: 0;
}

.security-corner-tr {
    top: 0;
    right: 0;
}

.security-corner-tr::before {
    top: 0;
    right: 0;
}

.security-corner-tr::after {
    top: 0;
    right: 0;
}

.security-corner-bl {
    bottom: 0;
    left: 0;
}

.security-corner-bl::before {
    bottom: 0;
    left: 0;
}

.security-corner-bl::after {
    bottom: 0;
    left: 0;
}

.security-corner-br {
    right: 0;
    bottom: 0;
}

.security-corner-br::before {
    right: 0;
    bottom: 0;
}

.security-corner-br::after {
    right: 0;
    bottom: 0;
}

.security-corner-dot {
    position: absolute;

    z-index: 2;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #059669;

    box-shadow:
        0 0 0 5px rgba(16, 185, 129, 0.10),
        0 0 15px rgba(16, 185, 129, 0.25);
}

.security-dot-tl {
    top: 18px;
    left: 18px;
}

.security-dot-tr {
    top: 18px;
    right: 18px;
}

.security-dot-bl {
    bottom: 18px;
    left: 18px;
}

.security-dot-br {
    right: 18px;
    bottom: 18px;
}

.security-device-area {
    position: relative;

    z-index: 3;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: visible;
}

.security-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(16, 185, 129, 0.16) 0%,
            rgba(16, 185, 129, 0.06) 45%,
            transparent 72%
        );
}

.security-laptop {
    position: relative;

    z-index: 3;

    width: 350px;

    filter:
        drop-shadow(
            0 28px 30px
            rgba(15, 23, 42, 0.17)
        );
}

.laptop-screen {
    position: relative;

    width: 305px;
    height: 220px;

    margin: auto;

    padding: 9px;

    background: #17212b;

    border: 5px solid #27343e;

    border-bottom: 7px solid #111a21;

    border-radius: 15px 15px 5px 5px;
}

.screen-top {
    height: 16px;

    display: flex;

    align-items: center;

    gap: 5px;

    padding-left: 4px;
}

.screen-top span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #64748b;
}

.screen-content {
    height: 183px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background:
        linear-gradient(
            145deg,
            #effcf6,
            #dff8eb
        );
}

.screen-shield {
    width: 58px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 25px;

    background: #059669;

    clip-path:
        polygon(
            50% 0,
            91% 14%,
            85% 67%,
            50% 100%,
            15% 67%,
            9% 14%
        );
}

.screen-content strong {
    display: block;

    color: #0f172a;

    font-size: 15px;

    font-weight: 900;

    letter-spacing: 1px;
}

.screen-content strong small {
    display: block;

    margin-top: 3px;

    color: #059669;

    font-size: 9px;

    text-align: center;

    letter-spacing: 1.5px;
}

.security-progress {
    width: 140px;
    height: 6px;

    margin: 10px 0 8px;

    overflow: hidden;

    border-radius: 20px;

    background: #cbded4;
}

.security-progress span {
    display: block;

    width: 100%;
    height: 100%;

    border-radius: 20px;

    background: #10b981;
}

.screen-content em {
    color: #64748b;

    font-size: 10px;

    font-style: normal;
}

.laptop-base {
    position: relative;

    width: 350px;
    height: 17px;

    margin-top: -1px;

    background:
        linear-gradient(
            180deg,
            #52616c,
            #26343e
        );

    border-radius: 2px 2px 12px 12px;

    box-shadow:
        0 5px 0 #d6dde1;
}

.laptop-base::after {
    content: "";

    position: absolute;

    left: 50%;

    top: 3px;

    transform: translateX(-50%);

    width: 72px;
    height: 4px;

    border-radius: 0 0 5px 5px;

    background: #8a969e;
}

.security-floating-badge,
.security-floating-certificate {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 14px 17px;

    background: #ffffff;

    border: 1px solid #dcebe4;

    border-radius: 14px;

    box-shadow:
        0 17px 35px
        rgba(15, 23, 42, 0.11);
}

.security-floating-badge {
    top: 72px;

    left: 0;
}

.security-floating-certificate {
    right: -2px;

    bottom: 80px;
}

.floating-badge-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #ecfdf5;

    color: #059669;

    font-size: 17px;
}

.security-floating-certificate > i {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #ecfdf5;

    color: #059669;

    font-size: 17px;
}

.security-floating-badge strong,
.security-floating-certificate strong {
    display: block;

    margin-bottom: 4px;

    color: #1e293b;

    font-size: 13px;

    font-weight: 900;
}

.security-floating-badge span,
.security-floating-certificate span {
    display: block;

    color: #64748b;

    font-size: 11px;
}

.security-information {
    position: relative;

    z-index: 3;

    padding-left: 52px;

    border-left: 1px solid #e6eee9;
}

.security-intro > span {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 15px;

    color: #059669;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.security-intro > span i {
    font-size: 13px;
}

.security-intro h3 {
    max-width: 630px;

    margin: 0 0 17px;

    color: #0f172a;

    font-size: 36px;

    line-height: 1.2;

    font-weight: 900;

    letter-spacing: -0.8px;
}

.security-intro h3 strong {
    display: block;

    color: #059669;

    font-weight: 900;
}

.security-intro > p {
    max-width: 650px;

    margin: 0 0 30px;

    color: #64748b;

    font-size: 15px;

    line-height: 1.8;
}

.security-feature-list {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.security-feature-card {
    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 19px 48px 19px 18px;

    background: #f9fcfa;

    border: 1px solid #e0ebe5;

    border-radius: 16px;

    transition:
        all 0.25s ease;
}

.security-feature-card:hover {
    transform: translateX(5px);

    background: #ffffff;

    border-color: #b7ddca;

    box-shadow:
        0 12px 28px
        rgba(5, 150, 105, 0.09);
}

.feature-number {
    color: #9ccab3;

    font-size: 11px;

    font-weight: 900;
}

.feature-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 13px;

    background: #dcfce7;

    color: #059669;

    font-size: 20px;
}

.certificate-icon {
    background: #ecfdf5;

    color: #059669;
}

.feature-content {
    min-width: 0;
}

.feature-content h4 {
    margin: 0 0 6px;

    color: #0f172a;

    font-size: 16px;

    font-weight: 900;
}

.feature-content p {
    margin: 0;

    color: #64748b;

    font-size: 12px;

    line-height: 1.7;
}

.feature-check {
    position: absolute;

    top: 21px;
    right: 18px;

    color: #10b981;

    font-size: 15px;
}

.security-trust-row {
    display: flex;

    align-items: center;

    gap: 28px;

    margin-top: 25px;
}

.security-trust-point {
    display: flex;

    align-items: center;

    gap: 9px;
}

.security-trust-point > i {
    color: #059669;

    font-size: 16px;
}

.security-trust-point strong {
    display: block;

    margin-bottom: 3px;

    color: #334155;

    font-size: 12px;

    font-weight: 900;
}

.security-trust-point span {
    display: block;

    color: #94a3b8;

    font-size: 10px;
}

.security-guarantee-bar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    max-width: 1200px;

    margin: 24px auto 0;

    padding: 24px 30px;

    background:
        linear-gradient(
            100deg,
            #ecfdf5,
            #f7fffb
        );

    border: 1px solid #d5ebe0;

    border-radius: 19px;
}

.guarantee-left {
    display: flex;

    align-items: center;

    gap: 15px;
}

.guarantee-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background: #059669;

    color: #ffffff;

    font-size: 20px;

    box-shadow:
        0 9px 20px
        rgba(5, 150, 105, 0.18);
}

.guarantee-left strong {
    display: block;

    margin-bottom: 5px;

    color: #064e3b;

    font-size: 15px;

    font-weight: 900;
}

.guarantee-left span {
    display: block;

    color: #64748b;

    font-size: 11px;
}

.guarantee-right {
    display: flex;

    align-items: center;

    gap: 22px;
}

.guarantee-right div {
    display: flex;

    align-items: center;

    gap: 6px;

    color: #047857;

    font-size: 11px;

    font-weight: 900;
}

.guarantee-right i {
    font-size: 14px;
}

@media (max-width: 1100px) {

    .data-security-layout {
        grid-template-columns: 40% 60%;

        padding: 42px;

        gap: 10px;
    }

    .security-information {
        padding-left: 38px;
    }

    .security-laptop {
        transform: scale(0.88);
    }

    .security-floating-badge {
        left: -5px;
    }

    .security-floating-certificate {
        right: -5px;
    }

    .security-trust-row {
        gap: 17px;
    }

}

@media (max-width: 991px) {

    .data-security-section {
        padding: 85px 0;
    }

    .data-security-heading {
        margin-bottom: 45px;
    }

    .data-security-heading h2 {
        font-size: 39px;
    }

    .data-security-layout {
        grid-template-columns: 1fr;

        gap: 38px;

        padding: 42px 36px;
    }

    .security-device-area {
        min-height: 430px;
    }

    .security-information {
        padding-left: 0;

        border-left: none;

        border-top: 1px solid #e6eee9;

        padding-top: 38px;
    }

    .security-intro h3 {
        font-size: 32px;
    }

    .security-intro > p {
        max-width: 750px;

        font-size: 15px;
    }

    .security-guarantee-bar {
        align-items: flex-start;

        flex-direction: column;
    }

    .guarantee-right {
        padding-left: 67px;
    }

}

@media (max-width: 767px) {

    .data-security-section {
        padding: 68px 0;
    }

    .data-security-heading {
        padding: 0 12px;

        margin-bottom: 35px;
    }

    .data-security-tag {
        padding: 8px 14px;

        font-size: 10px;
    }

    .data-security-heading h2 {
        font-size: 32px;

        letter-spacing: -0.6px;
    }

    .data-security-heading p {
        font-size: 14px;

        line-height: 1.7;
    }

    .data-security-layout {
        margin: 0 8px;

        padding: 30px 20px;

        border-radius: 24px;
    }

    .security-corner {
        width: 42px;
        height: 42px;
    }

    .security-corner::before {
        width: 42px;
    }

    .security-corner::after {
        height: 42px;
    }

    .security-corner-dot {
        width: 7px;
        height: 7px;
    }

    .security-dot-tl {
        top: 14px;
        left: 14px;
    }

    .security-dot-tr {
        top: 14px;
        right: 14px;
    }

    .security-dot-bl {
        bottom: 14px;
        left: 14px;
    }

    .security-dot-br {
        right: 14px;
        bottom: 14px;
    }

    .security-device-area {
        min-height: 365px;
    }

    .security-laptop {
        transform: scale(0.78);
    }

    .security-floating-badge {
        top: 55px;

        left: -2px;

        padding: 11px;
    }

    .security-floating-certificate {
        right: -2px;

        bottom: 55px;

        padding: 11px;
    }

    .floating-badge-icon,
    .security-floating-certificate > i {
        width: 36px;
        height: 36px;

        font-size: 14px;
    }

    .security-floating-badge strong,
    .security-floating-certificate strong {
        font-size: 11px;
    }

    .security-floating-badge span,
    .security-floating-certificate span {
        font-size: 9px;
    }

    .security-information {
        padding-top: 32px;
    }

    .security-intro {
        text-align: center;
    }

    .security-intro > span {
        justify-content: center;

        font-size: 10px;
    }

    .security-intro h3 {
        font-size: 28px;
    }

    .security-intro > p {
        font-size: 13px;

        line-height: 1.75;
    }

    .security-feature-card {
        align-items: flex-start;

        padding: 17px 40px 17px 13px;

        gap: 11px;
    }

    .feature-number {
        display: none;
    }

    .feature-icon {
        width: 44px;
        height: 44px;

        border-radius: 11px;

        font-size: 16px;
    }

    .feature-content h4 {
        font-size: 14px;
    }

    .feature-content p {
        font-size: 11px;

        line-height: 1.65;
    }

    .feature-check {
        top: 19px;
        right: 14px;
    }

    .security-trust-row {
        justify-content: center;

        flex-wrap: wrap;

        gap: 18px;
    }

    .security-trust-point strong {
        font-size: 11px;
    }

    .security-trust-point span {
        font-size: 9px;
    }

    .security-guarantee-bar {
        margin: 20px 8px 0;

        padding: 20px;

        border-radius: 17px;
    }

    .guarantee-left {
        align-items: flex-start;
    }

    .guarantee-icon {
        width: 45px;
        height: 45px;

        font-size: 17px;
    }

    .guarantee-left strong {
        font-size: 12px;

        line-height: 1.45;
    }

    .guarantee-left span {
        font-size: 10px;

        line-height: 1.55;
    }

    .guarantee-right {
        width: 100%;

        justify-content: center;

        padding-left: 0;

        gap: 17px;
    }

}

@media (max-width: 480px) {

    .data-security-section {
        padding: 58px 0;
    }

    .data-security-heading h2 {
        font-size: 28px;
    }

    .data-security-heading p {
        font-size: 13px;
    }

    .data-security-layout {
        padding: 25px 15px;
    }

    .security-corner {
        width: 34px;
        height: 34px;
    }

    .security-corner::before {
        width: 34px;
        height: 2px;
    }

    .security-corner::after {
        width: 2px;
        height: 34px;
    }

    .security-corner-dot {
        width: 6px;
        height: 6px;
    }

    .security-dot-tl {
        top: 11px;
        left: 11px;
    }

    .security-dot-tr {
        top: 11px;
        right: 11px;
    }

    .security-dot-bl {
        bottom: 11px;
        left: 11px;
    }

    .security-dot-br {
        right: 11px;
        bottom: 11px;
    }

    .security-device-area {
        min-height: 315px;
    }

    .security-laptop {
        transform: scale(0.66);
    }

    .security-floating-badge {
        top: 45px;

        left: -7px;
    }

    .security-floating-certificate {
        right: -7px;

        bottom: 43px;
    }

    .security-intro h3 {
        font-size: 25px;
    }

    .security-intro > p {
        font-size: 12px;
    }

    .security-feature-card {
        padding: 15px 36px 15px 11px;
    }

    .feature-icon {
        width: 39px;
        height: 39px;

        font-size: 14px;
    }

    .feature-content h4 {
        font-size: 12px;
    }

    .feature-content p {
        font-size: 10px;
    }

    .security-trust-point strong {
        font-size: 10px;
    }

    .security-trust-point span {
        font-size: 8px;
    }

    .guarantee-right {
        gap: 11px;
    }

    .guarantee-right div {
        font-size: 9px;
    }

}

@media (max-width: 380px) {

    .data-security-heading h2 {
        font-size: 25px;
    }

    .security-device-area {
        min-height: 290px;
    }

    .security-laptop {
        transform: scale(0.58);
    }

    .security-floating-badge {
        left: -12px;
    }

    .security-floating-certificate {
        right: -12px;
    }

    .security-intro h3 {
        font-size: 23px;
    }

    .security-feature-card {
        gap: 8px;
    }

    .feature-content h4 {
        font-size: 11px;
    }

    .feature-content p {
        font-size: 9px;
    }

    .guarantee-right {
        flex-wrap: wrap;
    }

}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 100px 0;
    background: #f8fafc;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;

    width: 360px;
    height: 360px;

    left: -180px;
    top: 80px;

    border-radius: 50%;

    background: rgba(5, 150, 105, 0.055);

    pointer-events: none;
}

.testimonials-section::after {
    content: "";
    position: absolute;

    width: 320px;
    height: 320px;

    right: -160px;
    bottom: 40px;

    border-radius: 50%;

    background: rgba(5, 150, 105, 0.045);

    pointer-events: none;
}

.testimonials-heading {
    position: relative;

    z-index: 2;

    margin-bottom: 58px;
}

.testimonials-tag {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-bottom: 14px;

    padding: 8px 17px;

    border-radius: 50px;

    background: rgba(5, 150, 105, 0.09);

    color: var(--primary-emerald);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.testimonials-heading h2 {
    margin: 0 0 13px;

    color: var(--dark-slate);

    font-size: 42px;
    font-weight: 900;

    line-height: 1.2;
}

.testimonials-heading h2 span {
    color: var(--primary-emerald);
}

.testimonials-heading p {
    max-width: 700px;

    margin: auto;

    color: #64748b;

    font-size: 16px;

    line-height: 1.8;
}

.testimonial-slider-wrapper {
    position: relative;

    z-index: 2;

    max-width: 1100px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 22px;
}

.testimonial-slider {
    position: relative;

    width: 100%;

    min-height: 390px;
}

.testimonial-card {
    display: none;

    width: 100%;
}

.testimonial-card.active {
    display: block;

    animation: testimonialFade 0.55s ease;
}

@keyframes testimonialFade {

    from {
        opacity: 0;
        transform: translateY(15px) scale(0.99);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.testimonial-card-inner {
    position: relative;

    display: flex;

    align-items: center;

    gap: 55px;

    min-height: 390px;

    padding: 48px 58px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 30px;

    box-shadow:
        0 25px 65px rgba(15, 23, 42, 0.10);

    overflow: hidden;

    isolation: isolate;
}

.testimonial-card-inner::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--primary-emerald),
            #34d399,
            #a7f3d0
        );

    z-index: 1;
}

.testimonial-card-inner::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -110px;
    top: -120px;

    border-radius: 50%;

    background: rgba(5, 150, 105, 0.055);

    z-index: -1;
}

.testimonial-image-wrap {
    position: relative;

    flex: 0 0 255px;

    width: 255px;
    height: 255px;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 3;
}

.testimonial-image-ring {
    width: 255px;
    height: 255px;

    padding: 8px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        conic-gradient(
            var(--primary-emerald),
            #6ee7b7,
            #d1fae5,
            var(--primary-emerald)
        );

    box-shadow:
        0 20px 45px rgba(5, 150, 105, 0.18);
}

.testimonial-image-border {
    width: 100%;
    height: 100%;

    padding: 7px;

    border-radius: 50%;

    background: #ffffff;
}

.testimonial-image-border img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid #ecfdf5;
}

.testimonial-quote-icon {
    position: absolute;

    right: -3px;
    bottom: 13px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-emerald);

    color: #ffffff;

    font-size: 20px;

    border: 5px solid #ffffff;

    box-shadow:
        0 10px 25px rgba(5, 150, 105, 0.28);

    z-index: 5;
}

.testimonial-content {
    position: relative;

    z-index: 3;

    flex: 1;

    min-width: 0;
}

.testimonial-review-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 19px;
}

.testimonial-review-label {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 11px;

    border-radius: 50px;

    background: #f0fdf4;

    color: var(--primary-emerald);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.8px;
}

.testimonial-stars {
    display: flex;

    align-items: center;

    gap: 4px;

    color: #f59e0b;

    font-size: 15px;
}

.testimonial-review-box {
    position: relative;

    padding: 25px 28px;

    margin-bottom: 25px;

    background: #f8fafc;

    border: 1px solid #edf2f7;

    border-radius: 17px;
}

.testimonial-review-box::before {
    content: "";

    position: absolute;

    left: 0;
    top: 18px;

    width: 4px;
    height: calc(100% - 36px);

    border-radius: 0 5px 5px 0;

    background: var(--primary-emerald);
}

.testimonial-text {
    margin: 0;

    color: #475569;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.85;
}

.testimonial-customer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.testimonial-customer h4 {
    margin: 0 0 5px;

    color: var(--dark-slate);

    font-size: 19px;

    font-weight: 900;
}

.testimonial-customer span {
    color: var(--primary-emerald);

    font-size: 12px;

    font-weight: 700;
}

.testimonial-customer-check {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ecfdf5;

    color: var(--primary-emerald);

    font-size: 13px;

    border: 1px solid #d1fae5;
}

.testimonial-arrow {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #dce5e9;

    border-radius: 50%;

    background: #ffffff;

    color: var(--primary-emerald);

    font-size: 14px;

    cursor: pointer;

    box-shadow:
        0 9px 25px rgba(15, 23, 42, 0.09);

    transition:
        all 0.3s ease;

    z-index: 10;
}

.testimonial-arrow:hover {
    background: var(--primary-emerald);

    color: #ffffff;

    border-color: var(--primary-emerald);

    transform: translateY(-3px);

    box-shadow:
        0 13px 28px rgba(5, 150, 105, 0.25);
}

.testimonial-dots {
    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 30px;
}

.testimonial-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #cbd5e1;

    cursor: pointer;

    transition: all 0.3s ease;
}

.testimonial-dot.active {
    width: 30px;

    border-radius: 20px;

    background: var(--primary-emerald);
}

.testimonial-trust {
    position: relative;

    z-index: 3;

    max-width: 1100px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin: 48px auto 0;

    padding: 24px 32px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(15, 23, 42, 0.06);
}

.testimonial-trust-item {
    display: flex;

    align-items: center;

    gap: 13px;

    flex: 1;
}

.testimonial-trust-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(5, 150, 105, 0.09);

    color: var(--primary-emerald);

    font-size: 17px;
}

.testimonial-trust-item strong {
    display: block;

    margin-bottom: 4px;

    color: var(--dark-slate);

    font-size: 14px;

    font-weight: 800;
}

.testimonial-trust-item span {
    display: block;

    color: #94a3b8;

    font-size: 11px;
}

.testimonial-trust-divider {
    width: 1px;
    height: 45px;

    background: #e2e8f0;
}

@media (max-width: 991px) {

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-heading {
        margin-bottom: 42px;
    }

    .testimonials-heading h2 {
        font-size: 36px;
    }

    .testimonial-slider-wrapper {
        gap: 14px;
    }

    .testimonial-card-inner {
        gap: 35px;

        min-height: 350px;

        padding: 38px 35px;
    }

    .testimonial-image-wrap,
    .testimonial-image-ring {
        width: 210px;
        height: 210px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-review-box {
        padding: 21px 23px;
    }

    .testimonial-trust {
        padding: 21px;
    }

}

@media (max-width: 767px) {

    .testimonials-section {
        padding: 65px 0;
    }

    .testimonials-heading {
        margin-bottom: 34px;
    }

    .testimonials-tag {
        font-size: 10px;

        padding: 7px 13px;
    }

    .testimonials-heading h2 {
        font-size: 30px;
    }

    .testimonials-heading p {
        padding: 0 12px;

        font-size: 14px;
    }

    .testimonial-slider-wrapper {
        display: block;

        padding: 0 8px;
    }

    .testimonial-slider {
        min-height: auto;
    }

    .testimonial-card-inner {
        min-height: auto;

        flex-direction: column;

        gap: 28px;

        padding: 34px 22px;

        border-radius: 24px;

        text-align: center;
    }

    .testimonial-image-wrap,
    .testimonial-image-ring {
        width: 190px;
        height: 190px;
    }

    .testimonial-quote-icon {
        right: -2px;
        bottom: 2px;

        width: 48px;
        height: 48px;

        font-size: 16px;
    }

    .testimonial-content {
        width: 100%;
    }

    .testimonial-review-top {
        flex-direction: column;

        gap: 11px;

        margin-bottom: 17px;
    }

    .testimonial-review-label {
        font-size: 9px;
    }

    .testimonial-stars {
        justify-content: center;
    }

    .testimonial-review-box {
        padding: 20px 18px;

        margin-bottom: 21px;

        text-align: left;
    }

    .testimonial-text {
        font-size: 14px;

        line-height: 1.8;
    }

    .testimonial-customer {
        text-align: left;
    }

    .testimonial-customer h4 {
        font-size: 17px;
    }

    .testimonial-arrow {
        position: absolute;

        top: 170px;

        width: 42px;
        height: 42px;

        z-index: 20;
    }

    .testimonial-prev {
        left: 0;
    }

    .testimonial-next {
        right: 0;
    }

    .testimonial-trust {
        flex-direction: column;

        align-items: stretch;

        gap: 16px;

        margin-top: 36px;

        padding: 21px;
    }

    .testimonial-trust-divider {
        width: 100%;
        height: 1px;
    }

}

@media (max-width: 480px) {

    .testimonials-section {
        padding: 52px 0;
    }

    .testimonials-heading h2 {
        font-size: 26px;
    }

    .testimonials-heading p {
        font-size: 13px;
    }

    .testimonial-card-inner {
        gap: 23px;

        padding: 28px 16px;

        border-radius: 21px;
    }

    .testimonial-image-wrap,
    .testimonial-image-ring {
        width: 170px;
        height: 170px;
    }

    .testimonial-quote-icon {
        width: 44px;
        height: 44px;

        font-size: 14px;
    }

    .testimonial-review-box {
        padding: 18px 16px;
    }

    .testimonial-text {
        font-size: 13px;

        line-height: 1.75;
    }

    .testimonial-customer h4 {
        font-size: 16px;
    }

    .testimonial-customer span {
        font-size: 11px;
    }

    .testimonial-customer-check {
        width: 34px;
        height: 34px;

        font-size: 11px;
    }

    .testimonial-arrow {
        top: 150px;

        width: 38px;
        height: 38px;

        font-size: 12px;
    }

    .testimonial-trust {
        padding: 18px;
    }

    .testimonial-trust-icon {
        width: 42px;
        height: 42px;
    }

    .testimonial-trust-item strong {
        font-size: 13px;
    }

}

@media (max-width: 380px) {

    .testimonials-heading h2 {
        font-size: 23px;
    }

    .testimonial-card-inner {
        padding: 24px 13px;
    }

    .testimonial-image-wrap,
    .testimonial-image-ring {
        width: 155px;
        height: 155px;
    }

    .testimonial-arrow {
        top: 138px;
    }

}

/* Partners Section */
.partners-section {

    position: relative;

    width: 100%;

    padding: 95px 0 90px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(5, 150, 105, 0.045),
            transparent 48%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafdfe 100%
        );

    overflow: hidden;
}

.partners-section::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -250px;
    top: 5%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(5, 150, 105, 0.075),
            transparent 70%
        );

    pointer-events: none;
}


.partners-section::after {

    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -220px;
    bottom: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(5, 150, 105, 0.065),
            transparent 70%
        );

    pointer-events: none;
}

.partners-heading {

    position: relative;

    z-index: 5;

    max-width: 850px;

    margin: 0 auto 58px;

    padding: 0 20px;
}

.partners-mini-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 7px 16px;

    margin-bottom: 16px;

    border-radius: 50px;

    background:
        rgba(5, 150, 105, 0.075);

    border: 1px solid
        rgba(5, 150, 105, 0.10);

    color: var(--primary-emerald);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.label-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: var(--primary-emerald);

    box-shadow:
        0 0 0 4px
        rgba(5, 150, 105, 0.08);
}

.partners-heading h2 {

    margin: 0 0 15px;

    color: var(--dark-slate);

    font-size: 44px;

    font-weight: 900;

    line-height: 1.15;

    letter-spacing: -1.2px;
}


.partners-heading h2 span {

    position: relative;

    display: inline-block;

    color: var(--primary-emerald);
}


.partners-heading h2 span::after {

    content: "";

    position: absolute;

    left: 5%;

    right: 5%;

    bottom: -7px;

    height: 2px;

    border-radius: 50%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(5, 150, 105, 0.35),
            transparent
        );
}


.partners-heading p {

    max-width: 680px;

    margin: 0 auto;

    color: #64748b;

    font-size: 16px;

    line-height: 1.75;
}

.partners-slider {

    position: relative;

    z-index: 4;

    width: 100%;

    overflow: hidden;

    padding: 25px 0 35px;
}

.partners-slider::before,
.partners-slider::after {

    content: "";

    position: absolute;

    top: 0;

    width: 190px;

    height: 100%;

    z-index: 10;

    pointer-events: none;
}


.partners-slider::before {

    left: 0;

    background:
        linear-gradient(
            to right,
            #ffffff 0%,
            rgba(255,255,255,0.96) 18%,
            rgba(255,255,255,0.65) 50%,
            transparent 100%
        );
}


.partners-slider::after {

    right: 0;

    background:
        linear-gradient(
            to left,
            #ffffff 0%,
            rgba(255,255,255,0.96) 18%,
            rgba(255,255,255,0.65) 50%,
            transparent 100%
        );
}

.partners-track {

    display: flex;

    align-items: center;

    width: max-content;

    gap: 32px;

    padding: 15px 0;

    will-change: transform;
}

.partner-item {

    flex: 0 0 235px;

    display: flex;

    align-items: center;

    justify-content: center;
}

/* .partner-logo-box {

    position: relative;

    width: 235px;

    height: 138px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 22px 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.99),
            rgba(247,252,250,0.96)
        );

    border: 1px solid
        rgba(15, 23, 42, 0.075);

    border-radius: 22px;

    box-shadow:
        0 15px 40px
        rgba(15, 23, 42, 0.055),

        0 3px 10px
        rgba(5, 150, 105, 0.025);

    overflow: hidden;

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
} */

.partner-logo-box {

    position: relative;

    width: 235px;
    height: 138px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 14px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f8fdfb 55%,
            #f1faf6 100%
        );

    border: 1.5px solid rgba(5, 150, 105, 0.35);

    border-radius: 26px;

    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.08),
        0 8px 24px rgba(5, 150, 105, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(5, 150, 105, 0.04);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.logo-top-line {

    position: absolute;

    left: 50%;

    top: 0;

    width: 0;

    height: 3px;

    transform:
        translateX(-50%);

    border-radius:
        0 0 10px 10px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary-emerald),
            transparent
        );

    transition:
        width 0.45s ease;
}

.logo-glow {

    position: absolute;

    width: 150px;

    height: 150px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(5, 150, 105, 0.055),
            transparent 68%
        );

    opacity: 0.7;

    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}

.logo-shine {

    position: absolute;

    top: -100%;

    left: -70%;

    width: 45%;

    height: 300%;

    transform:
        rotate(25deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.80),
            transparent
        );

    opacity: 0;

    z-index: 5;

    pointer-events: none;

    transition:
        left 0.9s ease,
        opacity 0.35s ease;
}

.logo-border-corner {

    position: absolute;

    width: 17px;

    height: 17px;

    opacity: 0.45;

    transition:
        width 0.35s ease,
        height 0.35s ease,
        opacity 0.35s ease;
}


.corner-tl {

    top: 13px;

    left: 13px;

    border-top:
        1px solid
        rgba(5, 150, 105, 0.35);

    border-left:
        1px solid
        rgba(5, 150, 105, 0.35);

    border-radius: 5px 0 0 0;
}


.corner-br {

    right: 13px;

    bottom: 13px;

    border-right:
        1px solid
        rgba(5, 150, 105, 0.35);

    border-bottom:
        1px solid
        rgba(5, 150, 105, 0.35);

    border-radius: 0 0 5px 0;
}

/* .logo-inner {

    position: relative;

    z-index: 4;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
} */

.logo-inner {

    position: relative;

    z-index: 4;

    width: 92%;
    height: 88%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 8px 12px;

    background: rgba(255, 255, 255, 0.85);

    border-radius: 16px;

    box-shadow:
        0 5px 16px rgba(15, 23, 42, 0.05),
        inset 0 0 0 1px rgba(5, 150, 105, 0.06);
}

/* .partner-logo-box img {

    width: 100%;

    max-width: 185px;

    height: 92px;

    object-fit: contain;

    display: block;

    opacity: 1;

    filter: none;

    transition:
        transform 0.5s cubic-bezier(.2,.8,.2,1),
        opacity 0.5s ease;
} */

.partner-logo-box img {

    width: 100%;

    max-width: 225px;

    height: 118px;

    object-fit: contain;

    display: block;

    opacity: 1;

    filter: none;

    transition:
        transform 0.35s ease;
}

/* .partner-logo-box:hover {

    transform:
        translateY(-10px)
        scale(1.025);

    border-color:
        rgba(5, 150, 105, 0.22);

    box-shadow:

        0 28px 60px
        rgba(5, 150, 105, 0.11),

        0 8px 20px
        rgba(15, 23, 42, 0.045);
} */

.partner-logo-box:hover {

    transform: translateY(-8px);

    border-color: rgba(5, 150, 105, 0.55);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(5, 150, 105, 0.16),
            rgba(255, 255, 255, 0.98) 55%
        );

    box-shadow:
        0 20px 45px rgba(5, 150, 105, 0.16),
        0 0 0 3px rgba(5, 150, 105, 0.06);
}

/* .partner-logo-box:hover .logo-top-line {

    width: 80px;
} */

.partner-logo-box:hover .logo-top-line {

    width: 100px;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #059669,
            #10b981,
            #059669,
            transparent
        );

    box-shadow:
        0 2px 12px rgba(5, 150, 105, 0.35);
}

.partner-logo-box:hover .logo-glow {

    transform:
        translate(-50%, -50%)
        scale(1.35);

    opacity: 1;
}


.partner-logo-box:hover .logo-shine {

    left: 150%;

    opacity: 1;
}


.partner-logo-box:hover .logo-border-corner {

    width: 24px;

    height: 24px;

    opacity: 0.85;
}


.partner-logo-box:hover img {

    opacity: 1;

    filter: none;

    transform:
        scale(1.06);
}

@media (max-width: 991px) {

    .partners-section {

        padding: 75px 0 70px;
    }


    .partners-heading {

        margin-bottom: 45px;
    }


    .partners-heading h2 {

        font-size: 37px;
    }


    .partners-heading p {

        font-size: 15px;
    }


    .partners-slider::before,
    .partners-slider::after {

        width: 120px;
    }


    .partners-track {

        gap: 25px;
    }


    .partner-item {

        flex-basis: 205px;
    }


    .partner-logo-box {

        width: 205px;

        height: 120px;

        padding: 18px;

        border-radius: 19px;
    }


    /* .partner-logo-box img {

        max-width: 160px;

        height: 78px;

        opacity: 1;

        filter: none;
    } */

    .partner-logo-box img {

        max-width: 190px;

        height: 95px;

        opacity: 1;

        filter: none;
    }
}

@media (max-width: 767px) {

    .partners-section {

        padding: 62px 0 58px;
    }


    .partners-heading {

        margin-bottom: 34px;

        padding: 0 18px;
    }


    .partners-mini-label {

        font-size: 9px;

        letter-spacing: 1.5px;

        padding: 6px 12px;

        gap: 7px;
    }


    .partners-heading h2 {

        font-size: 29px;

        letter-spacing: -0.5px;

        margin-bottom: 12px;
    }


    .partners-heading p {

        font-size: 13.5px;

        line-height: 1.65;
    }


    .partners-slider {

        padding: 18px 0 25px;
    }


    .partners-slider::before,
    .partners-slider::after {

        width: 65px;
    }


    .partners-track {

        gap: 18px;

        padding: 8px 0;
    }


    .partner-item {

        flex-basis: 165px;
    }


    .partner-logo-box {

        width: 165px;

        height: 105px;

        padding: 14px;

        border-radius: 17px;
    }


    /* .partner-logo-box img {

        max-width: 135px;

        height: 68px;

        opacity: 1;

        filter: none;
    } */

    .partner-logo-box img {

        max-width: 155px;

        height: 78px;

        opacity: 1;

        filter: none;
    }

    .logo-border-corner {

        width: 11px;

        height: 11px;
    }


    .corner-tl {

        top: 9px;

        left: 9px;
    }


    .corner-br {

        right: 9px;

        bottom: 9px;
    }
}

@media (max-width: 480px) {

    .partners-section {

        padding: 52px 0 48px;
    }


    .partners-heading {

        margin-bottom: 27px;

        padding: 0 15px;
    }


    .partners-mini-label {

        margin-bottom: 12px;

        font-size: 8px;

        letter-spacing: 1.3px;
    }


    .partners-heading h2 {

        font-size: 25px;

        line-height: 1.2;
    }


    .partners-heading p {

        font-size: 12.5px;
    }


    .partners-slider {

        padding: 15px 0 20px;
    }


    .partners-slider::before,
    .partners-slider::after {

        width: 38px;
    }


    .partners-track {

        gap: 14px;
    }


    .partner-item {

        flex-basis: 145px;
    }


    .partner-logo-box {

        width: 145px;

        height: 92px;

        padding: 11px;

        border-radius: 15px;
    }


    /* .partner-logo-box img {

        max-width: 118px;

        height: 60px;

        opacity: 1;

        filter: none;
    } */

    .partner-logo-box img {

        max-width: 140px;

        height: 70px;

        opacity: 1;

        filter: none;
    }

    .partner-logo-box:hover {

        transform:
            translateY(-6px)
            scale(1.015);
    }
}

/* Impact Section */
.impact-section {

    position: relative;

    width: 100%;

    padding: 105px 0 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(5, 150, 105, 0.055),
            transparent 42%
        ),

        linear-gradient(
            135deg,
            #f8fdfb 0%,
            #ffffff 48%,
            #f5fbf8 100%
        );
}

.impact-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);
}


.impact-orb-one {

    width: 520px;

    height: 520px;

    left: -320px;

    top: -80px;

    background:
        radial-gradient(
            circle,
            rgba(5,150,105,0.085),
            transparent 70%
        );
}


.impact-orb-two {

    width: 470px;

    height: 470px;

    right: -280px;

    bottom: -160px;

    background:
        radial-gradient(
            circle,
            rgba(5,150,105,0.075),
            transparent 70%
        );
}

.impact-grid {

    position: absolute;

    inset: 0;

    opacity: 0.35;

    pointer-events: none;

    background-image:

        linear-gradient(
            rgba(5,150,105,0.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(5,150,105,0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );
}

.impact-heading {

    position: relative;

    z-index: 5;

    max-width: 820px;

    margin: 0 auto 62px;

    padding: 0 18px;
}


.impact-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 8px 17px;

    margin-bottom: 17px;

    border-radius: 50px;

    color:
        var(--primary-emerald);

    background:
        rgba(5,150,105,0.075);

    border:
        1px solid
        rgba(5,150,105,0.12);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2.2px;

    text-transform: uppercase;
}


.impact-label span {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background:
        var(--primary-emerald);

    box-shadow:
        0 0 0 4px
        rgba(5,150,105,0.07);
}


.impact-heading h2 {

    margin: 0 0 16px;

    color:
        var(--dark-slate);

    font-size: 46px;

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -1.5px;
}


.impact-heading h2 strong {

    position: relative;

    color:
        var(--primary-emerald);

    font-weight: 900;
}


.impact-heading h2 strong::after {

    content: "";

    position: absolute;

    left: 4%;

    right: 4%;

    bottom: -8px;

    height: 2px;

    border-radius: 50%;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary-emerald),
            transparent
        );

    opacity: 0.4;
}


.impact-heading p {

    max-width: 680px;

    margin: 0 auto;

    color:
        #64748b;

    font-size: 15px;

    line-height: 1.8;
}

.impact-counters {

    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.impact-card {

    position: relative;

    min-height: 285px;

    padding: 35px 27px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        rgba(255,255,255,0.92);

    border:
        1px solid
        rgba(15,23,42,0.065);

    border-top:
        4px solid
        var(--primary-emerald);

    border-radius: 25px;

    overflow: hidden;

    box-shadow:

        0 15px 40px
        rgba(15,23,42,0.045),

        inset 0 1px 0
        rgba(255,255,255,0.9);

    transition:
        transform 0.5s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.5s ease,
        border-color 0.5s ease;
}

.impact-card::after {

    content: "";

    position: absolute;

    width: 210px;

    height: 210px;

    top: -110px;

    right: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(5,150,105,0.09),
            transparent 70%
        );

    transition:
        transform 0.6s ease;
}

.card-number-bg {

    position: absolute;

    top: 14px;

    right: 18px;

    color:
        rgba(5,150,105,0.045);

    font-size: 65px;

    font-weight: 900;

    line-height: 1;

    pointer-events: none;
}

.impact-icon {

    position: relative;

    z-index: 3;

    width: 68px;

    height: 68px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 21px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            var(--primary-emerald),
            #008f68
        );

    border:
        1px solid
        rgba(5,150,105,0.18);

    color:
        #ffffff;

    font-size: 26px;

    box-shadow:
        0 12px 28px
        rgba(5,150,105,0.18);

    transition: none;
}

.impact-content {

    position: relative;

    z-index: 4;
}

.counter-number {

    margin-bottom: 10px;

    color:
        var(--dark-slate);

    font-size: 42px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: -1.8px;

    transition:
        color 0.35s ease;
}


.impact-card:hover .counter-number {

    color:
        var(--primary-emerald);
}

.counter-unit {

    color:
        var(--dark-slate);

    font-size: 16px;

    font-weight: 850;

    line-height: 1.35;
}

.card-progress {

    position: absolute;

    left: 27px;

    right: 27px;

    bottom: 19px;

    height: 3px;

    overflow: hidden;

    border-radius: 20px;

    background:
        #edf3f0;
}


.card-progress span {

    display: block;

    width: 32%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            rgba(5,150,105,0.35),
            var(--primary-emerald)
        );

    transition:
        width 0.7s ease;
}

.impact-card:hover {

    transform:
        translateY(-11px);

    border-color:
        rgba(5,150,105,0.18);

    border-top-color:
        var(--primary-emerald);

    box-shadow:

        0 30px 65px
        rgba(5,150,105,0.10),

        0 10px 25px
        rgba(15,23,42,0.045);
}


.impact-card:hover::after {

    transform:
        scale(1.4);
}

.impact-card:hover .card-progress span {

    width: 75%;
}

@media (max-width: 991px) {

    .impact-section {

        padding: 78px 0 72px;
    }

    .impact-heading {

        margin-bottom: 45px;
    }

    .impact-heading h2 {

        font-size: 38px;
    }

    .impact-counters {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }

    .impact-card {

        min-height: 280px;
    }

    .counter-number {

        font-size: 38px;
    }
}

@media (max-width: 767px) {

    .impact-section {

        padding: 62px 0 58px;
    }

    .impact-heading {

        margin-bottom: 34px;

        padding: 0 17px;
    }

    .impact-label {

        font-size: 9px;

        letter-spacing: 1.5px;

        padding: 6px 13px;
    }

    .impact-heading h2 {

        font-size: 29px;

        letter-spacing: -0.6px;

        margin-bottom: 12px;
    }

    .impact-heading p {

        font-size: 13px;

        line-height: 1.65;
    }

    .impact-counters {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 13px;

        padding: 0 8px;
    }

    .impact-card {

        min-height: 235px;

        padding: 24px 14px 25px;

        border-radius: 19px;

        border-top-width: 3px;
    }

    .impact-icon {

        width: 56px;

        height: 56px;

        border-radius: 16px;

        font-size: 21px;

        margin-bottom: 18px;
    }

    .counter-number {

        font-size: 30px;

        letter-spacing: -1px;

        margin-bottom: 8px;
    }

    .counter-unit {

        font-size: 13px;
    }

    .card-number-bg {

        font-size: 48px;

        top: 12px;

        right: 14px;
    }

    .card-progress {

        left: 15px;

        right: 15px;

        bottom: 14px;
    }
}

@media (max-width: 480px) {

    .impact-section {

        padding: 52px 0 48px;
    }

    .impact-heading {

        margin-bottom: 28px;
    }

    .impact-heading h2 {

        font-size: 25px;
    }

    .impact-heading p {

        font-size: 12px;
    }

    .impact-counters {

        gap: 10px;

        padding: 0 6px;
    }

    .impact-card {

        min-height: 215px;

        padding: 20px 10px 22px;

        border-radius: 16px;

        border-top-width: 3px;
    }

    .impact-icon {

        width: 49px;

        height: 49px;

        border-radius: 14px;

        font-size: 18px;

        margin-bottom: 15px;
    }

    .counter-number {

        font-size: 25px;

        letter-spacing: -0.7px;
    }

    .counter-unit {

        font-size: 11.5px;
    }

    .card-number-bg {

        font-size: 42px;

        top: 10px;

        right: 11px;
    }

    .card-progress {

        left: 11px;

        right: 11px;

        bottom: 12px;
    }
}

/* Faq Section */
.faq-section {

    position: relative;
    width: 100%;

    padding: 110px 0 115px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(5, 150, 105, 0.11),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #f5fbf8 0%,
            #ffffff 48%,
            #f2faf6 100%
        );
}

.faq-decoration {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(3px);
}


.faq-decoration-one {

    width: 500px;
    height: 500px;

    left: -330px;
    top: -220px;

    background:
        radial-gradient(
            circle,
            rgba(5, 150, 105, 0.12),
            transparent 70%
        );
}


.faq-decoration-two {

    width: 520px;
    height: 520px;

    right: -330px;
    bottom: -250px;

    background:
        radial-gradient(
            circle,
            rgba(5, 150, 105, 0.10),
            transparent 70%
        );
}


.faq-pattern {

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0.28;

    background-image:

        linear-gradient(
            rgba(5, 150, 105, 0.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(5, 150, 105, 0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );
}

.faq-heading {

    position: relative;

    z-index: 5;

    max-width: 820px;

    margin: 0 auto 60px;

    padding: 0 18px;
}


.faq-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 8px 18px;

    margin-bottom: 17px;

    border-radius: 50px;

    color: var(--primary-emerald);

    background:
        rgba(5, 150, 105, 0.075);

    border:
        1px solid rgba(5, 150, 105, 0.13);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2.4px;

    text-transform: uppercase;
}


.faq-label span {

    width: 5px;

    height: 5px;

    flex: 0 0 5px;

    border-radius: 50%;

    background:
        var(--primary-emerald);

    box-shadow:
        0 0 0 4px rgba(5, 150, 105, 0.07);
}


.faq-heading h2 {

    margin: 0 0 16px;

    color:
        var(--dark-slate);

    font-size: 46px;

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -1.6px;
}


.faq-heading h2 strong {

    position: relative;

    color:
        var(--primary-emerald);

    font-weight: 900;
}


.faq-heading h2 strong::after {

    content: "";

    position: absolute;

    left: 5%;

    right: 5%;

    bottom: -8px;

    height: 2px;

    border-radius: 50%;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary-emerald),
            transparent
        );

    opacity: 0.4;
}


.faq-heading p {

    max-width: 670px;

    margin: 0 auto;

    color: #64748b;

    font-size: 15px;

    line-height: 1.8;
}

.faq-list {

    position: relative;

    z-index: 5;

    width: min(940px, 100%);

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.faq-card {

    position: relative;

    overflow: hidden;

    border:
        1px solid rgba(5, 150, 105, 0.14);

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fcfa 100%
        );

    box-shadow:

        0 12px 35px
        rgba(15, 23, 42, 0.055),

        0 4px 14px
        rgba(5, 150, 105, 0.045),

        inset 0 1px 0
        rgba(255,255,255,0.95);

    transition:
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.faq-card::before {

    content: "";

    position: absolute;

    left: 5%;

    right: 5%;

    top: 0;

    height: 3px;

    border-radius:
        0 0 20px 20px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary-emerald),
            transparent
        );

    opacity: 0.85;
}

.faq-card::after {

    content: "";

    position: absolute;

    left: 0;

    top: 15px;

    bottom: 15px;

    width: 4px;

    border-radius:
        0 10px 10px 0;

    background:
        var(--primary-emerald);

    opacity: 0.75;
}

.faq-card:hover {

    border-color:
        rgba(5, 150, 105, 0.25);

    box-shadow:

        0 18px 42px
        rgba(5, 150, 105, 0.09),

        0 5px 16px
        rgba(15, 23, 42, 0.045);
}

.faq-card.active {

    border-color:
        rgba(5, 150, 105, 0.30);

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f1faf6 100%
        );

    box-shadow:

        0 22px 50px
        rgba(5, 150, 105, 0.11),

        0 7px 20px
        rgba(15, 23, 42, 0.045);
}

.faq-question {

    position: relative;

    z-index: 3;

    width: 100%;

    min-height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 18px 25px;

    border: none;

    outline: none;

    cursor: pointer;

    background: transparent;

    text-align: left;
}


.faq-question-content {

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 18px;
}

.faq-number {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 46px;

    border-radius: 14px;

    color:
        var(--primary-emerald);

    background:
        linear-gradient(
            145deg,
            #effaf6,
            #e5f6ef
        );

    border:
        1px solid
        rgba(5, 150, 105, 0.14);

    font-size: 11px;

    font-weight: 900;

    box-shadow:
        0 5px 14px
        rgba(5, 150, 105, 0.055);
}

.faq-title {

    color:
        var(--dark-slate);

    font-size: 15.5px;

    font-weight: 800;

    line-height: 1.45;

    transition:
        color 0.25s ease;
}


.faq-card.active .faq-title {

    color:
        var(--primary-emerald);
}

.faq-icon {

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 44px;

    border-radius: 14px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--primary-emerald),
            #008f68
        );

    border:
        1px solid
        var(--primary-emerald);

    font-size: 12px;

    box-shadow:

        0 9px 22px
        rgba(5, 150, 105, 0.20);

    transition:
        transform 0.4s
        cubic-bezier(.2,.8,.2,1);
}

.faq-card.active .faq-icon {

    transform:
        rotate(180deg);

    box-shadow:

        0 10px 25px
        rgba(5, 150, 105, 0.24);
}

.faq-answer {

    display: grid;

    grid-template-rows: 0fr;

    opacity: 0;

    transition:

        grid-template-rows
        0.45s
        cubic-bezier(.4,0,.2,1),

        opacity 0.35s ease;
}


.faq-card.active .faq-answer {

    grid-template-rows: 1fr;

    opacity: 1;
}


.faq-answer-content {

    min-height: 0;

    overflow: hidden;

    padding: 0 89px;

    transition:

        padding
        0.45s
        cubic-bezier(.4,0,.2,1);
}


.faq-card.active .faq-answer-content {

    padding:
        0 89px 28px 89px;
}

.faq-answer-content p {

    margin: 0;

    color:
        #64748b;

    font-size: 13.5px;

    font-weight: 600;

    line-height: 1.85;
}

@media (max-width: 991px) {

    .faq-section {

        padding:
            82px 0 88px;
    }


    .faq-heading {

        margin-bottom:
            46px;
    }


    .faq-heading h2 {

        font-size:
            38px;
    }


    .faq-list {

        padding:
            0 15px;

        gap:
            14px;
    }


    .faq-question {

        min-height:
            80px;
    }


    .faq-answer-content {

        padding:
            0 82px;
    }


    .faq-card.active .faq-answer-content {

        padding:
            0 82px 24px;
    }

}

@media (max-width: 767px) {

    .faq-section {

        padding:
            64px 0 66px;
    }


    .faq-heading {

        margin-bottom:
            35px;

        padding:
            0 17px;
    }


    .faq-label {

        padding:
            6px 13px;

        gap:
            8px;

        font-size:
            8px;

        letter-spacing:
            1.4px;
    }


    .faq-heading h2 {

        font-size:
            29px;

        letter-spacing:
            -0.6px;

        margin-bottom:
            12px;
    }


    .faq-heading p {

        font-size:
            13px;

        line-height:
            1.7;
    }


    .faq-list {

        gap:
            11px;

        padding:
            0 8px;
    }


    .faq-card {

        border-radius:
            17px;
    }


    .faq-card::after {

        top:
            12px;

        bottom:
            12px;

        width:
            3px;
    }


    .faq-question {

        min-height:
            70px;

        padding:
            14px;

        gap:
            10px;
    }


    .faq-question-content {

        gap:
            11px;
    }


    .faq-number {

        width:
            35px;

        height:
            35px;

        flex-basis:
            35px;

        border-radius:
            10px;

        font-size:
            9px;
    }


    .faq-title {

        font-size:
            12.5px;

        line-height:
            1.42;
    }


    .faq-icon {

        width:
            33px;

        height:
            33px;

        flex-basis:
            33px;

        border-radius:
            11px;

        font-size:
            10px;
    }


    .faq-answer-content {

        padding:
            0 60px;
    }


    .faq-card.active .faq-answer-content {

        padding:
            0 60px 20px;
    }


    .faq-answer-content p {

        font-size:
            11.5px;

        font-weight:
            600;

        line-height:
            1.7;
    }

}

@media (max-width: 480px) {

    .faq-section {

        padding:
            53px 0 56px;
    }


    .faq-heading {

        margin-bottom:
            29px;
    }


    .faq-heading h2 {

        font-size:
            25px;
    }


    .faq-heading p {

        font-size:
            12px;
    }


    .faq-list {

        gap:
            9px;

        padding:
            0 6px;
    }


    .faq-card {

        border-radius:
            15px;
    }


    .faq-card::after {

        top:
            10px;

        bottom:
            10px;

        width:
            3px;
    }


    .faq-question {

        min-height:
            63px;

        padding:
            12px 11px;

        gap:
            7px;
    }


    .faq-question-content {

        gap:
            8px;
    }


    .faq-number {

        width:
            29px;

        height:
            29px;

        flex-basis:
            29px;

        border-radius:
            8px;

        font-size:
            8px;
    }


    .faq-title {

        font-size:
            11.3px;

        line-height:
            1.4;
    }


    .faq-icon {

        width:
            28px;

        height:
            28px;

        flex-basis:
            28px;

        border-radius:
            9px;

        font-size:
            9px;
    }


    .faq-answer-content {

        padding:
            0 48px;
    }


    .faq-card.active .faq-answer-content {

        padding:
            0 48px 16px;
    }


    .faq-answer-content p {

        font-size:
            10.3px;

        font-weight:
            600;

        line-height:
            1.65;
    }

}

/* Contact Page Section */
.contact-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(5, 150, 105, 0.1),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(16, 185, 129, 0.08),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f3f8f6 100%
        );
    overflow: hidden;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
}

.contact-shape.shape-1 {
    width: 320px;
    height: 320px;
    background: rgba(5, 150, 105, 0.07);
    top: -50px;
    left: -50px;
}

.contact-shape.shape-2 {
    width: 380px;
    height: 380px;
    background: rgba(16, 185, 129, 0.06);
    bottom: -60px;
    right: -60px;
}

.container {
    position: relative;
    z-index: 1;
}

.contact-heading {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.contact-mini-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.18);
    color: var(--primary-emerald);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.06);
    transition: transform 0.3s ease;
}

.contact-mini-label:hover {
    transform: scale(1.03);
}

.contact-mini-label > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-emerald);
    box-shadow: 0 0 0 5px rgba(5, 150, 105, 0.14);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.3); }
    70% { box-shadow: 0 0 0 7px rgba(5, 150, 105, 0); }
    100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.contact-heading h2,
.location-heading h2 {
    margin: 0 0 16px;
    color: var(--dark-slate);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.contact-heading h2 span,
.location-heading h2 span {
    color: var(--primary-emerald);
    position: relative;
    display: inline-block;
}

.contact-heading h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 8px;
    background: rgba(5, 150, 105, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.contact-heading p,
.location-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #64748b;
    font-size: 16.5px;
    line-height: 1.75;
}

.contact-info-card {
    position: relative;
    height: 100%;
    padding: 44px;
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f2faf6
        );
    border: 1px solid rgba(5, 150, 105, 0.15);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.05),
        0 8px 25px rgba(5, 150, 105, 0.05);
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-info-card:hover {
    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.09),
        0 12px 35px rgba(5, 150, 105, 0.12);
    transform: translateY(-6px);
    border-color: rgba(5, 150, 105, 0.3);
}

.contact-info-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.09);
    transition: transform 0.6s ease;
}

.contact-info-card:hover::before {
    transform: scale(1.15) rotate(15deg);
}

.contact-card-heading {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.contact-icon-main {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-emerald), #047857);
    color: #ffffff;
    font-size: 24px;
    box-shadow:
        0 12px 28px rgba(5, 150, 105, 0.35);
    transition: transform 0.4s ease;
}

.contact-info-card:hover .contact-icon-main {
    transform: scale(1.08) rotate(-5deg);
}

.contact-card-heading h3 {
    margin: 0 0 5px;
    color: var(--dark-slate);
    font-size: 23px;
    font-weight: 850;
}

.contact-card-heading p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.contact-info-list {
    position: relative;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
    transition: transform 0.35s ease;
}

.contact-info-item:hover {
    transform: translateX(6px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary-emerald);
    background: rgba(5, 150, 105, 0.09);
    font-size: 18px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.05);
}

.contact-info-item:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--primary-emerald), #047857);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(5, 150, 105, 0.3);
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-content span {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.contact-info-content strong,
.contact-info-content a {
    color: var(--dark-slate);
    font-size: 16px;
    font-weight: 750;
    text-decoration: none;
}

.contact-info-content a {
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--primary-emerald);
}

.contact-info-bottom {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(5, 150, 105, 0.07);
    border: 1px solid rgba(5, 150, 105, 0.15);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.03);
}

.contact-bottom-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffffff;
    color: var(--primary-emerald);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.1);
}

.contact-info-bottom strong {
    display: block;
    color: var(--dark-slate);
    font-size: 14px;
    margin-bottom: 3px;
    font-weight: 800;
}

.contact-info-bottom p {
    margin: 0;
    color: #64748b;
    font-size: 12.5px;
}

.contact-form-card {
    height: 100%;
    padding: 44px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.05),
        0 8px 25px rgba(5, 150, 105, 0.03);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form-card:hover {
    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.09);
    transform: translateY(-4px);
}

.form-heading {
    margin-bottom: 30px;
}

.form-small-title {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-emerald);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.form-heading h3 {
    margin: 0 0 8px;
    color: var(--dark-slate);
    font-size: 28px;
    font-weight: 900;
}

.form-heading h3 span {
    color: var(--primary-emerald);
}

.form-heading p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-slate);
    font-size: 13px;
    font-weight: 800;
}

.input-wrap {
    position: relative;
}

.input-wrap > i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-emerald);
    font-size: 15px;
    z-index: 2;
    transition: all 0.3s ease;
}

.input-wrap input,
.input-wrap textarea {
    width: 100%;
    border: 1.5px solid #dce4ed;
    background: #f8fafc;
    border-radius: 14px;
    color: var(--dark-slate);
    font-size: 14.5px;
    outline: none;
    transition: all 0.35s ease;
}

.input-wrap input {
    height: 56px;
    padding: 0 18px 0 48px;
}

.input-wrap textarea {
    min-height: 140px;
    padding: 16px 18px 16px 48px;
    resize: vertical;
}

.input-wrap textarea + i {
    top: 24px;
    transform: none;
}

.input-wrap input:focus,
.input-wrap textarea:focus {
    border-color: var(--primary-emerald);
    background: #ffffff;
    box-shadow:
        0 0 0 5px rgba(5, 150, 105, 0.12);
}

.input-wrap input:focus + i,
.input-wrap textarea:focus + i {
    color: #047857;
    transform: scale(1.1) translateY(-50%);
}

.input-wrap textarea:focus + i {
    transform: scale(1.1);
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
    color: #94a3b8;
}

.contact-submit-btn {
    width: 100%;
    min-height: 58px;
    margin-top: 10px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-emerald), #047857);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow:
        0 12px 30px rgba(5, 150, 105, 0.3);
}

.contact-submit-btn i {
    transition: transform 0.35s ease;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-4px);
    box-shadow:
        0 18px 38px rgba(5, 150, 105, 0.4);
}

.contact-submit-btn:hover i {
    transform: translateX(6px);
}

.location-section {
    position: relative;
    padding: 120px 0;
    background: #f8fafc;
    overflow: hidden;
}

.location-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.location-map-card {
    position: relative;
    padding: 12px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 24px 65px rgba(15, 23, 42, 0.08),
        0 8px 20px rgba(5, 150, 105, 0.03);
    transition: all 0.4s ease;
}

.location-map-card:hover {
    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.12);
}

.location-map {
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 22px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(10%) contrast(105%);
    transition: filter 0.4s ease;
}

.location-map:hover iframe {
    filter: grayscale(0%);
}

@media (max-width: 991px) {

    .contact-section,
    .location-section {
        padding: 85px 0;
    }

    .contact-heading {
        margin-bottom: 45px;
    }

    .contact-heading h2,
    .location-heading h2 {
        font-size: 38px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 35px;
    }

    .location-map {
        height: 410px;
    }
}


@media (max-width: 767px) {

    .contact-section,
    .location-section {
        padding: 65px 0;
    }

    .contact-heading {
        padding: 0 15px;
        margin-bottom: 35px;
    }

    .contact-mini-label {
        font-size: 9.5px;
        letter-spacing: 1.5px;
        padding: 6px 14px;
    }

    .contact-heading h2,
    .location-heading h2 {
        font-size: 30px;
    }

    .contact-heading p,
    .location-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .contact-card-heading {
        margin-bottom: 25px;
    }

    .contact-card-heading h3 {
        font-size: 19px;
    }

    .contact-info-item {
        padding: 16px 0;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .contact-info-content strong,
    .contact-info-content a {
        font-size: 14.5px;
    }

    .form-heading h3 {
        font-size: 24px;
    }

    .location-heading {
        margin-bottom: 32px;
    }

    .location-map-card {
        padding: 8px;
        border-radius: 24px;
    }

    .location-map {
        height: 340px;
        border-radius: 18px;
    }
}


@media (max-width: 480px) {

    .contact-section,
    .location-section {
        padding: 55px 0;
    }

    .contact-heading h2,
    .location-heading h2 {
        font-size: 26px;
    }

    .contact-heading p,
    .location-heading p {
        font-size: 13px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 22px 16px;
    }

    .contact-card-heading {
        gap: 12px;
    }

    .contact-icon-main {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .contact-card-heading h3 {
        font-size: 17px;
    }

    .contact-card-heading p {
        font-size: 12px;
    }

    .contact-info-bottom {
        padding: 15px;
        gap: 12px;
    }

    .form-heading h3 {
        font-size: 22px;
    }

    .input-wrap input {
        height: 50px;
    }

    .location-map {
        height: 280px;
    }
}

/* Contact Page Feedback Section */
.contact-feedback-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 88% 7%,
            rgba(16,185,129,.11),
            transparent 30%
        ),
        radial-gradient(
            circle at 7% 92%,
            rgba(37,99,235,.05),
            transparent 27%
        ),
        #f7fbf9;
}

.contact-feedback-section::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -215px;
    top: 75px;
    border: 1px solid rgba(5,150,105,.10);
    border-radius: 50%;
    pointer-events: none;
}

.contact-feedback-section::after {
    content: "";
    position: absolute;
    width: 290px;
    height: 290px;
    left: -170px;
    bottom: 50px;
    border-radius: 50%;
    background: rgba(16,185,129,.045);
    pointer-events: none;
}

.feedback-main-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .90fr 1.10fr;
    align-items: center;
    gap: 58px;
}

.feedback-intro {
    max-width: 580px;
}

.feedback-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    border: 1px solid rgba(5,150,105,.18);
    border-radius: 50px;
    background: #ecfdf5;
    color: #047857;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.feedback-top-badge i {
    font-size: 12px;
}

.feedback-intro h2 {
    margin: 20px 0 0;
    color: #0f172a;
    font-size: clamp(43px,4.8vw,68px);
    line-height: 1.03;
    letter-spacing: -3px;
    font-weight: 900;
}

.feedback-intro h2 span {
    color: #059669;
}

.feedback-intro > p {
    max-width: 520px;
    margin: 20px 0 0;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

.feedback-trust-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 30px;
}

.feedback-trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 15px;
    border: 1px solid #dceee5;
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 10px 28px rgba(15,23,42,.035);
    transition: .3s ease;
}

.feedback-trust-item:hover {
    border-color: #a9dcc1;
    transform: translateX(4px);
    box-shadow: 0 14px 30px rgba(5,150,105,.06);
}

.feedback-trust-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 16px;
}

.feedback-trust-icon.green {
    background: #ecfdf5;
    color: #059669;
}

.feedback-trust-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.feedback-trust-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.feedback-trust-item strong {
    display: block;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.feedback-trust-item span {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 10px;
    line-height: 1.5;
}

.feedback-rating-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    margin-top: 25px;
    padding: 15px 18px;
    border: 1px solid #eadfbe;
    border-radius: 17px;
    background: linear-gradient(
        135deg,
        #fffdf5,
        #fffaf0
    );
    box-shadow: 0 12px 30px rgba(245,158,11,.06);
}

.rating-highlight-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(15,23,42,.05);
}

.rating-highlight-stars i {
    color: #f59e0b;
    font-size: 12px;
}

.feedback-rating-highlight strong {
    display: block;
    color: #0f172a;
    font-size: 12px;
    font-weight: 900;
}

.feedback-rating-highlight span {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 10px;
}

.feedback-form-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid #d7ebe1;
    border-radius: 30px;
    background: #fff;
    box-shadow:
        0 35px 90px rgba(5,150,105,.11),
        0 12px 35px rgba(15,23,42,.045);
}

.feedback-form-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    right: -95px;
    top: -95px;
    border-radius: 50%;
    background: rgba(16,185,129,.055);
    pointer-events: none;
}

.feedback-form-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    left: -60px;
    bottom: -60px;
    border: 1px solid rgba(5,150,105,.10);
    border-radius: 50%;
    pointer-events: none;
}

.feedback-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #047857,
        #059669,
        #34d399
    );
}

.feedback-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.feedback-header-content > span {
    display: block;
    color: #059669;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.feedback-header-content h3 {
    margin: 6px 0 0;
    color: #0f172a;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}

.feedback-header-content p {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.6;
}

.feedback-header-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9eee2;
    border-radius: 17px;
    background: linear-gradient(
        135deg,
        #ecfdf5,
        #f6fffa
    );
    color: #059669;
    font-size: 25px;
    box-shadow: 0 10px 24px rgba(5,150,105,.07);
}

.feedback-quick-rating {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding: 13px 14px;
    border: 1px solid #e8eee9;
    border-radius: 15px;
    background: #f9fcfa;
}

.feedback-quick-rating-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #fff7ed;
    color: #f59e0b;
    font-size: 15px;
}

.feedback-quick-rating strong {
    display: block;
    color: #0f172a;
    font-size: 12px;
    font-weight: 900;
}

.feedback-quick-rating > div:nth-child(2) span {
    display: block;
    margin-top: 2px;
    color: #94a3b8;
    font-size: 9px;
}

.feedback-mini-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-left: auto;
    padding: 7px 9px;
    border-radius: 10px;
    background: #fff;
}

.feedback-mini-stars i {
    color: #f59e0b;
    font-size: 9px;
}

.feedback-field-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

.feedback-field {
    margin-bottom: 18px;
}

.feedback-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
}

.feedback-field label small {
    color: #94a3b8;
    font-size: 9px;
    font-weight: 700;
}

.feedback-input-wrap {
    position: relative;
}

.feedback-input-wrap > i {
    position: absolute;
    left: 16px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
    transition: .25s ease;
}

.feedback-input-wrap input {
    width: 100%;
    height: 53px;
    border: 1px solid #d8e6de;
    border-radius: 14px;
    outline: 0;
    background: #fbfdfc;
    color: #0f172a;
    padding: 14px 15px 14px 46px;
    font-size: 14px;
    transition: .3s ease;
}

.feedback-input-wrap input::placeholder {
    color: #a0aec0;
}

.feedback-input-wrap input:focus {
    border-color: #059669;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(5,150,105,.07);
}

.feedback-input-wrap:focus-within > i {
    color: #059669;
}

.feedback-rating-panel {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
    padding: 19px;
    border: 1px solid #dcebe3;
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 95% 5%,
            rgba(245,158,11,.08),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #fbfefc,
            #f7fcf9
        );
}

.feedback-rating-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.feedback-rating-top > div:first-child span {
    display: block;
    color: #94a3b8;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.feedback-rating-top > div:first-child strong {
    display: block;
    margin-top: 4px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.feedback-rating-text {
    min-width: 110px;
    padding: 8px 11px;
    border: 1px solid #e1e9e4;
    border-radius: 10px;
    background: #fff;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
}

.feedback-stars {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback-star {
    position: relative;
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce5df;
    border-radius: 13px;
    background: #fff;
    color: #d1d9d4;
    cursor: pointer;
    font-size: 17px;
    transition: all .25s ease;
}

.feedback-star span {
    position: absolute;
    right: 5px;
    bottom: 4px;
    color: #b6c0ba;
    font-size: 7px;
    font-weight: 900;
}

.feedback-star:hover {
    border-color: #f5c86a;
    background: #fffaf1;
    color: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 9px 19px rgba(245,158,11,.11);
}

.feedback-star:hover span {
    color: #d97706;
}

.feedback-star.active {
    border-color: #f3c364;
    background: linear-gradient(
        135deg,
        #fffaf0,
        #fff6df
    );
    color: #f59e0b;
    box-shadow: 0 9px 19px rgba(245,158,11,.10);
}

.feedback-star.active span {
    color: #d97706;
}

.feedback-rating-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 9px;
}

.feedback-rating-scale span {
    color: #94a3b8;
    font-size: 9px;
    font-weight: 700;
}

.feedback-message-field {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.feedback-textarea-wrap {
    position: relative;
}

.feedback-textarea-wrap > i {
    position: absolute;
    left: 16px;
    top: 17px;
    z-index: 2;
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
    transition: .25s ease;
}

.feedback-textarea-wrap textarea {
    width: 100%;
    min-height: 145px;
    resize: vertical;
    border: 1px solid #d8e6de;
    border-radius: 15px;
    outline: 0;
    background: #fbfdfc;
    color: #0f172a;
    padding: 15px 16px 34px 46px;
    font-size: 14px;
    line-height: 1.6;
    transition: .3s ease;
}

.feedback-textarea-wrap textarea::placeholder {
    color: #a0aec0;
}

.feedback-textarea-wrap textarea:focus {
    border-color: #059669;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(5,150,105,.07);
}

.feedback-textarea-wrap:focus-within > i {
    color: #059669;
}

.feedback-character-hint {
    position: absolute;
    right: 12px;
    bottom: 10px;
    color: #a0aaa4;
    font-size: 8px;
    font-weight: 700;
}

.feedback-submit-area {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 2px;
}

.feedback-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 10px;
    line-height: 1.4;
}

.feedback-note-icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #ecfdf5;
    color: #059669;
    font-size: 12px;
}

.feedback-submit-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 13px 23px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #047857,
        #059669,
        #10b981
    );
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 29px rgba(5,150,105,.20);
    transition: all .3s ease;
}

.feedback-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(5,150,105,.26);
}

.feedback-submit-btn i {
    font-size: 11px;
    transition: transform .25s ease;
}

.feedback-submit-btn:hover i {
    transform: translateX(4px);
}

.feedback-submit-btn:disabled {
    opacity: .72;
    cursor: not-allowed;
    transform: none;
}

.feedback-success {
    position: relative;
    z-index: 2;
    display: none;
    align-items: center;
    gap: 13px;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid #bde5cd;
    border-radius: 17px;
    background: linear-gradient(
        135deg,
        #f0fdf4,
        #f7fff9
    );
    text-align: left;
}

.feedback-success.show {
    display: flex;
    animation: feedbackSuccess .35s ease;
}

.feedback-success-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #059669;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 9px 20px rgba(5,150,105,.17);
}

.feedback-success strong {
    display: block;
    color: #166534;
    font-size: 13px;
    font-weight: 900;
}

.feedback-success span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 10px;
    line-height: 1.5;
}

@keyframes feedbackSuccess {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media (max-width:991px) {

    .contact-feedback-section {
        padding: 85px 0;
    }

    .feedback-main-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feedback-intro {
        max-width: 760px;
    }

    .feedback-intro h2 {
        font-size: 53px;
    }

    .feedback-form-card {
        max-width: 780px;
        width: 100%;
        margin: 0 auto;
    }

}

@media (max-width:767px) {

    .contact-feedback-section {
        padding: 65px 0 75px;
    }

    .feedback-intro h2 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .feedback-intro > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .feedback-rating-highlight {
        width: 100%;
    }

    .feedback-form-card {
        padding: 24px 18px;
        border-radius: 23px;
    }

    .feedback-card-header {
        align-items: flex-start;
    }

    .feedback-header-content h3 {
        font-size: 22px;
    }

    .feedback-header-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        font-size: 21px;
    }

    .feedback-quick-rating {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .feedback-mini-stars {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }

    .feedback-field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feedback-rating-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .feedback-rating-text {
        width: fit-content;
    }

    .feedback-stars {
        justify-content: space-between;
        gap: 6px;
    }

    .feedback-star {
        width: 42px;
        height: 42px;
        font-size: 15px;
        border-radius: 11px;
    }

    .feedback-submit-area {
        align-items: stretch;
        flex-direction: column;
    }

    .feedback-submit-btn {
        width: 100%;
    }

}

@media (max-width:480px) {

    .contact-feedback-section {
        padding: 55px 0 65px;
    }

    .feedback-top-badge {
        padding: 8px 12px;
        font-size: 9px;
    }

    .feedback-intro h2 {
        font-size: 33px;
        letter-spacing: -1.3px;
    }

    .feedback-trust-item {
        padding: 12px;
    }

    .feedback-trust-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
        font-size: 14px;
    }

    .feedback-rating-highlight {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .rating-highlight-stars {
        width: fit-content;
    }

    .feedback-form-card {
        padding: 20px 14px;
        border-radius: 20px;
    }

    .feedback-card-header {
        gap: 12px;
    }

    .feedback-header-content h3 {
        font-size: 20px;
    }

    .feedback-header-content p {
        font-size: 10px;
    }

    .feedback-header-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 18px;
    }

    .feedback-quick-rating {
        padding: 11px;
    }

    .feedback-quick-rating-icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
    }

    .feedback-quick-rating strong {
        font-size: 11px;
    }

    .feedback-mini-stars {
        gap: 3px;
        padding: 6px 8px;
    }

    .feedback-mini-stars i {
        font-size: 8px;
    }

    .feedback-rating-panel {
        padding: 14px;
    }

    .feedback-stars {
        gap: 5px;
    }

    .feedback-star {
        width: 37px;
        height: 37px;
        font-size: 13px;
    }

    .feedback-star span {
        right: 4px;
        bottom: 3px;
        font-size: 6px;
    }

    .feedback-input-wrap input {
        height: 50px;
        font-size: 13px;
    }

    .feedback-textarea-wrap textarea {
        min-height: 125px;
        font-size: 13px;
    }

    .feedback-note {
        font-size: 9px;
    }

}

.contact-feedback-section *,
.contact-feedback-section *::before,
.contact-feedback-section *::after {
    box-sizing: border-box;
}

.contact-feedback-section button,
.contact-feedback-section input,
.contact-feedback-section textarea {
    font-family: inherit;
}

/* Rate List Page Section */
/* .live-rates-section {
    padding: 110px 0 100px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.live-rates-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -180px;
    background: rgba(5, 150, 105, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.live-rates-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -250px;
    left: -180px;
    background: rgba(217, 119, 6, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.rates-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.rates-title-area {
    max-width: 780px;
}

.rates-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    background: rgba(5, 150, 105, 0.09);
    border: 1px solid rgba(5, 150, 105, 0.18);
    color: #047857;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #059669;
    box-shadow: 0 0 0 5px rgba(5, 150, 105, 0.10);
}

.rates-title-area h1 {
    margin: 0;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
    color: #0f172a;
}

.rates-title-area h1 span {
    color: #059669;
    display: inline-block;
}

.rates-title-area p {
    margin: 22px 0 0;
    max-width: 690px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.8;
}

.rates-status {
    min-width: 190px;
    padding: 17px 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

.status-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-ring span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #059669;
    box-shadow: 0 0 0 6px rgba(5, 150, 105, 0.12);
    animation: livePulse 1.8s infinite;
}

.rates-status strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
}

.rates-status small {
    display: block;
    color: #64748b;
    margin-top: 3px;
    font-size: 12px;
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.65;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.rates-search {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
    margin-bottom: 30px;
}

.search-left {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.search-left > i {
    color: #059669;
    font-size: 19px;
    margin-left: 17px;
}

.search-left input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 17px 48px 17px 14px;
    font-size: 16px;
    color: #0f172a;
}

.search-left input::placeholder {
    color: #94a3b8;
}

.clear-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.clear-search:hover {
    background: #059669;
    color: #fff;
}

.search-label {
    padding: 13px 20px;
    border-radius: 14px;
    background: rgba(5, 150, 105, 0.08);
    color: #047857;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.search-label i {
    margin-right: 7px;
}

.rates-categories {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 55px;
}

.rate-category {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 20px;
    min-height: 100px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 13px;
    text-align: left;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.rate-category::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #059669;
    transform: scaleY(0);
    transition: 0.35s ease;
}

.rate-category:hover {
    border-color: rgba(5, 150, 105, 0.30);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.rate-category.active {
    border-color: #059669;
    background: #ecfdf5;
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.12);
}

.rate-category.active::before {
    transform: scaleY(1);
}

.category-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(5, 150, 105, 0.10);
    color: #059669;
    font-size: 19px;
    transition: 0.35s ease;
}

.rate-category.active .category-icon {
    background: #059669;
    color: #fff;
}

.category-text {
    min-width: 0;
    flex: 1;
}

.category-text strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
}

.category-text small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
}

.category-arrow {
    color: #94a3b8;
    font-size: 13px;
    transition: 0.3s ease;
}

.rate-category.active .category-arrow {
    color: #059669;
    transform: translateX(3px);
}

.rates-heading-line {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 25px;
}

.available-label {
    color: #059669;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.rates-heading-line h2 {
    margin: 7px 0 0;
    color: #0f172a;
    font-size: 30px;
    font-weight: 800;
}

.rate-info {
    color: #64748b;
    font-size: 13px;
}

.rate-info i {
    color: #059669;
    margin-right: 6px;
}

.rates-grid {
    position: relative;
    z-index: 2;
}

.rate-item {
    transition: 0.35s ease;
}


.rate-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(5, 150, 105, 0.12);
    border-radius: 24px;
    padding: 26px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07);
    transition: all 0.35s ease;
}

.rate-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--primary-emerald),
        #10b981,
        #34d399
    );
}

.rate-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -55px;
    top: -55px;
    background: rgba(5, 150, 105, 0.06);
    border-radius: 50%;
    transition: 0.4s ease;
}

.rate-card:hover {
    transform: translateY(-8px);
    border-color: rgba(5, 150, 105, 0.3);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.13);
}

.rate-card:hover::after {
    transform: scale(1.4);
}


.card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.10);
    color: var(--primary-emerald);
    font-size: 27px;
    transition: 0.35s ease;
}

.rate-card:hover .product-icon {
    transform: rotate(-5deg) scale(1.08);
    background: var(--primary-emerald);
    color: #fff;
}

.product-icon.blue {
    background: rgba(37, 99, 235, 0.10);
    color: #2563eb;
}

.rate-card:hover .product-icon.blue {
    background: #2563eb;
    color: #fff;
}

.product-icon.amber {
    background: rgba(217, 119, 6, 0.10);
    color: var(--accent-amber);
}

.rate-card:hover .product-icon.amber {
    background: var(--accent-amber);
    color: #fff;
}

.live-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 50px;
    background: rgba(5, 150, 105, 0.08);
    color: var(--primary-emerald);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.live-tag span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}


.product-details {
    position: relative;
    z-index: 2;
}

.product-category {
    display: inline-block;
    color: var(--primary-emerald);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-details h3 {
    font-size: 25px;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 8px;
}

.product-details p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.rate-highlight {
    position: relative;
    z-index: 2;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    padding: 17px;
    margin-bottom: 18px;
}

.price-area small {
    display: block;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price strong {
    color: var(--dark-slate);
    font-size: 32px;
    font-weight: 900;
}

.price span {
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

.condition {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 9px;
    color: var(--primary-emerald);
    font-size: 12px;
    font-weight: 700;
}

.condition i {
    font-size: 12px;
}

.pickup-button {
    position: relative;
    z-index: 3;
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 14px 18px;
    background: var(--primary-emerald);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pickup-button i {
    transition: transform 0.3s ease;
}

.pickup-button:hover {
    background: #047857;
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.pickup-button:hover i {
    transform: translateX(5px);
}

.scrap-no-result {
    display: none;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 55px 20px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.no-result-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.09);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.scrap-no-result h3 {
    color: #0f172a;
    font-size: 21px;
    margin: 0 0 8px;
}

.scrap-no-result p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.rates-cta {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    padding: 25px 28px;
    border-radius: 22px;
    background: #059669;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 45px rgba(5, 150, 105, 0.18);
}

.cta-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.cta-text {
    flex: 1;
}

.cta-text strong {
    display: block;
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
}

.cta-text span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 50px;
    background: #ffffff;
    color: #047857;
    font-size: 13px;
    font-weight: 800;
    transition: 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    color: #047857;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.16);
}

.cta-button i {
    transition: 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {

    .live-rates-section {
        padding: 80px 0;
    }

    .rates-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .rates-status {
        min-width: 175px;
    }

    .rates-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .rates-heading-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .rates-heading-line h2 {
        font-size: 27px;
    }

    .rates-cta {
        flex-wrap: wrap;
    }

    .cta-text {
        min-width: 200px;
    }

    .cta-button {
        margin-left: auto;
    }

}

@media (max-width: 767px) {

    .live-rates-section {
        padding: 65px 0 70px;
    }

    .rates-top {
        gap: 25px;
        margin-bottom: 30px;
    }

    .rates-eyebrow {
        font-size: 10px;
        letter-spacing: 1px;
        padding: 7px 12px;
    }

    .rates-title-area h1 {
        font-size: 36px;
        letter-spacing: -1.3px;
    }

    .rates-title-area p {
        font-size: 15px;
        line-height: 1.7;
        margin-top: 15px;
    }

    .rates-status {
        width: 100%;
    }

    .rates-search {
        flex-direction: column;
        align-items: stretch;
        padding: 7px;
        border-radius: 17px;
    }

    .search-label {
        text-align: center;
        padding: 11px;
    }

    .search-left input {
        font-size: 14px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .rates-categories {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 4px 2px 12px;
        margin-bottom: 38px;
        scrollbar-width: none;
    }

    .rates-categories::-webkit-scrollbar {
        display: none;
    }

    .rate-category {
        flex: 0 0 235px;
        min-height: 88px;
    }

    .category-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .rates-heading-line h2 {
        font-size: 25px;
    }

    .rate-info {
        font-size: 12px;
        line-height: 1.5;
    }

    .rate-card {
        border-radius: 20px;
        padding: 21px;
    }

    .product-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .product-details h3 {
        font-size: 22px;
    }

    .product-details p {
        font-size: 14px;
    }

    .price strong {
        font-size: 28px;
    }

    .rates-cta {
        margin-top: 45px;
        padding: 22px;
        border-radius: 20px;
        align-items: flex-start;
    }

    .cta-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        font-size: 19px;
    }

    .cta-text strong {
        font-size: 17px;
    }

    .cta-text span {
        font-size: 13px;
        line-height: 1.5;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

}

@media (max-width: 480px) {

    .live-rates-section {
        padding: 50px 0 60px;
    }

    .rates-title-area h1 {
        font-size: 31px;
    }

    .rates-title-area p {
        font-size: 14px;
    }

    .rate-category {
        flex-basis: 220px;
    }

    .rate-card {
        padding: 18px;
    }

    .product-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .live-tag {
        font-size: 9px;
    }

    .product-details h3 {
        font-size: 20px;
    }

    .product-details p {
        font-size: 13px;
    }

    .rate-highlight {
        align-items: flex-start;
        flex-direction: column;
    }

    .condition {
        font-size: 10px;
    }

    .rates-cta {
        padding: 20px;
    }

} */

.live-rates-section {
    padding: 110px 0 100px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.live-rates-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -180px;
    background: rgba(5, 150, 105, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.live-rates-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -250px;
    left: -180px;
    background: rgba(217, 119, 6, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.rates-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.rates-title-area {
    max-width: 780px;
}

.rates-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    background: rgba(5, 150, 105, 0.09);
    border: 1px solid rgba(5, 150, 105, 0.18);
    color: #047857;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #059669;
    box-shadow: 0 0 0 5px rgba(5, 150, 105, 0.10);
}

.rates-title-area h1 {
    margin: 0;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
    color: #0f172a;
}

.rates-title-area h1 span {
    color: #059669;
    display: inline-block;
}

.rates-title-area p {
    margin: 22px 0 0;
    max-width: 690px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.8;
}

.rates-status {
    min-width: 190px;
    padding: 17px 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

.status-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-ring span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #059669;
    box-shadow: 0 0 0 6px rgba(5, 150, 105, 0.12);
    animation: livePulse 1.8s infinite;
}

.rates-status strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
}

.rates-status small {
    display: block;
    color: #64748b;
    margin-top: 3px;
    font-size: 12px;
}

@keyframes livePulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.65;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}

.rates-search {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
    margin-bottom: 30px;
}

.search-left {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.search-left > i {
    color: #059669;
    font-size: 19px;
    margin-left: 17px;
}

.search-left input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 17px 48px 17px 14px;
    font-size: 16px;
    color: #0f172a;
}

.search-left input::placeholder {
    color: #94a3b8;
}

.clear-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.clear-search:hover {
    background: #059669;
    color: #fff;
}

.search-label {
    padding: 13px 20px;
    border-radius: 14px;
    background: rgba(5, 150, 105, 0.08);
    color: #047857;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.search-label i {
    margin-right: 7px;
}

.rates-categories {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 55px;
}

.rate-category {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 20px;
    min-height: 100px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 13px;
    text-align: left;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.rate-category::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #059669;
    transform: scaleY(0);
    transition: 0.35s ease;
}

.rate-category:hover {
    border-color: rgba(5, 150, 105, 0.30);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.rate-category.active {
    border-color: #059669;
    background: #ecfdf5;
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.12);
}

.rate-category.active::before {
    transform: scaleY(1);
}

.category-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(5, 150, 105, 0.10);
    color: #059669;
    font-size: 19px;
    transition: 0.35s ease;
}

.rate-category.active .category-icon {
    background: #059669;
    color: #fff;
}

.category-text {
    min-width: 0;
    flex: 1;
}

.category-text strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
}

.category-text small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
}

.category-arrow {
    color: #94a3b8;
    font-size: 13px;
    transition: 0.3s ease;
}

.rate-category.active .category-arrow {
    color: #059669;
    transform: translateX(3px);
}

.rates-heading-line {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 25px;
}

.available-label {
    color: #059669;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.rates-heading-line h2 {
    margin: 7px 0 0;
    color: #0f172a;
    font-size: 30px;
    font-weight: 800;
}

.rate-info {
    color: #64748b;
    font-size: 13px;
}

.rate-info i {
    color: #059669;
    margin-right: 6px;
}

.rate-selector-box {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

.selector-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.selector-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 15px;
    background: rgba(5, 150, 105, 0.10);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.selector-details {
    flex: 1;
    max-width: 500px;
}

.selector-details label {
    display: block;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

.selector-details select {
    width: 100%;
    min-width: 300px;
    border: 1px solid #dbe3ea;
    background: #f8fafc;
    color: #0f172a;
    border-radius: 12px;
    padding: 13px 42px 13px 14px;
    font-size: 15px;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.selector-details select:focus {
    border-color: #059669;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.08);
}

.selector-note {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.selector-note i {
    color: #059669;
    margin-right: 5px;
}

.rates-grid {
    position: relative;
    z-index: 2;
}

.rate-item {
    transition: 0.35s ease;
}

.rate-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(5, 150, 105, 0.12);
    border-radius: 24px;
    padding: 26px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07);
    transition: all 0.35s ease;
}

.rate-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        #059669,
        #10b981,
        #34d399
    );
}

.rate-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -55px;
    top: -55px;
    background: rgba(5, 150, 105, 0.06);
    border-radius: 50%;
    transition: 0.4s ease;
}

.rate-card:hover {
    transform: translateY(-8px);
    border-color: rgba(5, 150, 105, 0.3);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.13);
}

.rate-card:hover::after {
    transform: scale(1.4);
}

.card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.10);
    color: #059669;
    font-size: 27px;
    transition: 0.35s ease;
}

.rate-card:hover .product-icon {
    transform: rotate(-5deg) scale(1.08);
    background: #059669;
    color: #fff;
}

.live-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 50px;
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.live-tag span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}

.product-details {
    position: relative;
    z-index: 2;
}

.product-category {
    display: inline-block;
    color: #059669;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-details h3 {
    font-size: 25px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.product-details p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.rate-highlight {
    position: relative;
    z-index: 2;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    padding: 17px;
    margin-bottom: 18px;
}

.price-area small {
    display: block;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price strong {
    color: #0f172a;
    font-size: 32px;
    font-weight: 900;
}

.price span {
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

.condition {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 9px;
    color: #059669;
    font-size: 12px;
    font-weight: 700;
}

.condition i {
    font-size: 12px;
}

.pickup-button {
    position: relative;
    z-index: 3;
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 14px 18px;
    background: #059669;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pickup-button i {
    transition: transform 0.3s ease;
}

.pickup-button:hover {
    background: #047857;
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.pickup-button:hover i {
    transform: translateX(5px);
}

.scrap-no-result {
    display: none;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 55px 20px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.no-result-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.09);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.scrap-no-result h3 {
    color: #0f172a;
    font-size: 21px;
    margin: 0 0 8px;
}

.scrap-no-result p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.rates-cta {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    padding: 25px 28px;
    border-radius: 22px;
    background: #059669;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 45px rgba(5, 150, 105, 0.18);
}

.cta-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.cta-text {
    flex: 1;
}

.cta-text strong {
    display: block;
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
}

.cta-text span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 50px;
    background: #ffffff;
    color: #047857;
    font-size: 13px;
    font-weight: 800;
    transition: 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    color: #047857;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.16);
}

.cta-button i {
    transition: 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 1199px) {

    .rates-categories {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 991px) {

    .live-rates-section {
        padding: 80px 0;
    }

    .rates-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .rates-status {
        min-width: 175px;
    }

    .rates-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .rates-heading-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .rates-heading-line h2 {
        font-size: 27px;
    }

    .rate-selector-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .selector-content {
        width: 100%;
    }

    .selector-details {
        max-width: none;
    }

    .selector-details select {
        min-width: 0;
    }

    .selector-note {
        white-space: normal;
    }

    .rates-cta {
        flex-wrap: wrap;
    }

    .cta-text {
        min-width: 200px;
    }

    .cta-button {
        margin-left: auto;
    }

}

@media (max-width: 767px) {

    .live-rates-section {
        padding: 65px 0 70px;
    }

    .rates-top {
        gap: 25px;
        margin-bottom: 30px;
    }

    .rates-eyebrow {
        font-size: 10px;
        letter-spacing: 1px;
        padding: 7px 12px;
    }

    .rates-title-area h1 {
        font-size: 36px;
        letter-spacing: -1.3px;
    }

    .rates-title-area p {
        font-size: 15px;
        line-height: 1.7;
        margin-top: 15px;
    }

    .rates-status {
        width: 100%;
    }

    .rates-search {
        flex-direction: column;
        align-items: stretch;
        padding: 7px;
        border-radius: 17px;
    }

    .search-label {
        text-align: center;
        padding: 11px;
    }

    .search-left input {
        font-size: 14px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .rates-categories {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 4px 2px 12px;
        margin-bottom: 38px;
        scrollbar-width: none;
    }

    .rates-categories::-webkit-scrollbar {
        display: none;
    }

    .rate-category {
        flex: 0 0 235px;
        min-height: 88px;
    }

    .category-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .rates-heading-line h2 {
        font-size: 25px;
    }

    .rate-info {
        font-size: 12px;
        line-height: 1.5;
    }

    .rate-selector-box {
        padding: 17px;
        border-radius: 19px;
    }

    .selector-content {
        align-items: flex-start;
    }

    .selector-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 18px;
    }

    .selector-details select {
        padding: 12px 38px 12px 12px;
        font-size: 14px;
    }

    .rate-card {
        border-radius: 20px;
        padding: 21px;
    }

    .product-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .product-details h3 {
        font-size: 22px;
    }

    .product-details p {
        font-size: 14px;
    }

    .price strong {
        font-size: 28px;
    }

    .rates-cta {
        margin-top: 45px;
        padding: 22px;
        border-radius: 20px;
        align-items: flex-start;
    }

    .cta-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        font-size: 19px;
    }

    .cta-text strong {
        font-size: 17px;
    }

    .cta-text span {
        font-size: 13px;
        line-height: 1.5;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

}

@media (max-width: 480px) {

    .live-rates-section {
        padding: 50px 0 60px;
    }

    .rates-title-area h1 {
        font-size: 31px;
    }

    .rates-title-area p {
        font-size: 14px;
    }

    .rate-category {
        flex-basis: 220px;
    }

    .rate-selector-box {
        padding: 15px;
    }

    .selector-content {
        gap: 10px;
    }

    .selector-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .selector-details label {
        font-size: 12px;
    }

    .selector-details select {
        font-size: 13px;
    }

    .rate-card {
        padding: 18px;
    }

    .product-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .live-tag {
        font-size: 9px;
    }

    .product-details h3 {
        font-size: 20px;
    }

    .product-details p {
        font-size: 13px;
    }

    .condition {
        font-size: 10px;
    }

    .rates-cta {
        padding: 20px;
    }

}

/* Book Pickup Page Section */
/* .pickup-booking-section {
    position: relative;
    overflow: hidden;
    padding: 115px 0 105px;
    background:
        radial-gradient(circle at 88% 8%, rgba(16,185,129,.10), transparent 30%),
        radial-gradient(circle at 4% 92%, rgba(34,197,94,.07), transparent 28%),
        #f7fbf9;
}

.pickup-booking-section::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -210px;
    top: 130px;
    border: 1px solid rgba(5,150,105,.12);
    border-radius: 50%;
}

.pickup-booking-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -170px;
    bottom: 90px;
    border-radius: 50%;
    background: rgba(16,185,129,.04);
}

.pickup-hero {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 45px;
}

.pickup-hero-copy {
    max-width: 820px;
}

.pickup-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 17px;
    border: 1px solid rgba(5,150,105,.20);
    border-radius: 50px;
    background: #ecfdf5;
    color: #047857;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 6px rgba(16,185,129,.10);
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0%,100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.18);
    }
}

.pickup-hero h1 {
    margin: 20px 0 0;
    color: #0f172a;
    font-size: clamp(46px, 5.4vw, 74px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 900;
}

.pickup-hero h1 span {
    color: #059669;
}

.pickup-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: #64748b;
    font-size: 19px;
    line-height: 1.8;
}

.pickup-hero-card {
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px 21px;
    border: 1px solid #dceee5;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15,23,42,.07);
}

.hero-check {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #059669;
    color: #fff;
    font-size: 22px;
}

.pickup-hero-card strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    font-weight: 900;
}

.pickup-hero-card span {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 12px;
}

.pickup-booking-box {
    position: relative;
    z-index: 3;
    overflow: hidden;
    border: 1px solid #dceee5;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 35px 90px rgba(5,150,105,.09);
}

.pickup-progress-area {
    padding: 32px 45px 28px;
    border-bottom: 1px solid #e7f1eb;
    background: linear-gradient(180deg,#fff,#fbfefc);
}

.progress-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 17px;
}

.progress-heading > div:first-child span {
    display: block;
    color: #059669;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.progress-heading > div:first-child strong {
    display: block;
    margin-top: 5px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.progress-count {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.progress-count strong {
    color: #059669;
    font-size: 34px;
    font-weight: 900;
}

.progress-count span {
    color: #94a3b8;
    font-size: 15px;
    font-weight: 800;
}

.progress-line {
    height: 7px;
    overflow: hidden;
    border-radius: 50px;
    background: #e8f3ed;
}

.progress-line span {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg,#047857,#059669,#34d399);
    transition: width .5s ease;
}

.step-nav {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 23px;
}

.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    min-width: 76px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.step-dot span {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce9e2;
    border-radius: 50%;
    background: #fff;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 900;
    transition: .3s ease;
}

.step-dot small {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.step-dot.active span {
    border-color: #059669;
    background: #059669;
    color: #fff;
    box-shadow: 0 0 0 7px rgba(5,150,105,.09);
}

.step-dot.active small,
.step-dot.completed small {
    color: #059669;
}

.step-dot.completed span {
    border-color: #10b981;
    background: #ecfdf5;
    color: #059669;
}

.step-line {
    flex: 1;
    height: 2px;
    margin-top: 21px;
    background: #e2eee7;
}

.pickup-content-area {
    padding: 48px 50px 40px;
}

.pickup-step-panel {
    display: none;
    animation: pickupFade .4s ease;
}

.pickup-step-panel.active {
    display: block;
}

@keyframes pickupFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-intro {
    display: flex;
    gap: 19px;
    margin-bottom: 35px;
}

.intro-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #ecfdf5;
    color: #059669;
    font-size: 25px;
}

.intro-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.intro-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.intro-icon.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.panel-intro span {
    display: block;
    color: #059669;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.panel-intro h2 {
    margin: 5px 0 0;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 900;
}

.panel-intro p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.scrap-card-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 17px;
}

.scrap-select-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 96px;
    padding: 17px 19px;
    border: 1px solid #deebe4;
    border-radius: 19px;
    background: #fff;
    cursor: pointer;
    transition: .3s ease;
}

.scrap-select-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.scrap-select-card:hover {
    transform: translateY(-3px);
    border-color: #9edbbb;
    box-shadow: 0 14px 30px rgba(5,150,105,.07);
}

.scrap-select-card:has(input:checked) {
    border-color: #059669;
    background: #f0fdf4;
    box-shadow: 0 15px 35px rgba(5,150,105,.09);
}

.scrap-card-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #ecfdf5;
    color: #059669;
    font-size: 23px;
}

.scrap-card-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.scrap-card-icon.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.scrap-card-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.scrap-card-icon.cyan {
    background: #ecfeff;
    color: #0891b2;
}

.scrap-card-icon.red {
    background: #fef2f2;
    color: #dc2626;
}

.scrap-card-info {
    min-width: 0;
    flex: 1;
}

.scrap-card-info strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    font-weight: 900;
}

.scrap-card-info small {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
}

.scrap-card-check {
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d2e1d9;
    border-radius: 50%;
    color: transparent;
    font-size: 12px;
    transition: .3s ease;
}

.scrap-select-card:has(input:checked) .scrap-card-check {
    border-color: #059669;
    background: #059669;
    color: #fff;
}

.custom-scrap-box {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 19px;
    padding: 16px 18px;
    border: 2px dashed #cfe2d7;
    border-radius: 17px;
    background: #fbfefc;
}

.custom-scrap-box > span {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #ecfdf5;
    color: #059669;
    font-size: 17px;
}

.custom-scrap-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #0f172a;
    font-size: 15px;
}

.selection-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 16px 19px;
    border-radius: 16px;
    background: #f0fdf4;
}

.selection-summary div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 14px;
    font-weight: 800;
}

.selection-summary i {
    color: #059669;
    font-size: 17px;
}

.selection-summary strong {
    color: #059669;
    font-size: 15px;
}

.form-layout {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

.modern-field.full {
    grid-column: 1/-1;
}

.modern-field label,
.date-selector label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 9px;
    color: #334155;
    font-size: 14px;
    font-weight: 900;
}

.modern-field label small {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 600;
}

.modern-field input,
.modern-field textarea,
.date-input-wrap input {
    width: 100%;
    border: 1px solid #d8e6de;
    border-radius: 15px;
    outline: 0;
    background: #fbfdfc;
    color: #0f172a;
    padding: 16px 18px;
    font-size: 15px;
    transition: .3s ease;
}

.modern-field textarea {
    min-height: 135px;
    resize: vertical;
}

.modern-field input:focus,
.modern-field textarea:focus,
.date-input-wrap input:focus {
    border-color: #059669;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(5,150,105,.07);
}

.safe-address-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding: 16px 18px;
    border: 1px solid #d7eee0;
    border-radius: 16px;
    background: #f0fdf4;
}

.safe-address-box > span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    color: #059669;
    font-size: 17px;
}

.safe-address-box strong {
    display: block;
    color: #166534;
    font-size: 13px;
    font-weight: 900;
}

.safe-address-box small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
}

.date-selector {
    max-width: 390px;
    margin-bottom: 34px;
}

.date-input-wrap {
    position: relative;
}

.date-input-wrap > i {
    position: absolute;
    left: 17px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    color: #059669;
    font-size: 18px;
}

.date-input-wrap input {
    padding-left: 50px;
    min-height: 54px;
}

.slot-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.slot-title strong {
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
}

.slot-title span {
    color: #94a3b8;
    font-size: 12px;
}

.slot-card-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 17px;
}

.time-card {
    position: relative;
    cursor: pointer;
}

.time-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.time-card-inner {
    display: block;
    padding: 22px;
    border: 1px solid #deebe4;
    border-radius: 18px;
    background: #fff;
    transition: .3s ease;
}

.time-card-inner > i {
    display: block;
    margin-bottom: 14px;
    color: #059669;
    font-size: 23px;
}

.time-card-inner strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
}

.time-card-inner small {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 11px;
}

.time-card:hover .time-card-inner {
    border-color: #9edbbb;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(5,150,105,.06);
}

.time-card input:checked + .time-card-inner {
    border-color: #059669;
    background: #f0fdf4;
    box-shadow: 0 15px 35px rgba(5,150,105,.08);
}

.payout-title {
    margin: 32px 0 16px;
}

.payout-title strong {
    display: block;
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
}

.payout-title span {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 12px;
}

.payout-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.payout-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 1px solid #deebe4;
    border-radius: 17px;
    background: #fff;
    cursor: pointer;
    transition: .3s ease;
}

.payout-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payout-card:hover {
    border-color: #9edbbb;
    transform: translateY(-2px);
}

.payout-card:has(input:checked) {
    border-color: #059669;
    background: #f0fdf4;
}

.payout-symbol {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #ecfdf5;
    color: #059669;
    font-size: 19px;
}

.payout-symbol.blue {
    background: #eff6ff;
    color: #2563eb;
}

.payout-symbol.orange {
    background: #fff7ed;
    color: #ea580c;
}

.payout-card strong {
    display: block;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.payout-card small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 10px;
}

.confirmation-step {
    text-align: center;
}

.confirmation-box {
    max-width: 720px;
    margin: 0 auto;
}

.success-orbit {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 22px;
}

.success-orbit > div {
    position: absolute;
    inset: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #059669;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 15px 35px rgba(5,150,105,.23);
}

.success-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(5,150,105,.35);
    border-radius: 50%;
    animation: rotateRing 9s linear infinite;
}

@keyframes rotateRing {
    to {
        transform: rotate(360deg);
    }
}

.confirmation-label {
    color: #059669;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.confirmation-box h2 {
    margin: 10px 0 9px;
    color: #0f172a;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 900;
}

.confirmation-box > p {
    max-width: 570px;
    margin: 0 auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.booking-id-card {
    position: relative;
    margin-top: 30px;
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient(135deg,#047857,#059669,#10b981);
    color: #fff;
    box-shadow: 0 24px 50px rgba(5,150,105,.18);
}

.booking-id-card > span {
    display: block;
    font-size: 11px;
    letter-spacing: 1.6px;
    font-weight: 900;
    opacity: .8;
}

.booking-id-card strong {
    display: block;
    margin-top: 8px;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 3px;
}

.booking-id-card button {
    position: absolute;
    right: 18px;
    bottom: 18px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 11px;
    padding: 10px 14px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}

.receipt-summary {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: 17px;
    border: 1px solid #deebe4;
    border-radius: 17px;
    overflow: hidden;
}

.receipt-summary > div {
    padding: 18px 12px;
    border-right: 1px solid #deebe4;
}

.receipt-summary > div:last-child {
    border-right: 0;
}

.receipt-summary small {
    display: block;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .8px;
}

.receipt-summary strong {
    display: block;
    margin-top: 7px;
    color: #0f172a;
    font-size: 12px;
    line-height: 1.45;
}

.confirmation-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #64748b;
    font-size: 12px;
}

.confirmation-message i {
    color: #059669;
}

.home-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 23px;
    padding: 15px 25px;
    border-radius: 50px;
    background: #059669;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    transition: .3s ease;
}

.home-button:hover {
    color: #fff;
    background: #047857;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(5,150,105,.18);
}

.pickup-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid #e5efe9;
}

.back-action,
.next-action {
    min-height: 52px;
    border: 0;
    border-radius: 14px;
    padding: 14px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: .3s ease;
}

.back-action {
    background: #f1f6f3;
    color: #64748b;
}

.back-action:hover:not(:disabled) {
    background: #e7f0eb;
}

.back-action:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.next-action {
    min-width: 175px;
    background: #059669;
    color: #fff;
    box-shadow: 0 12px 28px rgba(5,150,105,.2);
}

.next-action:hover {
    background: #047857;
    transform: translateY(-3px);
}

.pickup-alert {
    position: fixed;
    right: 25px;
    top: 25px;
    z-index: 99999;
    width: min(410px,calc(100vw - 30px));
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    border: 1px solid #d8eee1;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 25px 65px rgba(15,23,42,.15);
    opacity: 0;
    transform: translateY(-25px);
    transition: .3s ease;
}

.pickup-alert.show {
    opacity: 1;
    transform: translateY(0);
}

.pickup-alert > span {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #ecfdf5;
    color: #059669;
    font-size: 18px;
}

.pickup-alert strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
}

.pickup-alert small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.5;
}

.pickup-alert button {
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    font-size: 16px;
}

@media (max-width:991px) {

    .pickup-booking-section {
        padding: 85px 0;
    }

    .pickup-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .pickup-hero-card {
        width: 100%;
    }

    .pickup-progress-area {
        padding: 28px;
    }

    .pickup-content-area {
        padding: 38px 32px;
    }

    .step-nav {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .step-nav::-webkit-scrollbar {
        display: none;
    }

    .step-dot {
        flex: 0 0 86px;
    }

}

@media (max-width:767px) {

    .pickup-booking-section {
        padding: 65px 0 75px;
    }

    .pickup-hero {
        gap: 22px;
        margin-bottom: 30px;
    }

    .pickup-hero h1 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .pickup-hero p {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.75;
    }

    .pickup-hero-card {
        min-width: 0;
        padding: 16px;
    }

    .pickup-hero-card strong {
        font-size: 14px;
    }

    .pickup-booking-box {
        border-radius: 23px;
    }

    .pickup-progress-area {
        padding: 23px 17px 20px;
    }

    .progress-heading > div:first-child strong {
        font-size: 15px;
    }

    .progress-count strong {
        font-size: 27px;
    }

    .step-nav {
        gap: 4px;
        margin-top: 20px;
    }

    .step-dot {
        min-width: 72px;
    }

    .step-dot span {
        width: 38px;
        height: 38px;
        font-size: 10px;
    }

    .step-dot small {
        font-size: 9px;
    }

    .pickup-content-area {
        padding: 30px 18px;
    }

    .panel-intro {
        gap: 13px;
        margin-bottom: 27px;
    }

    .intro-icon {
        width: 51px;
        height: 51px;
        flex-basis: 51px;
        font-size: 20px;
    }

    .panel-intro h2 {
        font-size: 24px;
    }

    .panel-intro p {
        margin-top: 6px;
        font-size: 13px;
    }

    .scrap-card-grid,
    .form-layout,
    .slot-card-grid,
    .payout-grid {
        grid-template-columns: 1fr;
    }

    .modern-field.full {
        grid-column: auto;
    }

    .scrap-select-card {
        min-height: 88px;
        padding: 15px;
    }

    .scrap-card-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .scrap-card-info strong {
        font-size: 15px;
    }

    .scrap-card-info small {
        font-size: 11px;
    }

    .custom-scrap-box input {
        font-size: 14px;
    }

    .modern-field label,
    .date-selector label {
        font-size: 13px;
    }

    .modern-field input,
    .modern-field textarea,
    .date-input-wrap input {
        font-size: 14px;
        padding: 14px 15px;
    }

    .time-card-inner {
        padding: 20px;
    }

    .time-card-inner strong {
        font-size: 14px;
    }

    .payout-card {
        padding: 16px;
    }

    .confirmation-box h2 {
        font-size: 30px;
    }

    .confirmation-box > p {
        font-size: 14px;
    }

    .booking-id-card {
        padding: 24px;
    }

    .booking-id-card strong {
        font-size: 27px;
    }

    .receipt-summary {
        grid-template-columns: repeat(2,1fr);
    }

    .receipt-summary > div:nth-child(2) {
        border-right: 0;
    }

    .receipt-summary > div:nth-child(-n+2) {
        border-bottom: 1px solid #deebe4;
    }

    .receipt-summary strong {
        font-size: 11px;
    }

    .confirmation-message {
        font-size: 11px;
        line-height: 1.5;
    }

    .pickup-actions {
        margin-top: 32px;
        padding-top: 21px;
    }

    .back-action,
    .next-action {
        min-height: 50px;
        padding: 13px 17px;
        font-size: 13px;
    }

    .next-action {
        min-width: 155px;
    }

}

@media (max-width:480px) {

    .pickup-booking-section {
        padding: 55px 0 65px;
    }

    .pickup-hero h1 {
        font-size: 33px;
    }

    .pickup-hero p {
        font-size: 14px;
    }

    .pickup-badge {
        font-size: 10px;
        padding: 8px 12px;
    }

    .pickup-progress-area {
        padding: 20px 13px 17px;
    }

    .step-dot {
        min-width: 67px;
    }

    .step-dot span {
        width: 35px;
        height: 35px;
    }

    .step-dot small {
        font-size: 8px;
    }

    .pickup-content-area {
        padding: 27px 14px;
    }

    .panel-intro h2 {
        font-size: 21px;
    }

    .panel-intro p {
        font-size: 12px;
    }

    .scrap-select-card {
        min-height: 82px;
    }

    .scrap-card-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 19px;
    }

    .scrap-card-info strong {
        font-size: 14px;
    }

    .scrap-card-info small {
        font-size: 10px;
    }

    .selection-summary {
        padding: 14px;
    }

    .selection-summary div {
        font-size: 12px;
    }

    .selection-summary strong {
        font-size: 12px;
    }

    .confirmation-box h2 {
        font-size: 26px;
    }

    .booking-id-card strong {
        font-size: 23px;
        letter-spacing: 2px;
    }

    .booking-id-card button {
        position: static;
        margin-top: 13px;
    }

    .pickup-actions {
        gap: 9px;
    }

    .back-action,
    .next-action {
        min-height: 48px;
        padding: 11px 12px;
        font-size: 12px;
    }

    .next-action {
        min-width: 135px;
    }

} */

.pickup-booking-section {
    position: relative;
    overflow: hidden;
    padding: 115px 0 105px;
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(16,185,129,.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 4% 92%,
            rgba(34,197,94,.07),
            transparent 28%
        ),
        #f7fbf9;
}

.pickup-booking-section::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -210px;
    top: 130px;
    border: 1px solid rgba(5,150,105,.12);
    border-radius: 50%;
    pointer-events: none;
}

.pickup-booking-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -170px;
    bottom: 90px;
    border-radius: 50%;
    background: rgba(16,185,129,.04);
    pointer-events: none;
}

.pickup-hero {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 45px;
}

.pickup-hero-copy {
    max-width: 820px;
}

.pickup-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 17px;
    border: 1px solid rgba(5,150,105,.20);
    border-radius: 50px;
    background: #ecfdf5;
    color: #047857;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 6px rgba(16,185,129,.10);
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }

}

.pickup-hero h1 {
    margin: 20px 0 0;
    color: #0f172a;
    font-size: clamp(46px,5.4vw,74px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 900;
}

.pickup-hero h1 span {
    color: #059669;
}

.pickup-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: #64748b;
    font-size: 19px;
    line-height: 1.8;
}

.pickup-hero-card {
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px 21px;
    border: 1px solid #dceee5;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15,23,42,.07);
}

.hero-check {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #059669;
    color: #fff;
    font-size: 22px;
}

.pickup-hero-card strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    font-weight: 900;
}

.pickup-hero-card span {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 12px;
}

.pickup-booking-box {
    position: relative;
    z-index: 3;
    overflow: hidden;
    border: 1px solid #dceee5;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 35px 90px rgba(5,150,105,.09);
}

.pickup-progress-area {
    padding: 32px 45px 28px;
    border-bottom: 1px solid #e7f1eb;
    background: linear-gradient(
        180deg,
        #fff,
        #fbfefc
    );
}

.progress-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 17px;
}

.progress-heading > div:first-child span {
    display: block;
    color: #059669;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.progress-heading > div:first-child strong {
    display: block;
    margin-top: 5px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.progress-count {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.progress-count strong {
    color: #059669;
    font-size: 34px;
    font-weight: 900;
}

.progress-count span {
    color: #94a3b8;
    font-size: 15px;
    font-weight: 800;
}

.progress-line {
    height: 7px;
    overflow: hidden;
    border-radius: 50px;
    background: #e8f3ed;
}

.progress-line span {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        #047857,
        #059669,
        #34d399
    );
    transition: width .5s ease;
}

.step-nav {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 23px;
}

.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    min-width: 76px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.step-dot span {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce9e2;
    border-radius: 50%;
    background: #fff;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 900;
    transition: .3s ease;
}

.step-dot small {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.step-dot:hover span {
    border-color: #9edbbb;
    color: #059669;
}

.step-dot.active span {
    border-color: #059669;
    background: #059669;
    color: #fff;
    box-shadow: 0 0 0 7px rgba(5,150,105,.09);
}

.step-dot.active small,
.step-dot.completed small {
    color: #059669;
}

.step-dot.completed span {
    border-color: #10b981;
    background: #ecfdf5;
    color: #059669;
}

.step-line {
    flex: 1;
    height: 2px;
    margin-top: 21px;
    background: #e2eee7;
}

.pickup-content-area {
    padding: 48px 50px 40px;
}

.pickup-step-panel {
    display: none;
    animation: pickupFade .4s ease;
}

.pickup-step-panel.active {
    display: block;
}

@keyframes pickupFade {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.panel-intro {
    display: flex;
    gap: 19px;
    margin-bottom: 35px;
}

.intro-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #ecfdf5;
    color: #059669;
    font-size: 25px;
}

.intro-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.intro-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.intro-icon.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.panel-intro > div:last-child {
    min-width: 0;
}

.panel-intro span {
    display: block;
    color: #059669;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.panel-intro h2 {
    margin: 5px 0 0;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 900;
}

.panel-intro p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.pickup-category-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.pickup-category-card {
    padding: 20px;
    border: 1px solid #deebe4;
    border-radius: 20px;
    background: #fff;
    transition: .3s ease;
}

.pickup-category-card:hover {
    border-color: #a8ddc0;
    box-shadow: 0 15px 35px rgba(5,150,105,.07);
    transform: translateY(-2px);
}

.category-card-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.category-icon {
    width: 51px;
    height: 51px;
    flex: 0 0 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ecfdf5;
    color: #059669;
    font-size: 20px;
}

.category-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.category-icon.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.category-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.category-icon.red {
    background: #fef2f2;
    color: #dc2626;
}

.category-card-head > div:last-child {
    min-width: 0;
}

.category-card-head strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
}

.category-card-head small {
    display: block;
    margin-top: 4px;
    color: #94a3b8;
    font-size: 11px;
}

.subcategory-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.subcategory-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 13px;
    border: 1px solid #e4eee8;
    border-radius: 13px;
    cursor: pointer;
    transition: .3s ease;
}

.subcategory-option:hover {
    border-color: #9edbbb;
    background: #fbfefc;
}

.subcategory-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.subcategory-radio {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 2px solid #cbdcd2;
    border-radius: 50%;
    transition: .3s ease;
}

.subcategory-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.subcategory-info strong {
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.subcategory-info small {
    color: #059669;
    font-size: 13px;
    font-weight: 900;
}

.subcategory-option:has(input:checked) {
    border-color: #059669;
    background: #f0fdf4;
    box-shadow: 0 5px 18px rgba(5,150,105,.06);
}

.subcategory-option:has(input:checked) .subcategory-radio {
    border-color: #059669;
    background: #059669;
    box-shadow: inset 0 0 0 4px #fff;
}

.selected-item-details {
    display: none;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid #bde5cd;
    border-radius: 20px;
    background: #f0fdf4;
}

.selected-item-details.show {
    display: block;
    animation: pickupFade .3s ease;
}

.selected-items-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.selected-items-wrapper {
    margin-top: 0;
}

.selected-items-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
    padding: 15px 18px;
    border: 1px solid #dceee5;
    border-radius: 16px;
    background: #f8fcfa;
}

.selected-items-heading > div:first-child span,
.selected-items-total span {
    display: block;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.1px;
}

.selected-items-heading > div:first-child strong {
    display: block;
    margin-top: 4px;
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
}

.selected-items-total {
    text-align: right;
}

.selected-items-total small {
    display: block;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.selected-items-total strong {
    display: block;
    margin-top: 3px;
    color: #059669;
    font-size: 19px;
    font-weight: 900;
}

.selected-product-card {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(220px, 1.7fr)
        130px
        150px
        130px
        38px;
    align-items: center;
    gap: 15px;
    padding: 15px 17px;
    border: 1px solid #dcebe3;
    border-radius: 17px;
    background: #fff;
    transition: all .3s ease;
}

.selected-product-card:hover {
    border-color: #a9dcc1;
    background: #fbfefc;
    box-shadow: 0 10px 25px rgba(5,150,105,.07);
    transform: translateY(-1px);
}

.selected-product-info {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.selected-product-number {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ecfdf5;
    color: #059669;
    font-size: 12px;
    font-weight: 900;
}

.selected-product-name {
    min-width: 0;
}

.selected-product-name span {
    display: block;
    margin-bottom: 3px;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.selected-product-name strong {
    display: block;
    overflow: hidden;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.selected-product-rate,
.selected-product-quantity,
.selected-product-total {
    padding-left: 14px;
    border-left: 1px solid #e8f0eb;
}

.selected-product-rate small,
.selected-product-quantity small,
.selected-product-total small {
    display: block;
    margin-bottom: 5px;
    color: #94a3b8;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .9px;
}

.selected-product-rate strong {
    display: block;
    color: #334155;
    font-size: 14px;
    font-weight: 900;
}

.selected-product-total strong {
    display: block;
    color: #059669;
    font-size: 15px;
    font-weight: 900;
}

.compact-quantity {
    display: inline-flex;
    align-items: center;
    height: 34px;
    overflow: hidden;
    border: 1px solid #d5e5dc;
    border-radius: 10px;
    background: #fff;
}

.compact-quantity button {
    width: 32px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #f0fdf4;
    color: #059669;
    font-size: 10px;
    cursor: pointer;
    transition: .2s ease;
}

.compact-quantity button:hover {
    background: #059669;
    color: #fff;
}

.compact-quantity span {
    min-width: 36px;
    padding: 0 7px;
    text-align: center;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.selected-product-remove {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fee2e2;
    border-radius: 9px;
    background: #fff7f7;
    color: #ef4444;
    font-size: 11px;
    cursor: pointer;
    transition: all .25s ease;
}

.selected-product-remove:hover {
    border-color: #ef4444;
    background: #ef4444;
    color: #fff;
    transform: rotate(5deg);
}

.selection-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 16px 19px;
    border-radius: 16px;
    background: #f0fdf4;
}

.selection-summary div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 14px;
    font-weight: 800;
}

.selection-summary i {
    color: #059669;
    font-size: 17px;
}

.selection-summary strong {
    color: #059669;
    font-size: 15px;
}

.form-layout {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

.modern-field {
    min-width: 0;
}

.modern-field.full {
    grid-column: 1 / -1;
}

.modern-field label,
.date-selector label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 9px;
    color: #334155;
    font-size: 14px;
    font-weight: 900;
}

.modern-field label small,
.date-selector label small {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 600;
}

.modern-field input,
.modern-field textarea,
.date-input-wrap input {
    width: 100%;
    border: 1px solid #d8e6de;
    border-radius: 15px;
    outline: 0;
    background: #fbfdfc;
    color: #0f172a;
    padding: 16px 18px;
    font-size: 15px;
    transition: .3s ease;
}

.modern-field input::placeholder,
.modern-field textarea::placeholder {
    color: #a0aec0;
}

.modern-field textarea {
    min-height: 135px;
    resize: vertical;
}

.modern-field input:focus,
.modern-field textarea:focus,
.date-input-wrap input:focus {
    border-color: #059669;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(5,150,105,.07);
}

.safe-address-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding: 16px 18px;
    border: 1px solid #d7eee0;
    border-radius: 16px;
    background: #f0fdf4;
}

.safe-address-box > span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    color: #059669;
    font-size: 17px;
}

.safe-address-box strong {
    display: block;
    color: #166534;
    font-size: 13px;
    font-weight: 900;
}

.safe-address-box small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
}

.date-selector {
    max-width: 390px;
    margin-bottom: 34px;
}

.date-input-wrap {
    position: relative;
}

.date-input-wrap > i {
    position: absolute;
    left: 17px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    color: #059669;
    font-size: 18px;
    pointer-events: none;
}

.date-input-wrap input {
    padding-left: 50px;
    min-height: 54px;
}

.slot-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.slot-title strong {
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
}

.slot-title span {
    color: #94a3b8;
    font-size: 12px;
}

.slot-card-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

.time-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.time-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.time-card-inner {
    position: relative;
    display: block;
    min-height: 145px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid #deebe4;
    border-radius: 19px;
    background: #fff;
    transition: all .3s ease;
}

.time-card-inner::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -35px;
    bottom: -35px;
    border-radius: 50%;
    background: rgba(5,150,105,.05);
    transition: .3s ease;
}

.time-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 13px;
    background: #ecfdf5;
    color: #059669;
    font-size: 19px;
}

.time-card-inner strong {
    position: relative;
    z-index: 2;
    display: block;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
}

.time-card-inner small {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.time-card:hover .time-card-inner {
    border-color: #9edbbb;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(5,150,105,.07);
}

.time-card:hover .time-card-inner::after {
    transform: scale(1.15);
}

.time-card input:checked + .time-card-inner {
    border-color: #059669;
    background: linear-gradient(
        135deg,
        #f0fdf4,
        #f8fffb
    );
    box-shadow: 0 15px 35px rgba(5,150,105,.10);
}

.time-card input:checked + .time-card-inner::after {
    background: rgba(5,150,105,.12);
}

.payout-title {
    margin: 32px 0 16px;
}

.payout-title strong {
    display: block;
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
}

.payout-title span {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 12px;
}

.payout-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.payout-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 86px;
    padding: 17px;
    overflow: hidden;
    border: 1px solid #deebe4;
    border-radius: 17px;
    background: #fff;
    cursor: pointer;
    transition: .3s ease;
}

.payout-card::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    right: -25px;
    bottom: -25px;
    border-radius: 50%;
    background: rgba(5,150,105,.04);
    transition: .3s ease;
}

.payout-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payout-card:hover {
    border-color: #9edbbb;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(5,150,105,.06);
}

.payout-card:has(input:checked) {
    border-color: #059669;
    background: #f0fdf4;
    box-shadow: 0 12px 28px rgba(5,150,105,.08);
}

.payout-card:has(input:checked)::after {
    background: rgba(5,150,105,.10);
}

.payout-symbol {
    position: relative;
    z-index: 2;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #ecfdf5;
    color: #059669;
    font-size: 19px;
}

.payout-symbol.blue {
    background: #eff6ff;
    color: #2563eb;
}

.payout-symbol.orange {
    background: #fff7ed;
    color: #ea580c;
}

.payout-card > span:last-child {
    position: relative;
    z-index: 2;
}

.payout-card strong {
    display: block;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.payout-card small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 10px;
}

.confirmation-step {
    text-align: center;
}

.confirmation-box {
    max-width: 900px;
    margin: 0 auto;
}

.success-orbit {
    position: relative;
    width: 105px;
    height: 105px;
    margin: 0 auto 22px;
}

.success-orbit > div {
    position: absolute;
    inset: 11px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #047857,
        #059669,
        #10b981
    );
    color: #fff;
    font-size: 32px;
    box-shadow: 0 15px 35px rgba(5,150,105,.23);
}

.success-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(5,150,105,.35);
    border-radius: 50%;
    animation: rotateRing 9s linear infinite;
}

@keyframes rotateRing {

    to {
        transform: rotate(360deg);
    }

}

.confirmation-label {
    display: inline-block;
    color: #059669;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.confirmation-box h2 {
    margin: 10px 0 9px;
    color: #0f172a;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 900;
}

.confirmation-box > p {
    max-width: 650px;
    margin: 0 auto;
    color: #64748b;
    font-size: 15px;
    line-height: 1.75;
}

.booking-id-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding: 24px 25px;
    overflow: hidden;
    border-radius: 21px;
    background: linear-gradient(
        135deg,
        #047857,
        #059669,
        #10b981
    );
    color: #fff;
    text-align: left;
    box-shadow: 0 24px 50px rgba(5,150,105,.18);
}

.booking-id-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -75px;
    top: -75px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
}

.booking-id-card > div:first-child {
    position: relative;
    z-index: 2;
}

.booking-id-card > div:first-child > span {
    display: block;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 900;
    opacity: .78;
}

.booking-id-card > div:first-child > strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.confirmation-total-icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 17px;
    background: rgba(255,255,255,.13);
    color: #fff;
    font-size: 22px;
}

.confirmation-section-block {
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid #deebe4;
    border-radius: 19px;
    background: #fff;
    text-align: left;
}

.confirmation-block-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 19px;
    border-bottom: 1px solid #e8f0eb;
    background: #fbfefc;
}

.confirmation-block-heading span {
    display: block;
    color: #059669;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.1px;
}

.confirmation-block-heading strong {
    display: block;
    margin-top: 3px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
}

.confirmation-block-heading > i {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #ecfdf5;
    color: #059669;
    font-size: 15px;
}

.confirmation-item-card {
    display: flex;
    flex-direction: column;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}

.confirmation-selected-row {
    display: grid;
    grid-template-columns:
        minmax(260px,1.8fr)
        100px
        130px
        130px;
    align-items: center;
    gap: 15px;
    padding: 15px 18px;
    border-bottom: 1px solid #edf3ef;
}

.confirmation-selected-row:last-child {
    border-bottom: 0;
}

.confirmation-selected-row > div:first-child {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.confirmation-selected-row > div:first-child > span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ecfdf5;
    color: #059669;
    font-size: 11px;
    font-weight: 900;
}

.confirmation-selected-row small {
    display: block;
    color: #94a3b8;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .8px;
}

.confirmation-selected-row strong {
    display: block;
    margin-top: 4px;
    color: #0f172a;
    font-size: 12px;
    font-weight: 900;
}

.confirmation-selected-row > div:not(:first-child) {
    padding-left: 15px;
    border-left: 1px solid #edf3ef;
}

.receipt-summary {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    overflow: hidden;
}

.receipt-summary > div {
    min-width: 0;
    padding: 17px 14px;
    border-right: 1px solid #e8f0eb;
}

.receipt-summary > div:last-child {
    border-right: 0;
}

.receipt-summary small {
    display: block;
    color: #94a3b8;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .8px;
}

.receipt-summary strong {
    display: block;
    margin-top: 6px;
    overflow: hidden;
    color: #0f172a;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 900;
    text-overflow: ellipsis;
}

.confirmation-payment-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid #dcebe3;
    border-radius: 17px;
    background: #f8fcfa;
    text-align: left;
}

.confirmation-payment-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #ecfdf5;
    color: #059669;
    font-size: 18px;
}

.confirmation-payment-box small {
    display: block;
    color: #94a3b8;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.confirmation-payment-box strong {
    display: block;
    margin-top: 4px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
}

.confirmation-payment-box > div:last-child span {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 10px;
}

.confirmation-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    max-width: 680px;
    margin: 20px auto 0;
    color: #64748b;
    font-size: 11px;
    line-height: 1.6;
}

.confirmation-message-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
}

.home-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 23px;
    padding: 15px 25px;
    border-radius: 50px;
    background: #059669;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: .3s ease;
}

.home-button:hover {
    color: #fff;
    background: #047857;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(5,150,105,.18);
}

.pickup-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid #e5efe9;
}

.back-action,
.next-action {
    min-height: 52px;
    border: 0;
    border-radius: 14px;
    padding: 14px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: .3s ease;
}

.back-action {
    background: #f1f6f3;
    color: #64748b;
}

.back-action:hover:not(:disabled) {
    background: #e7f0eb;
    color: #475569;
}

.back-action:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.next-action {
    min-width: 175px;
    background: #059669;
    color: #fff;
    box-shadow: 0 12px 28px rgba(5,150,105,.2);
}

.next-action:hover {
    background: #047857;
    transform: translateY(-3px);
}

.pickup-alert {
    position: fixed;
    right: 25px;
    top: 25px;
    z-index: 99999;
    width: min(410px,calc(100vw - 30px));
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    border: 1px solid #d8eee1;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 25px 65px rgba(15,23,42,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-25px);
    transition: .3s ease;
}

.pickup-alert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pickup-alert > span {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #ecfdf5;
    color: #059669;
    font-size: 18px;
}

.pickup-alert strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
}

.pickup-alert small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.5;
}

.pickup-alert button {
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    font-size: 16px;
}

.pickup-alert button:hover {
    color: #0f172a;
}

@media (max-width:991px) {

    .pickup-booking-section {
        padding: 85px 0;
    }

    .pickup-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .pickup-hero-card {
        width: 100%;
    }

    .pickup-progress-area {
        padding: 28px;
    }

    .pickup-content-area {
        padding: 38px 32px;
    }

    .step-nav {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .step-nav::-webkit-scrollbar {
        display: none;
    }

    .step-dot {
        flex: 0 0 86px;
    }

    .selected-product-card {
        grid-template-columns:
            minmax(190px,1.5fr)
            110px
            125px
            110px
            35px;
        gap: 11px;
    }

    .confirmation-selected-row {
        grid-template-columns:
            minmax(220px,1.6fr)
            80px
            100px
            105px;
        gap: 10px;
    }

}

@media (max-width:767px) {

    .pickup-booking-section {
        padding: 65px 0 75px;
    }

    .pickup-hero {
        gap: 22px;
        margin-bottom: 30px;
    }

    .pickup-hero h1 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .pickup-hero p {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.75;
    }

    .pickup-hero-card {
        min-width: 0;
        padding: 16px;
    }

    .pickup-booking-box {
        border-radius: 23px;
    }

    .pickup-progress-area {
        padding: 23px 17px 20px;
    }

    .progress-heading > div:first-child strong {
        font-size: 15px;
    }

    .progress-count strong {
        font-size: 27px;
    }

    .step-nav {
        gap: 4px;
        margin-top: 20px;
    }

    .step-dot {
        min-width: 72px;
    }

    .step-dot span {
        width: 38px;
        height: 38px;
        font-size: 10px;
    }

    .step-dot small {
        font-size: 9px;
    }

    .pickup-content-area {
        padding: 30px 18px;
    }

    .panel-intro {
        gap: 13px;
        margin-bottom: 27px;
    }

    .intro-icon {
        width: 51px;
        height: 51px;
        flex-basis: 51px;
        font-size: 20px;
    }

    .panel-intro h2 {
        font-size: 24px;
    }

    .panel-intro p {
        margin-top: 6px;
        font-size: 13px;
    }

    .pickup-category-grid,
    .form-layout,
    .payout-grid {
        grid-template-columns: 1fr;
    }

    .modern-field.full {
        grid-column: auto;
    }

    .selected-item-details {
        padding: 15px;
    }

    .selected-items-heading {
        align-items: flex-start;
        gap: 12px;
    }

    .selected-items-heading > div:first-child strong {
        font-size: 15px;
    }

    .selected-items-total strong {
        font-size: 17px;
    }

    .selected-product-card {
        grid-template-columns: 1fr auto;
        gap: 11px;
        padding: 14px;
    }

    .selected-product-info {
        grid-column: 1 / 2;
    }

    .selected-product-remove {
        grid-column: 2 / 3;
        grid-row: 1;
    }

    .selected-product-rate {
        grid-column: 1 / 2;
        padding-left: 0;
        border-left: 0;
    }

    .selected-product-quantity {
        grid-column: 2 / 3;
        grid-row: 2;
        padding-left: 0;
        border-left: 0;
    }

    .selected-product-total {
        grid-column: 1 / 3;
        padding-left: 0;
        padding-top: 10px;
        border-left: 0;
        border-top: 1px solid #edf3ef;
    }

    .selected-product-name strong {
        font-size: 13px;
    }

    .slot-card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .time-card-inner {
        min-height: 118px;
        padding: 18px;
    }

    .time-card-icon {
        width: 39px;
        height: 39px;
        margin-bottom: 12px;
    }

    .time-card-inner strong {
        font-size: 14px;
    }

    .payout-card {
        min-height: 78px;
    }

    .modern-field label,
    .date-selector label {
        font-size: 13px;
    }

    .modern-field input,
    .modern-field textarea,
    .date-input-wrap input {
        font-size: 14px;
        padding: 14px 15px;
    }

    .confirmation-box h2 {
        font-size: 30px;
    }

    .confirmation-box > p {
        font-size: 14px;
    }

    .success-orbit {
        width: 88px;
        height: 88px;
    }

    .success-orbit > div {
        inset: 9px;
        font-size: 27px;
    }

    .booking-id-card {
        padding: 21px;
    }

    .booking-id-card > div:first-child > strong {
        font-size: 28px;
    }

    .confirmation-section-block {
        border-radius: 16px;
    }

    .confirmation-block-heading {
        padding: 15px;
    }

    .confirmation-selected-row {
        grid-template-columns: 1fr 1fr;
        gap: 13px;
        padding: 14px;
    }

    .confirmation-selected-row > div:first-child {
        grid-column: 1 / -1;
    }

    .confirmation-selected-row > div:not(:first-child) {
        padding-left: 0;
        border-left: 0;
    }

    .confirmation-selected-row > div:last-child {
        text-align: right;
    }

    .receipt-summary {
        grid-template-columns: repeat(2,1fr);
    }

    .receipt-summary > div {
        padding: 15px 12px;
    }

    .receipt-summary > div:nth-child(2) {
        border-right: 0;
    }

    .receipt-summary > div:nth-child(-n+2) {
        border-bottom: 1px solid #e8f0eb;
    }

    .confirmation-payment-box {
        padding: 14px;
    }

    .confirmation-message {
        align-items: flex-start;
        text-align: left;
    }

    .pickup-actions {
        margin-top: 32px;
        padding-top: 21px;
    }

    .back-action,
    .next-action {
        min-height: 50px;
        padding: 13px 17px;
        font-size: 13px;
    }

    .next-action {
        min-width: 155px;
    }

    .pickup-alert {
        right: 15px;
        top: 15px;
        width: calc(100vw - 30px);
    }

}

@media (max-width:480px) {

    .pickup-booking-section {
        padding: 55px 0 65px;
    }

    .pickup-hero h1 {
        font-size: 33px;
    }

    .pickup-hero p {
        font-size: 14px;
    }

    .pickup-badge {
        font-size: 10px;
        padding: 8px 12px;
    }

    .pickup-progress-area {
        padding: 20px 13px 17px;
    }

    .step-dot {
        min-width: 67px;
    }

    .step-dot span {
        width: 35px;
        height: 35px;
    }

    .step-dot small {
        font-size: 8px;
    }

    .pickup-content-area {
        padding: 27px 14px;
    }

    .panel-intro h2 {
        font-size: 21px;
    }

    .panel-intro p {
        font-size: 12px;
    }

    .pickup-category-card {
        padding: 15px;
    }

    .category-card-head strong {
        font-size: 13px;
    }

    .subcategory-info strong,
    .subcategory-info small {
        font-size: 11px;
    }

    .selected-item-details {
        padding: 13px;
        border-radius: 16px;
    }

    .selected-items-heading {
        margin-bottom: 12px;
        padding: 12px 13px;
    }

    .selected-items-heading > div:first-child span,
    .selected-items-total small {
        font-size: 8px;
    }

    .selected-items-heading > div:first-child strong {
        font-size: 14px;
    }

    .selected-items-total strong {
        font-size: 15px;
    }

    .selected-product-card {
        padding: 12px;
        border-radius: 14px;
    }

    .selected-product-number {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .selected-product-name strong {
        font-size: 12px;
    }

    .selected-product-rate strong,
    .selected-product-total strong {
        font-size: 13px;
    }

    .time-card-inner {
        min-height: 105px;
        padding: 16px;
    }

    .time-card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
        font-size: 15px;
    }

    .time-card-inner strong {
        font-size: 13px;
    }

    .time-card-inner small {
        font-size: 9px;
    }

    .payout-card {
        padding: 14px;
    }

    .payout-symbol {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    .confirmation-box h2 {
        font-size: 26px;
    }

    .confirmation-box > p {
        font-size: 13px;
    }

    .booking-id-card {
        padding: 18px;
    }

    .booking-id-card > div:first-child > strong {
        font-size: 24px;
    }

    .confirmation-block-heading {
        padding: 13px;
    }

    .confirmation-block-heading strong {
        font-size: 13px;
    }

    .confirmation-selected-row {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .confirmation-selected-row > div:first-child {
        grid-column: auto;
    }

    .confirmation-selected-row > div:last-child {
        text-align: left;
    }

    .receipt-summary {
        grid-template-columns: 1fr;
    }

    .receipt-summary > div {
        border-right: 0;
        border-bottom: 1px solid #e8f0eb;
    }

    .receipt-summary > div:last-child {
        border-bottom: 0;
    }

    .confirmation-payment-box {
        align-items: flex-start;
    }

    .pickup-actions {
        gap: 9px;
    }

    .back-action,
    .next-action {
        min-height: 48px;
        padding: 11px 12px;
        font-size: 12px;
    }

    .next-action {
        min-width: 135px;
    }

}

.pickup-booking-section *,
.pickup-booking-section *::before,
.pickup-booking-section *::after {
    box-sizing: border-box;
}

.pickup-booking-section button,
.pickup-booking-section input,
.pickup-booking-section textarea,
.pickup-booking-section select {
    font-family: inherit;
}

.pickup-booking-section button:focus-visible,
.pickup-booking-section input:focus-visible,
.pickup-booking-section textarea:focus-visible,
.pickup-booking-section a:focus-visible {
    outline: 3px solid rgba(5,150,105,.20);
    outline-offset: 3px;
}

.pickup-booking-section .field-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 4px rgba(239,68,68,.08) !important;
}

.confirmation-empty {
    padding: 25px;
    color: #94a3b8;
    font-size: 13px;
    text-align: center;
}

/* Corporate Ewaste Page Section */
.corp-ewaste-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 110px;
    background:
        radial-gradient(circle at 90% 5%, rgba(16,185,129,.10), transparent 28%),
        radial-gradient(circle at 5% 85%, rgba(37,99,235,.045), transparent 27%),
        #f6faf8;
}

.corp-ewaste-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    top: 250px;
    border: 1px solid rgba(5,150,105,.08);
    border-radius: 50%;
}

.corp-ewaste-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -170px;
    bottom: 180px;
    border-radius: 50%;
    background: rgba(5,150,105,.035);
}

.corp-hero {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 55px;
}

.corp-hero-content {
    max-width: 750px;
}

.corp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(5,150,105,.18);
    border-radius: 50px;
    background: #ecfdf5;
    color: #047857;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.corp-kicker-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 6px rgba(16,185,129,.10);
}

.corp-hero h1 {
    margin: 22px 0 0;
    color: #0f172a;
    font-size: clamp(48px,5.3vw,74px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 900;
}

.corp-hero h1 span {
    display: block;
    color: #059669;
}

.corp-hero-content > p {
    max-width: 690px;
    margin: 24px 0 0;
    color: #64748b;
    font-size: 18px;
    line-height: 1.8;
}

.corp-hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 31px;
}

.corp-btn-primary,
.corp-btn-ghost {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 900;
    transition: .3s ease;
}

.corp-btn-primary {
    background: #059669;
    color: #fff;
    box-shadow: 0 15px 32px rgba(5,150,105,.20);
}

.corp-btn-primary:hover {
    background: #047857;
    color: #fff;
    transform: translateY(-3px);
}

.corp-btn-ghost {
    border: 1px solid #dce9e1;
    background: #fff;
    color: #334155;
}

.corp-btn-ghost:hover {
    border-color: #9edbbb;
    color: #059669;
    transform: translateY(-3px);
}

.corp-hero-trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.corp-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #475569;
    font-size: 11px;
    font-weight: 800;
}

.corp-hero-trust i {
    color: #059669;
}

.corp-hero-panel {
    position: relative;
    min-height: 490px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corp-panel-glow {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(16,185,129,.10);
    filter: blur(35px);
}

.corp-asset-board {
    position: relative;
    z-index: 2;
    width: min(100%,470px);
    overflow: hidden;
    padding: 27px;
    border: 1px solid #dcebe3;
    border-radius: 28px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 35px 90px rgba(15,23,42,.12);
}

.corp-board-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf3ef;
}

.corp-board-top span {
    display: block;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.1px;
}

.corp-board-top strong {
    display: block;
    margin-top: 5px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
}

.corp-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 50px;
    background: #ecfdf5;
    color: #047857;
    font-size: 9px;
    font-weight: 900;
}

.corp-live-pill span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
}

.corp-board-main {
    padding: 30px 0 24px;
    text-align: center;
}

.corp-main-orb {
    width: 108px;
    height: 108px;
    margin: 0 auto 18px;
    padding: 9px;
    border: 1px dashed rgba(5,150,105,.28);
    border-radius: 50%;
}

.corp-orb-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg,#059669,#10b981);
    color: #fff;
    font-size: 36px;
    box-shadow: 0 18px 40px rgba(5,150,105,.20);
}

.corp-board-main > strong {
    display: block;
    color: #0f172a;
    font-size: 19px;
    font-weight: 900;
}

.corp-board-main > small {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 11px;
}

.corp-board-progress {
    padding: 17px;
    border: 1px solid #edf3ef;
    border-radius: 16px;
    background: #fbfdfc;
}

.corp-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 9px;
}

.corp-progress-head span {
    color: #94a3b8;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.corp-progress-head strong {
    color: #059669;
    font-size: 10px;
}

.corp-progress-track {
    height: 7px;
    overflow: hidden;
    border-radius: 50px;
    background: #e7f1eb;
}

.corp-progress-track span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg,#047857,#10b981,#34d399);
}

.corp-board-steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 9px;
    margin-top: 15px;
}

.corp-board-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 13px;
    background: #f8faf9;
}

.corp-board-step > span {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #e8f3ed;
    color: #94a3b8;
    font-size: 11px;
}

.corp-board-step.done > span {
    background: #ecfdf5;
    color: #059669;
}

.corp-board-step.active > span {
    background: #059669;
    color: #fff;
}

.corp-board-step small {
    display: block;
    color: #94a3b8;
    font-size: 7px;
}

.corp-board-step strong {
    display: block;
    margin-top: 2px;
    color: #334155;
    font-size: 10px;
}

.corp-board-bottom {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #edf3ef;
}

.corp-board-bottom > span {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ecfdf5;
    color: #059669;
}

.corp-board-bottom strong {
    display: block;
    color: #0f172a;
    font-size: 11px;
}

.corp-board-bottom small {
    display: block;
    margin-top: 3px;
    color: #94a3b8;
    font-size: 8px;
}

.corp-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-bottom: 100px;
}

.corp-stat-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 19px;
    border: 1px solid #dfeae4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15,23,42,.04);
}

.corp-stat-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #ecfdf5;
    color: #059669;
    font-size: 19px;
}

.corp-stat-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.corp-stat-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.corp-stat-icon.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.corp-stat-card strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
}

.corp-stat-card small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 9px;
}

.corp-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-bottom: 38px;
}

.corp-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.corp-heading > span {
    color: #059669;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.corp-heading h2 {
    margin: 9px 0 0;
    color: #0f172a;
    font-size: 39px;
    line-height: 1.2;
    font-weight: 900;
}

.corp-heading p {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.corp-service-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
}

.corp-feature-card {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    padding: 32px;
    border: 1px solid #cfe9da;
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 5%, rgba(16,185,129,.12), transparent 28%),
        linear-gradient(145deg,#ecfdf5,#fff 72%);
    box-shadow: 0 20px 45px rgba(5,150,105,.07);
}

.corp-feature-card::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -85px;
    bottom: -85px;
    border-radius: 50%;
    background: rgba(5,150,105,.06);
}

.corp-feature-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.corp-feature-icon {
    width: 63px;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #059669;
    color: #fff;
    font-size: 25px;
    box-shadow: 0 13px 25px rgba(5,150,105,.18);
}

.corp-feature-top > span:last-child {
    color: #a3bdb0;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.corp-feature-card h3 {
    max-width: 550px;
    margin: 32px 0 0;
    color: #0f172a;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 900;
}

.corp-feature-card h3 span {
    color: #059669;
}

.corp-feature-card > p {
    max-width: 600px;
    margin: 14px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.75;
}

.corp-asset-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px;
}

.corp-asset-chips span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 11px;
    border: 1px solid #dbece2;
    border-radius: 50px;
    background: rgba(255,255,255,.76);
    color: #475569;
    font-size: 10px;
    font-weight: 800;
}

.corp-asset-chips i {
    color: #059669;
}

.corp-feature-footer {
    position: absolute;
    z-index: 2;
    left: 32px;
    right: 32px;
    bottom: 29px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 1px solid #dbece2;
}

.corp-feature-footer > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.mini-check {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    color: #059669;
}

.corp-feature-footer strong {
    display: block;
    color: #0f172a;
    font-size: 11px;
}

.corp-feature-footer small {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 8px;
}

.corp-feature-footer > i {
    color: #059669;
}

.corp-service-stack {
    display: grid;
    gap: 18px;
}

.corp-mini-card {
    display: flex;
    gap: 17px;
    padding: 27px;
    border: 1px solid #e0ebe5;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 38px rgba(15,23,42,.045);
    transition: .35s ease;
}

.corp-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(15,23,42,.08);
}

.corp-mini-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 22px;
}

.corp-mini-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.corp-mini-content > span {
    color: #94a3b8;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.corp-mini-content h3 {
    margin: 6px 0 0;
    color: #0f172a;
    font-size: 25px;
    font-weight: 900;
}

.corp-mini-content p {
    margin: 9px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}

.corp-document-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
}

.corp-document-pill.orange {
    background: #fff7ed;
    color: #ea580c;
}

.corp-document-pill span {
    flex: 1;
    font-size: 10px;
    font-weight: 900;
}

.corp-workflow {
    position: relative;
    z-index: 2;
    margin-top: 105px;
}

.corp-workflow-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 15px;
}

.corp-workflow-item {
    position: relative;
    padding: 27px;
    border: 1px solid #e0ebe5;
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(15,23,42,.045);
}

.corp-workflow-number {
    position: absolute;
    right: 18px;
    top: 17px;
    color: #d9e6df;
    font-size: 28px;
    font-weight: 900;
}

.corp-workflow-icon {
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #ecfdf5;
    color: #059669;
    font-size: 22px;
}

.corp-workflow-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.corp-workflow-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.corp-workflow-item h3 {
    margin: 18px 0 0;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.corp-workflow-item p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}

.corp-flow-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
}

.corp-enquiry {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 40px;
    margin-top: 100px;
    padding: 45px;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(135deg,#047857,#059669 56%,#10b981);
    box-shadow: 0 30px 70px rgba(5,150,105,.18);
}

.corp-enquiry::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -210px;
    top: -200px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}

.corp-enquiry-info {
    position: relative;
    z-index: 2;
}

.corp-enquiry-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.72);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.corp-enquiry-tag span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a7f3d0;
}

.corp-enquiry-info h2 {
    max-width: 530px;
    margin: 13px 0 0;
    color: #fff;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 900;
}

.corp-enquiry-info > p {
    max-width: 510px;
    margin: 15px 0 0;
    color: rgba(255,255,255,.80);
    font-size: 15px;
    line-height: 1.75;
}

.corp-enquiry-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 24px;
}

.corp-enquiry-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.corp-enquiry-points i {
    color: #a7f3d0;
}

.corp-enquiry-form {
    position: relative;
    z-index: 3;
    padding: 25px;
    border-radius: 23px;
    background: #fff;
}

.corp-form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 17px;
}

.corp-field.full {
    grid-column: 1/-1;
}

.corp-field label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 11px;
    font-weight: 900;
}

.corp-field input,
.corp-field textarea {
    width: 100%;
    border: 1px solid #dae7df;
    border-radius: 13px;
    outline: 0;
    background: #fbfdfc;
    color: #0f172a;
    padding: 14px 15px;
    font-size: 13px;
    transition: .3s ease;
}

.corp-field textarea {
    resize: vertical;
}

.corp-field input:focus,
.corp-field textarea:focus {
    border-color: #059669;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(5,150,105,.07);
}

.corp-form-submit {
    width: 100%;
    min-height: 54px;
    margin-top: 19px;
    border: 0;
    border-radius: 13px;
    background: #059669;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: .3s ease;
}

.corp-form-submit:hover {
    background: #047857;
    transform: translateY(-2px);
}

.corp-form-status {
    min-height: 17px;
    margin-top: 11px;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
}

@media (max-width:991px) {

    .corp-ewaste-section {
        padding: 90px 0;
    }

    .corp-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .corp-hero-panel {
        min-height: 430px;
    }

    .corp-stats {
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 75px;
    }

    .corp-service-layout {
        grid-template-columns: 1fr;
    }

    .corp-feature-card {
        min-height: 430px;
    }

    .corp-workflow-line {
        grid-template-columns: 1fr;
    }

    .corp-flow-arrow {
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .corp-enquiry {
        grid-template-columns: 1fr;
    }

}

@media (max-width:767px) {

    .corp-ewaste-section {
        padding: 65px 0 75px;
    }

    .corp-hero {
        gap: 28px;
        margin-bottom: 35px;
    }

    .corp-kicker {
        font-size: 9px;
        padding: 8px 12px;
    }

    .corp-hero h1 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .corp-hero-content > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .corp-hero-actions {
        flex-direction: column;
    }

    .corp-btn-primary,
    .corp-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .corp-hero-trust {
        gap: 10px;
    }

    .corp-hero-trust span {
        font-size: 9px;
    }

    .corp-hero-panel {
        min-height: 350px;
    }

    .corp-asset-board {
        padding: 20px;
    }

    .corp-board-steps {
        grid-template-columns: 1fr;
    }

    .corp-stats {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }

    .corp-heading h2 {
        font-size: 29px;
    }

    .corp-heading p {
        font-size: 14px;
    }

    .corp-feature-card {
        min-height: 500px;
        padding: 24px;
    }

    .corp-feature-card h3 {
        font-size: 29px;
    }

    .corp-feature-footer {
        left: 24px;
        right: 24px;
    }

    .corp-mini-card {
        padding: 22px;
    }

    .corp-workflow {
        margin-top: 65px;
    }

    .corp-enquiry {
        margin-top: 65px;
        padding: 23px;
        border-radius: 23px;
    }

    .corp-enquiry-info h2 {
        font-size: 29px;
    }

    .corp-enquiry-form {
        padding: 18px;
    }

    .corp-form-grid {
        grid-template-columns: 1fr;
    }

    .corp-field.full {
        grid-column: auto;
    }

}

@media (max-width:480px) {

    .corp-hero h1 {
        font-size: 32px;
    }

    .corp-hero-content > p {
        font-size: 13px;
    }

    .corp-asset-board {
        width: 100%;
        padding: 17px;
    }

    .corp-board-top strong {
        font-size: 14px;
    }

    .corp-board-main {
        padding: 23px 0;
    }

    .corp-main-orb {
        width: 90px;
        height: 90px;
    }

    .corp-feature-card {
        min-height: 540px;
    }

    .corp-feature-card h3 {
        font-size: 25px;
    }

    .corp-asset-chips span {
        font-size: 9px;
    }

    .corp-mini-content h3 {
        font-size: 21px;
    }

    .corp-enquiry-info h2 {
        font-size: 25px;
    }

}

.corp-stat-card,
.corp-feature-card,
.corp-mini-card,
.corp-workflow-item {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity .6s ease,
        transform .6s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.corp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Terms & Conditions Page Section */
.terms-page-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 115px;
    background:
        radial-gradient(circle at 90% 4%, rgba(5,150,105,.09), transparent 28%),
        radial-gradient(circle at 3% 88%, rgba(16,185,129,.055), transparent 25%),
        #f7faf8;
}

.terms-page-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: 220px;
    border: 1px solid rgba(5,150,105,.08);
    border-radius: 50%;
}

.terms-page-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -180px;
    bottom: 180px;
    background: rgba(5,150,105,.035);
    border-radius: 50%;
}

.terms-hero {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    text-align: center;
}

.terms-hero-left {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.terms-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid rgba(5,150,105,.18);
    border-radius: 50px;
    background: #ecfdf5;
    color: #047857;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.terms-eyebrow i {
    font-size: 14px;
}

.terms-hero h1 {
    margin: 26px auto 0;
    color: #0f172a;
    font-size: clamp(58px, 6vw, 88px);
    line-height: 1;
    letter-spacing: -3.8px;
    font-weight: 900;
}

.terms-hero h1 span {
    display: inline;
    color: #059669;
}

.terms-hero-left > p {
    max-width: 820px;
    margin: 28px auto 0;
    color: #64748b;
    font-size: 20px;
    line-height: 1.8;
}

.terms-layout {
    position: relative;
    z-index: 2;
}

.terms-content {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.terms-card {
    position: relative;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 25px;
    margin-bottom: 22px;
    padding: 36px 38px;
    overflow: hidden;
    border: 1px solid #dce9e2;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(15,23,42,.045);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-6px);
    border-color: #b9dfc9;
    box-shadow: 0 22px 50px rgba(5, 150, 105, 0.10);
}

.terms-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(
        180deg,
        #047857,
        #10b981
    );
}

.terms-card::after {
    content: "";
    position: absolute;
    width: 175px;
    height: 175px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(5,150,105,.045);
}

.terms-number-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.terms-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfe5d8;
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        #f0fdf4,
        #ecfdf5
    );
    color: #059669;
    font-size: 15px;
    font-weight: 900;
    box-shadow: inset 0 1px 0 #fff;
}

.terms-number-line {
    width: 2px;
    flex: 1;
    min-height: 40px;
    margin-top: 12px;
    background: linear-gradient(
        to bottom,
        #cfe4d8,
        transparent
    );
}

.terms-card-body {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.terms-label {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 50px;
    background: #ecfdf5;
    color: #059669;
    font-size: 13px;
    padding: 8px 14px;
    letter-spacing: 1.4px;  
}

.terms-card-body h2 {
    margin: 13px 0 0;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.22;
    font-weight: 900;
}

.terms-card-body p {
    max-width: 920px;
    margin: 16px 0 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 500;
}

.terms-card-body p + p {
    margin-top: 12px;
}

.terms-list {
    display: grid;
    gap: 11px;
    margin: 21px 0 0;
    padding: 0;
    list-style: none;
}

.terms-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 11px 14px;
    border-radius: 11px;
    background: #f7fbf9;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
}

.terms-list i {
    color: #059669;
    font-size: 13px;
}

.terms-highlight {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    max-width: 920px;
    margin-top: 22px;
    padding: 18px 19px;
    border-radius: 16px;
}

.terms-highlight.green {
    border: 1px solid #cdebd9;
    background: #ecfdf5;
    color: #047857;
}

.terms-highlight.orange {
    border: 1px solid #fed7aa;
    background: #fff7ed;
    color: #c2410c;
}

.terms-highlight > i {
    margin-top: 2px;
    font-size: 18px;
}

.terms-highlight span {
    font-size: 13px;
    line-height: 1.75;
    font-weight: 800;
}

.terms-contact-box {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    max-width: 860px;
    margin-top: 23px;
}

.terms-contact-box > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 1px solid #e0ebe5;
    border-radius: 16px;
    background: #fbfdfc;
}

.terms-contact-box > div > span {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ecfdf5;
    color: #059669;
    font-size: 17px;
}

.terms-contact-box small {
    display: block;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.terms-contact-box strong {
    display: block;
    margin-top: 4px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.terms-final-note {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 27px;
    padding: 26px 28px;
    border: 1px solid #cfe7d9;
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        #ecfdf5,
        #ffffff
    );
    box-shadow: 0 15px 35px rgba(5,150,105,.05);
}

.terms-final-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #059669;
    color: #fff;
    font-size: 23px;
    box-shadow: 0 12px 25px rgba(5,150,105,.15);
}

.terms-final-note strong {
    display: block;
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
}

.terms-final-note p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width:991px) {

    .terms-page-section {
        padding: 90px 0;
    }

    .terms-content {
        max-width: 100%;
    }

    .terms-hero h1 {
        font-size: 62px;
    }

    .terms-card-body h2 {
        font-size: 29px;
    }

}

@media (max-width:767px) {

    .terms-page-section {
        padding: 65px 0 75px;
    }

    .terms-hero {
        margin-bottom: 38px;
    }

    .terms-eyebrow {
        font-size: 9px;
        padding: 9px 12px;
    }

    .terms-hero h1 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .terms-hero-left > p {
        font-size: 14px;
        line-height: 1.8;
    }

    .terms-card {
        grid-template-columns: 1fr;
        gap: 17px;
        padding: 24px 21px;
        border-radius: 20px;
    }

    .terms-number-wrap {
        align-items: flex-start;
    }

    .terms-number {
        width: 49px;
        height: 49px;
        font-size: 12px;
    }

    .terms-number-line {
        display: none;
    }

    .terms-card-body h2 {
        font-size: 24px;
    }

    .terms-card-body p {
        font-size: 14px;
        line-height: 1.8;
        color: #334155;
    }

    .terms-list li {
        width: 100%;
        font-size: 11px;
    }

    .terms-highlight span {
        font-size: 11px;
    }

    .terms-contact-box {
        grid-template-columns: 1fr;
    }

    .terms-final-note {
        align-items: flex-start;
        padding: 20px;
    }

    .terms-final-note strong {
        font-size: 14px;
    }

}

@media (max-width:480px) {

    .terms-page-section {
        padding: 55px 0 65px;
    }

    .terms-hero h1 {
        font-size: 35px;
    }

    .terms-hero-left > p {
        font-size: 13px;
    }

    .terms-card {
        padding: 20px 17px;
    }

    .terms-card-body h2 {
        font-size: 21px;
    }

    .terms-card-body p {
        font-size: 12px;
    }

    .terms-label {
        font-size: 8px;
    }

    .terms-highlight span {
        font-size: 10px;
    }

    .terms-contact-box strong {
        font-size: 11px;
    }

    .terms-final-icon {
        width: 49px;
        height: 49px;
        flex-basis: 49px;
    }

}

/* Privacy Policy Page Section */
.privacy-page-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 115px;
    background:
        radial-gradient(circle at 90% 4%, rgba(5,150,105,.08), transparent 28%),
        radial-gradient(circle at 4% 88%, rgba(37,99,235,.04), transparent 25%),
        #f7faf8;
}

.privacy-page-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: 240px;
    border: 1px solid rgba(5,150,105,.07);
    border-radius: 50%;
}

.privacy-page-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -180px;
    bottom: 180px;
    background: rgba(5,150,105,.03);
    border-radius: 50%;
}

.privacy-hero {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    text-align: center;
}

.privacy-hero-left {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.privacy-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid rgba(5,150,105,.18);
    border-radius: 50px;
    background: #ecfdf5;
    color: #047857;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.privacy-eyebrow i {
    font-size: 14px;
}

.privacy-hero h1 {
    margin: 26px auto 0;
    color: #0f172a;
    font-size: clamp(58px, 6vw, 88px);
    line-height: 1;
    letter-spacing: -3.8px;
    font-weight: 900;
}

.privacy-hero h1 span {
    color: #059669;
}

.privacy-hero-left > p {
    max-width: 820px;
    margin: 28px auto 0;
    color: #334155;
    font-size: 20px;
    line-height: 1.85;
}

.privacy-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.privacy-card {
    position: relative;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 25px;
    margin-bottom: 22px;
    padding: 36px 38px;
    overflow: hidden;
    border: 1px solid #dce9e2;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(15,23,42,.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.privacy-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(
        180deg,
        #047857,
        #10b981
    );
}

.privacy-card::after {
    content: "";
    position: absolute;
    width: 175px;
    height: 175px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(5,150,105,.035);
}

.privacy-card:hover {
    transform: translateY(-6px);
    border-color: #b9dfc9;
    box-shadow: 0 22px 50px rgba(5,150,105,.10);
}

.privacy-number {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfe5d8;
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        #f0fdf4,
        #ecfdf5
    );
    color: #059669;
    font-size: 15px;
    font-weight: 900;
}

.privacy-card-body {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.privacy-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 50px;
    background: #ecfdf5;
    color: #059669;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.privacy-card-body h2 {
    margin: 13px 0 0;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.22;
    font-weight: 900;
}

.privacy-card-body p {
    max-width: 920px;
    margin: 16px 0 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 500;
}

.privacy-card-body p + p {
    margin-top: 12px;
}

.privacy-list {
    display: grid;
    gap: 11px;
    margin: 21px 0 0;
    padding: 0;
    list-style: none;
}

.privacy-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 11px 14px;
    border-radius: 11px;
    background: #f7fbf9;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.privacy-list i {
    color: #059669;
    font-size: 13px;
}

.privacy-highlight {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    max-width: 920px;
    margin-top: 22px;
    padding: 18px 19px;
    border-radius: 16px;
}

.privacy-highlight.green {
    border: 1px solid #cdebd9;
    background: #ecfdf5;
    color: #047857;
}

.privacy-highlight.blue {
    border: 1px solid #d7e6fb;
    background: #eff6ff;
    color: #1d4ed8;
}

.privacy-highlight > i {
    margin-top: 2px;
    font-size: 18px;
}

.privacy-highlight span {
    font-size: 13px;
    line-height: 1.75;
    font-weight: 800;
}

.privacy-contact-box {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    max-width: 860px;
    margin-top: 23px;
}

.privacy-contact-box > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 1px solid #e0ebe5;
    border-radius: 16px;
    background: #fbfdfc;
}

.privacy-contact-box > div > span {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ecfdf5;
    color: #059669;
    font-size: 17px;
}

.privacy-contact-box small {
    display: block;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.privacy-contact-box strong {
    display: block;
    margin-top: 4px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.privacy-final-note {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 27px;
    padding: 26px 28px;
    border: 1px solid #cfe7d9;
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        #ecfdf5,
        #ffffff
    );
    box-shadow: 0 15px 35px rgba(5,150,105,.05);
}

.privacy-final-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #059669;
    color: #fff;
    font-size: 23px;
    box-shadow: 0 12px 25px rgba(5,150,105,.15);
}

.privacy-final-note strong {
    display: block;
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
}

.privacy-final-note p {
    margin: 6px 0 0;
    color: #334155;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width:991px) {

    .privacy-page-section {
        padding: 90px 0;
    }

    .privacy-hero h1 {
        font-size: 64px;
    }

    .privacy-card-body h2 {
        font-size: 29px;
    }

}

@media (max-width:767px) {

    .privacy-page-section {
        padding: 65px 0 75px;
    }

    .privacy-hero {
        margin-bottom: 38px;
    }

    .privacy-eyebrow {
        font-size: 9px;
        padding: 9px 12px;
    }

    .privacy-hero h1 {
        font-size: 43px;
        letter-spacing: -1.8px;
    }

    .privacy-hero-left > p {
        font-size: 14px;
        line-height: 1.8;
    }

    .privacy-card {
        grid-template-columns: 1fr;
        gap: 17px;
        padding: 24px 21px;
        border-radius: 20px;
    }

    .privacy-number {
        width: 49px;
        height: 49px;
        font-size: 12px;
    }

    .privacy-card-body h2 {
        font-size: 24px;
    }

    .privacy-card-body p {
        font-size: 14px;
        line-height: 1.8;
    }

    .privacy-list li {
        width: 100%;
        font-size: 11px;
    }

    .privacy-highlight span {
        font-size: 11px;
    }

    .privacy-contact-box {
        grid-template-columns: 1fr;
    }

    .privacy-final-note {
        align-items: flex-start;
        padding: 20px;
    }

    .privacy-final-note strong {
        font-size: 14px;
    }

}

@media (max-width:480px) {

    .privacy-page-section {
        padding: 55px 0 65px;
    }

    .privacy-hero h1 {
        font-size: 35px;
    }

    .privacy-hero-left > p {
        font-size: 13px;
    }

    .privacy-card {
        padding: 20px 17px;
    }

    .privacy-card-body h2 {
        font-size: 21px;
    }

    .privacy-card-body p {
        font-size: 12px;
    }

    .privacy-label {
        font-size: 11px;
    }

    .privacy-highlight span {
        font-size: 10px;
    }

    .privacy-contact-box strong {
        font-size: 11px;
    }

    .privacy-final-icon {
        width: 49px;
        height: 49px;
        flex-basis: 49px;
    }

}

/* Refund Policy Page Section */
.refund-page-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 115px;
    background:
        radial-gradient(circle at 90% 4%, rgba(5,150,105,.08), transparent 28%),
        radial-gradient(circle at 4% 88%, rgba(245,158,11,.045), transparent 25%),
        #f7faf8;
}

.refund-page-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: 240px;
    border: 1px solid rgba(5,150,105,.07);
    border-radius: 50%;
}

.refund-page-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -180px;
    bottom: 180px;
    background: rgba(5,150,105,.03);
    border-radius: 50%;
}

.refund-hero {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    text-align: center;
}

.refund-hero-left {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.refund-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid rgba(5,150,105,.18);
    border-radius: 50px;
    background: #ecfdf5;
    color: #047857;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.refund-eyebrow i {
    font-size: 14px;
}

.refund-hero h1 {
    margin: 26px auto 0;
    color: #0f172a;
    font-size: clamp(58px, 6vw, 88px);
    line-height: 1;
    letter-spacing: -3.8px;
    font-weight: 900;
}

.refund-hero h1 span {
    color: #059669;
}

.refund-hero-left > p {
    max-width: 830px;
    margin: 28px auto 0;
    color: #334155;
    font-size: 20px;
    line-height: 1.85;
}

.refund-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.refund-card {
    position: relative;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 25px;
    margin-bottom: 22px;
    padding: 36px 38px;
    overflow: hidden;
    border: 1px solid #dce9e2;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(15,23,42,.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.refund-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(
        180deg,
        #047857,
        #10b981
    );
}

.refund-card::after {
    content: "";
    position: absolute;
    width: 175px;
    height: 175px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(5,150,105,.035);
}

.refund-card:hover {
    transform: translateY(-6px);
    border-color: #b9dfc9;
    box-shadow: 0 22px 50px rgba(5,150,105,.10);
}

.refund-number {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfe5d8;
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        #f0fdf4,
        #ecfdf5
    );
    color: #059669;
    font-size: 15px;
    font-weight: 900;
}

.refund-card-body {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.refund-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 50px;
    background: #ecfdf5;
    color: #059669;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.refund-card-body h2 {
    margin: 13px 0 0;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.22;
    font-weight: 900;
}

.refund-card-body p {
    max-width: 920px;
    margin: 16px 0 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 500;
}

.refund-card-body p + p {
    margin-top: 12px;
}

.refund-list {
    display: grid;
    gap: 11px;
    margin: 21px 0 0;
    padding: 0;
    list-style: none;
}

.refund-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 11px 14px;
    border-radius: 11px;
    background: #f7fbf9;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.refund-list i {
    color: #059669;
    font-size: 13px;
}

.refund-highlight {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    max-width: 920px;
    margin-top: 22px;
    padding: 18px 19px;
    border-radius: 16px;
}

.refund-highlight.green {
    border: 1px solid #cdebd9;
    background: #ecfdf5;
    color: #047857;
}

.refund-highlight.blue {
    border: 1px solid #d7e6fb;
    background: #eff6ff;
    color: #1d4ed8;
}

.refund-highlight.orange {
    border: 1px solid #fed7aa;
    background: #fff7ed;
    color: #c2410c;
}

.refund-highlight > i {
    margin-top: 2px;
    font-size: 18px;
}

.refund-highlight span {
    font-size: 13px;
    line-height: 1.75;
    font-weight: 800;
}

.refund-contact-box {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    max-width: 860px;
    margin-top: 23px;
}

.refund-contact-box > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 1px solid #e0ebe5;
    border-radius: 16px;
    background: #fbfdfc;
}

.refund-contact-box > div > span {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ecfdf5;
    color: #059669;
    font-size: 17px;
}

.refund-contact-box small {
    display: block;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.refund-contact-box strong {
    display: block;
    margin-top: 4px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.refund-final-note {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 27px;
    padding: 26px 28px;
    border: 1px solid #cfe7d9;
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        #ecfdf5,
        #ffffff
    );
    box-shadow: 0 15px 35px rgba(5,150,105,.05);
}

.refund-final-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #059669;
    color: #fff;
    font-size: 23px;
    box-shadow: 0 12px 25px rgba(5,150,105,.15);
}

.refund-final-note strong {
    display: block;
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
}

.refund-final-note p {
    margin: 6px 0 0;
    color: #334155;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width:991px) {

    .refund-page-section {
        padding: 90px 0;
    }

    .refund-hero h1 {
        font-size: 64px;
    }

    .refund-card-body h2 {
        font-size: 29px;
    }

}

@media (max-width:767px) {

    .refund-page-section {
        padding: 65px 0 75px;
    }

    .refund-hero {
        margin-bottom: 38px;
    }

    .refund-eyebrow {
        font-size: 9px;
        padding: 9px 12px;
    }

    .refund-hero h1 {
        font-size: 43px;
        letter-spacing: -1.8px;
    }

    .refund-hero-left > p {
        font-size: 14px;
        line-height: 1.8;
    }

    .refund-card {
        grid-template-columns: 1fr;
        gap: 17px;
        padding: 24px 21px;
        border-radius: 20px;
    }

    .refund-number {
        width: 49px;
        height: 49px;
        font-size: 12px;
    }

    .refund-card-body h2 {
        font-size: 24px;
    }

    .refund-card-body p {
        font-size: 14px;
        line-height: 1.8;
    }

    .refund-list li {
        width: 100%;
        font-size: 11px;
    }

    .refund-highlight span {
        font-size: 11px;
    }

    .refund-contact-box {
        grid-template-columns: 1fr;
    }

    .refund-final-note {
        align-items: flex-start;
        padding: 20px;
    }

    .refund-final-note strong {
        font-size: 14px;
    }

}

@media (max-width:480px) {

    .refund-page-section {
        padding: 55px 0 65px;
    }

    .refund-hero h1 {
        font-size: 35px;
    }

    .refund-hero-left > p {
        font-size: 13px;
    }

    .refund-card {
        padding: 20px 17px;
    }

    .refund-card-body h2 {
        font-size: 21px;
    }

    .refund-card-body p {
        font-size: 12px;
    }

    .refund-label {
        font-size: 11px;
    }

    .refund-highlight span {
        font-size: 10px;
    }

    .refund-contact-box strong {
        font-size: 11px;
    }

    .refund-final-icon {
        width: 49px;
        height: 49px;
        flex-basis: 49px;
    }

}

/* Data Safety Page Section */
.data-safety-page-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 115px;
    background:
        radial-gradient(circle at 90% 4%, rgba(5,150,105,.08), transparent 28%),
        radial-gradient(circle at 4% 88%, rgba(37,99,235,.045), transparent 25%),
        #f7faf8;
}

.data-safety-page-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: 240px;
    border: 1px solid rgba(5,150,105,.07);
    border-radius: 50%;
}

.data-safety-page-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -180px;
    bottom: 180px;
    background: rgba(5,150,105,.03);
    border-radius: 50%;
}

.data-safety-hero {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    text-align: center;
}

.data-safety-hero-left {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.data-safety-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid rgba(5,150,105,.18);
    border-radius: 50px;
    background: #ecfdf5;
    color: #047857;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.data-safety-eyebrow i {
    font-size: 14px;
}

.data-safety-hero h1 {
    margin: 26px auto 0;
    color: #0f172a;
    font-size: clamp(56px, 6vw, 86px);
    line-height: 1;
    letter-spacing: -3.8px;
    font-weight: 900;
}

.data-safety-hero h1 span {
    color: #059669;
}

.data-safety-hero-left > p {
    max-width: 840px;
    margin: 28px auto 0;
    color: #334155;
    font-size: 20px;
    line-height: 1.85;
}

.data-safety-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.data-safety-card {
    position: relative;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 25px;
    margin-bottom: 22px;
    padding: 36px 38px;
    overflow: hidden;
    border: 1px solid #dce9e2;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(15,23,42,.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.data-safety-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(
        180deg,
        #047857,
        #10b981
    );
}

.data-safety-card::after {
    content: "";
    position: absolute;
    width: 175px;
    height: 175px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(5,150,105,.035);
}

.data-safety-card:hover {
    transform: translateY(-6px);
    border-color: #b9dfc9;
    box-shadow: 0 22px 50px rgba(5,150,105,.10);
}

.data-safety-number {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfe5d8;
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        #f0fdf4,
        #ecfdf5
    );
    color: #059669;
    font-size: 15px;
    font-weight: 900;
}

.data-safety-card-body {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.data-safety-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 50px;
    background: #ecfdf5;
    color: #059669;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.data-safety-card-body h2 {
    margin: 13px 0 0;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.22;
    font-weight: 900;
}

.data-safety-card-body p {
    max-width: 920px;
    margin: 16px 0 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 500;
}

.data-safety-card-body p + p {
    margin-top: 12px;
}

.data-safety-list {
    display: grid;
    gap: 11px;
    margin: 21px 0 0;
    padding: 0;
    list-style: none;
}

.data-safety-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 11px 14px;
    border-radius: 11px;
    background: #f7fbf9;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.data-safety-list i {
    color: #059669;
    font-size: 13px;
}

.data-safety-highlight {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    max-width: 920px;
    margin-top: 22px;
    padding: 18px 19px;
    border-radius: 16px;
}

.data-safety-highlight.green {
    border: 1px solid #cdebd9;
    background: #ecfdf5;
    color: #047857;
}

.data-safety-highlight.blue {
    border: 1px solid #d7e6fb;
    background: #eff6ff;
    color: #1d4ed8;
}

.data-safety-highlight.orange {
    border: 1px solid #fed7aa;
    background: #fff7ed;
    color: #c2410c;
}

.data-safety-highlight.red {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #b91c1c;
}

.data-safety-highlight > i {
    margin-top: 2px;
    font-size: 18px;
}

.data-safety-highlight span {
    font-size: 13px;
    line-height: 1.75;
    font-weight: 800;
}

.data-safety-contact-box {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    max-width: 860px;
    margin-top: 23px;
}

.data-safety-contact-box > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 1px solid #e0ebe5;
    border-radius: 16px;
    background: #fbfdfc;
}

.data-safety-contact-box > div > span {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ecfdf5;
    color: #059669;
    font-size: 17px;
}

.data-safety-contact-box small {
    display: block;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.data-safety-contact-box strong {
    display: block;
    margin-top: 4px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.data-safety-final-note {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 27px;
    padding: 26px 28px;
    border: 1px solid #cfe7d9;
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        #ecfdf5,
        #ffffff
    );
    box-shadow: 0 15px 35px rgba(5,150,105,.05);
}

.data-safety-final-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #059669;
    color: #fff;
    font-size: 23px;
    box-shadow: 0 12px 25px rgba(5,150,105,.15);
}

.data-safety-final-note strong {
    display: block;
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
}

.data-safety-final-note p {
    margin: 6px 0 0;
    color: #334155;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width:991px) {

    .data-safety-page-section {
        padding: 90px 0;
    }

    .data-safety-hero h1 {
        font-size: 64px;
    }

    .data-safety-card-body h2 {
        font-size: 29px;
    }

}

@media (max-width:767px) {

    .data-safety-page-section {
        padding: 65px 0 75px;
    }

    .data-safety-hero {
        margin-bottom: 38px;
    }

    .data-safety-eyebrow {
        font-size: 9px;
        padding: 9px 12px;
    }

    .data-safety-hero h1 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .data-safety-hero-left > p {
        font-size: 14px;
        line-height: 1.8;
    }

    .data-safety-card {
        grid-template-columns: 1fr;
        gap: 17px;
        padding: 24px 21px;
        border-radius: 20px;
    }

    .data-safety-number {
        width: 49px;
        height: 49px;
        font-size: 12px;
    }

    .data-safety-card-body h2 {
        font-size: 24px;
    }

    .data-safety-card-body p {
        font-size: 14px;
        line-height: 1.8;
    }

    .data-safety-list li {
        width: 100%;
        font-size: 11px;
    }

    .data-safety-highlight span {
        font-size: 11px;
    }

    .data-safety-contact-box {
        grid-template-columns: 1fr;
    }

    .data-safety-final-note {
        align-items: flex-start;
        padding: 20px;
    }

    .data-safety-final-note strong {
        font-size: 14px;
    }

}

@media (max-width:480px) {

    .data-safety-page-section {
        padding: 55px 0 65px;
    }

    .data-safety-hero h1 {
        font-size: 35px;
    }

    .data-safety-hero-left > p {
        font-size: 13px;
    }

    .data-safety-card {
        padding: 20px 17px;
    }

    .data-safety-card-body h2 {
        font-size: 21px;
    }

    .data-safety-card-body p {
        font-size: 12px;
    }

    .data-safety-label {
        font-size: 11px;
    }

    .data-safety-highlight span {
        font-size: 10px;
    }

    .data-safety-contact-box strong {
        font-size: 11px;
    }

    .data-safety-final-icon {
        width: 49px;
        height: 49px;
        flex-basis: 49px;
    }

}

/* Blogs Page Section */
.kb-blog-section {
    position: relative;
    overflow: hidden;

    padding: 115px 0 105px;

    background:
        radial-gradient(
            circle at 90% 4%,
            rgba(5,150,105,.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 4% 90%,
            rgba(16,185,129,.045),
            transparent 25%
        ),
        #f7faf8;
}

.kb-blog-hero {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: 0 auto 45px;

    text-align: center;
}

.kb-blog-eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 11px 18px;

    border: 1px solid rgba(5,150,105,.18);
    border-radius: 50px;

    background: #ecfdf5;
    color: #047857;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.kb-blog-hero h1 {
    margin: 24px 0 0;

    color: #0f172a;

    font-size: clamp(50px, 6vw, 82px);
    line-height: 1.02;

    letter-spacing: -3px;
    font-weight: 900;
}

.kb-blog-hero h1 span {
    color: #059669;
}

.kb-blog-hero p {
    max-width: 760px;

    margin: 24px auto 0;

    color: #334155;

    font-size: 18px;
    line-height: 1.85;
}

.kb-category-grid {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;

    margin: 0 auto 50px;

    overflow-x: auto;

    padding: 3px 4px 12px;

    scrollbar-width: none;
}

.kb-category-grid::-webkit-scrollbar {
    display: none;
}

.kb-category-card {
    position: relative;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 10px 19px;

    border: 1px solid #d7e6dd;

    border-radius: 50px;

    background: #ffffff;

    color: #64748b;

    font-size: 12px;
    font-weight: 900;

    white-space: nowrap;

    cursor: pointer;

    box-shadow:
        0 6px 18px rgba(15,23,42,.035);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}

.kb-category-card::before {
    content: "";

    position: absolute;

    left: 18px;
    right: 18px;
    bottom: -3px;

    height: 5px;

    border-radius: 20px;

    background: rgba(5,150,105,.12);

    opacity: 0;

    transform: scaleX(.3);

    transition:
        opacity .3s ease,
        transform .3s ease;
}

.kb-category-card:hover {
    transform: translateY(-3px);

    border-color: #aad7bd;

    background: #f5fcf8;

    color: #059669;

    box-shadow:
        0 12px 26px rgba(5,150,105,.09);
}

.kb-category-card:hover::before {
    opacity: 1;

    transform: scaleX(1);
}

.kb-category-card.active {
    transform: translateY(-2px);

    border-color: #059669;

    background:
        linear-gradient(
            135deg,
            #059669,
            #047857
        );

    color: #ffffff;

    box-shadow:
        0 12px 28px rgba(5,150,105,.20);
}

.kb-category-card.active::before {
    opacity: 1;

    background: rgba(255,255,255,.38);

    transform: scaleX(1);
}

.kb-category-card.active:hover {
    color: #ffffff;

    border-color: #059669;

    background:
        linear-gradient(
            135deg,
            #059669,
            #047857
        );
}

.kb-blog-grid {
    position: relative;
    z-index: 2;
}

.kb-blog-card {
    display: flex;
    flex-direction: column;

    height: 100%;
    overflow: hidden;

    border: 1px solid #dce9e2;
    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #ffffff 88%,
            #f8fcf9 100%
        );

    box-shadow:
        0 12px 32px rgba(15,23,42,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.kb-blog-card:hover {
    transform: translateY(-8px);

    border-color: #b9dfc9;

    box-shadow:
        0 25px 55px rgba(5,150,105,.11);
}

.kb-blog-image {
    position: relative;

    height: 255px;
    flex-shrink: 0;

    overflow: hidden;

    background: #eaf4ee;
}

.kb-blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .55s ease;
}

.kb-blog-card:hover .kb-blog-image img {
    transform: scale(1.06);
}

.kb-blog-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    min-height: 45px;

    padding: 13px 24px 0;

    color: #64748b;

    font-size: 11px;
    font-weight: 800;
}

.kb-blog-meta-row span {
    display: inline-flex;
    align-items: center;

    gap: 7px;
}

.kb-blog-meta-row i {
    color: #059669;

    font-size: 12px;
}

.kb-blog-card-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 14px 24px 25px;
}

.kb-card-category {
    display: inline-flex;
    width: fit-content;

    align-items: center;

    padding: 7px 11px;
    margin-bottom: 11px;

    border-radius: 50px;

    background: #ecfdf5;
    color: #059669;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}

.kb-blog-card-content h3 {
    min-height: 65px;

    margin: 0;

    color: #0f172a;

    font-size: 24px;
    line-height: 1.34;

    font-weight: 900;
}

.kb-blog-card-content p {
    min-height: 72px;

    margin: 13px 0 0;

    color: #334155;

    font-size: 14px;
    line-height: 1.8;
}

.kb-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: auto;

    padding-top: 22px;
}

.kb-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 132px;

    padding: 11px 18px;

    border: 1px solid #059669;
    border-radius: 50px;

    background: #059669;
    color: #ffffff;

    font-size: 11px;
    font-weight: 900;

    text-decoration: none;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.kb-read-more:hover {
    background: #047857;
    border-color: #047857;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 11px 24px rgba(5,150,105,.22);
}

.kb-read-more i {
    transition:
        transform .3s ease;
}

.kb-read-more:hover i {
    transform: translateX(4px);
}

.kb-blog-pagination {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 55px;
}

.kb-page-number,
.kb-page-arrow {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dce9e2;

    border-radius: 13px;

    background: #ffffff;

    color: #64748b;

    font-size: 12px;
    font-weight: 900;

    cursor: pointer;

    transition: .25s ease;
}

.kb-page-number:hover,
.kb-page-arrow:hover {
    border-color: #b9dfc9;

    color: #059669;
}

.kb-page-number.active {
    border-color: #059669;

    background: #059669;

    color: #ffffff;

    box-shadow:
        0 10px 22px rgba(5,150,105,.18);
}

.kb-page-arrow:disabled {
    opacity: .4;

    cursor: not-allowed;
}

@media (max-width:991px) {

    .kb-blog-section {
        padding: 90px 0;
    }

    .kb-blog-hero h1 {
        font-size: 62px;
    }

    .kb-category-grid {
        justify-content: flex-start;
    }

}

@media (max-width:767px) {

    .kb-blog-section {
        padding: 65px 0 75px;
    }

    .kb-blog-hero {
        margin-bottom: 35px;
    }

    .kb-blog-eyebrow {
        font-size: 9px;
        padding: 9px 12px;
    }

    .kb-blog-hero h1 {
        font-size: 42px;
        letter-spacing: -1.7px;
    }

    .kb-blog-hero p {
        font-size: 14px;
        line-height: 1.8;
    }

    .kb-category-grid {
        justify-content: flex-start;

        gap: 7px;

        margin-bottom: 35px;

        padding:
            2px
            2px
            11px;
    }

    .kb-category-card {
        min-height: 40px;

        padding: 8px 14px;

        font-size: 10px;
    }

    .kb-blog-image {
        height: 220px;
    }

    .kb-blog-meta-row {
        min-height: 42px;

        padding: 12px 21px 0;

        font-size: 10px;
    }

    .kb-blog-card-content {
        padding: 14px 21px 22px;
    }

    .kb-card-category {
        font-size: 8px;
    }

    .kb-blog-card-content h3 {
        min-height: 59px;

        font-size: 21px;
    }

    .kb-blog-card-content p {
        min-height: 68px;

        font-size: 13px;
    }

    .kb-read-more {
        min-width: 120px;

        padding: 10px 15px;

        font-size: 10px;
    }

    .kb-blog-pagination {
        margin-top: 40px;
    }

    .kb-page-number,
    .kb-page-arrow {
        width: 41px;
        height: 41px;
    }

}

@media (max-width:480px) {

    .kb-blog-section {
        padding: 55px 0 65px;
    }

    .kb-blog-hero h1 {
        font-size: 35px;
    }

    .kb-category-card {
        padding: 8px 12px;

        font-size: 9px;
    }

    .kb-blog-image {
        height: 205px;
    }

    .kb-blog-meta-row {
        font-size: 9px;
    }

    .kb-blog-card-content h3 {
        min-height: 54px;

        font-size: 19px;
    }

    .kb-blog-card-content p {
        min-height: 64px;

        font-size: 12px;
    }

}

/* Blog Details Page Section */
.kb-blog-detail-section {
    position: relative;
    overflow: hidden;

    padding: 105px 0 100px;

    background:
        radial-gradient(
            circle at 92% 4%,
            rgba(5,150,105,.08),
            transparent 27%
        ),
        radial-gradient(
            circle at 3% 88%,
            rgba(16,185,129,.04),
            transparent 24%
        ),
        #f7faf8;
}

.kb-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 30px;

    color: #94a3b8;

    font-size: 12px;
    font-weight: 800;

    line-height: 1.6;
}

.kb-detail-breadcrumb a {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #059669;

    text-decoration: none;

    transition: color .25s ease;
}

.kb-detail-breadcrumb a:hover {
    color: #047857;
}

.kb-detail-breadcrumb span {
    max-width: 520px;

    color: #64748b;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kb-detail-breadcrumb > i {
    color: #cbd5e1;
    font-size: 9px;
}

.kb-detail-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 320px;

    gap: 35px;

    align-items: start;
}

.kb-detail-main {
    min-width: 0;

    overflow: hidden;

    border: 1px solid #dce9e2;

    border-radius: 28px;

    background: #ffffff;

    box-shadow:
        0 18px 50px rgba(15,23,42,.06);
}

.kb-detail-header {
    padding: 43px 48px 29px;
}

.kb-detail-category {
    display: inline-flex;

    padding: 8px 14px;

    border: 1px solid #ccebd9;

    border-radius: 50px;

    background: #ecfdf5;

    color: #059669;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;
}

.kb-detail-header h1 {
    max-width: 930px;

    margin: 17px 0 0;

    color: #0f172a;

    font-size: clamp(35px, 3.4vw, 52px);

    line-height: 1.16;

    letter-spacing: -2px;

    font-weight: 900;
}

.kb-detail-meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 24px;

    width: 100%;

    color: #64748b;

    font-size: 12px;

    font-weight: 800;
}

.kb-meta-date {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #64748b;
}

.kb-meta-author {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-left: auto;

    color: #475569;
}

.kb-detail-meta i {
    color: #059669;

    font-size: 12px;
}

.kb-detail-featured-card {
    position: relative;

    margin: 0 24px;

    padding: 7px;

    border: 1px solid #dce9e2;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eefaf4
        );

    box-shadow:
        0 14px 35px rgba(15,23,42,.06);
}

.kb-detail-featured {
    position: relative;

    height: 475px;

    overflow: hidden;

    border-radius: 19px;

    background: #eaf4ee;
}

.kb-detail-featured::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(15,23,42,.10),
            transparent 40%
        );

    pointer-events: none;
}

.kb-detail-featured img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;
}

.kb-detail-featured:hover img {
    transform: scale(1.025);
}

.kb-detail-body {
    padding: 42px 48px 45px;
}

.kb-detail-body > p {
    max-width: 860px;

    margin-left: auto;
    margin-right: auto;
}

.kb-detail-body p {
    margin-top: 18px;

    color: #334155;

    font-size: 17px;

    line-height: 1.95;
}

.kb-detail-body .kb-detail-lead {
    margin-top: 0;

    color: #1e293b;

    font-size: 20px;

    line-height: 1.88;

    font-weight: 600;
}

.kb-detail-cta {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 38px;

    padding: 24px;

    border-radius: 21px;

    background:
        linear-gradient(
            135deg,
            #059669,
            #047857
        );

    box-shadow:
        0 18px 38px rgba(5,150,105,.18);
}

.kb-detail-cta-icon {
    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: rgba(255,255,255,.15);

    color: #ffffff;

    font-size: 21px;
}

.kb-detail-cta-content {
    flex: 1;
}

.kb-detail-cta-content strong {
    display: block;

    color: #ffffff;

    font-size: 18px;

    font-weight: 900;
}

.kb-detail-cta-content span {
    display: block;

    margin-top: 5px;

    color: rgba(255,255,255,.82);

    font-size: 13px;
}

.kb-detail-cta-button {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 12px 18px;

    border-radius: 50px;

    background: #ffffff;

    color: #047857;

    font-size: 11px;

    font-weight: 900;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.kb-detail-cta-button:hover {
    color: #047857;

    transform: translateY(-2px);

    box-shadow:
        0 9px 21px rgba(0,0,0,.13);
}

.kb-detail-share {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    margin-top: 34px;

    padding-top: 22px;

    border-top: 1px solid #e6eee9;
}

.kb-share-title {
    color: #334155;

    font-size: 13px;

    font-weight: 900;
}

.kb-share-buttons {
    display: flex;

    align-items: center;

    gap: 8px;
}

.kb-share-buttons a,
.kb-share-buttons button {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #dce9e2;

    border-radius: 50%;

    background: #ffffff;

    color: #64748b;

    font-size: 12px;

    cursor: pointer;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.kb-share-buttons a:hover,
.kb-share-buttons button:hover {
    transform: translateY(-2px);

    border-color: #059669;

    background: #059669;

    color: #ffffff;
}

.kb-detail-sidebar {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.kb-side-card {
    padding: 23px;

    border: 1px solid #dce9e2;

    border-radius: 21px;

    background: #ffffff;

    box-shadow:
        0 12px 32px rgba(15,23,42,.05);
}

.kb-side-title {
    padding-bottom: 15px;

    border-bottom: 1px solid #edf2ef;

    color: #0f172a;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.2px;
}

.kb-sidebar-categories {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-top: 16px;
}

.kb-sidebar-category {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding: 12px 13px;

    border: 1px solid transparent;

    border-radius: 12px;

    background: #f8fbf9;

    color: #475569;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.kb-sidebar-category i {
    color: #cbd5e1;

    font-size: 9px;

    transition:
        transform .25s ease,
        color .25s ease;
}

.kb-sidebar-category:hover {
    transform: translateX(4px);

    border-color: #ccebd9;

    background: #ecfdf5;

    color: #059669;
}

.kb-sidebar-category:hover i {
    color: #059669;

    transform: translateX(3px);
}

.kb-sidebar-category.active {
    border-color: #bfe4cc;

    background:
        linear-gradient(
            135deg,
            #ecfdf5,
            #f7fffb
        );

    color: #047857;
}

.kb-sidebar-category.active i {
    color: #059669;
}

.kb-recent-card {
    margin-top: 0;
}

.kb-recent-item {
    display: flex;

    gap: 11px;

    padding: 15px 0;

    border-bottom: 1px solid #edf2ef;

    text-decoration: none;

    transition:
        transform .25s ease;
}

.kb-recent-item:last-child {
    border-bottom: 0;
}

.kb-recent-item:hover {
    transform: translateX(4px);
}

.kb-recent-image {
    width: 67px;
    height: 67px;

    flex: 0 0 67px;

    overflow: hidden;

    border-radius: 12px;

    background: #edf5f0;
}

.kb-recent-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .35s ease;
}

.kb-recent-item:hover .kb-recent-image img {
    transform: scale(1.07);
}

.kb-recent-content {
    min-width: 0;
}

.kb-recent-content strong {
    display: block;

    color: #0f172a;

    font-size: 12px;

    line-height: 1.5;

    font-weight: 900;
}

.kb-recent-content small {
    display: block;

    margin-top: 6px;

    color: #94a3b8;

    font-size: 9px;

    font-weight: 800;
}

@media (max-width:991px) {

    .kb-blog-detail-section {
        padding: 90px 0;
    }

    .kb-detail-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width:767px) {

    .kb-blog-detail-section {
        padding: 65px 0 75px;
    }

    .kb-detail-breadcrumb {
        font-size: 10px;

        margin-bottom: 22px;
    }

    .kb-detail-breadcrumb span {
        max-width: 210px;
    }

    .kb-detail-main {
        border-radius: 21px;
    }

    .kb-detail-header {
        padding: 30px 22px 25px;
    }

    .kb-detail-header h1 {
        font-size: 32px;

        line-height: 1.18;

        letter-spacing: -1.4px;
    }

    .kb-detail-meta {
        gap: 12px;

        font-size: 10px;
    }

    .kb-meta-author {
        margin-left: auto;
    }

    .kb-detail-featured-card {
        margin: 0 13px;

        padding: 5px;

        border-radius: 19px;
    }

    .kb-detail-featured {
        height: 275px;

        border-radius: 14px;
    }

    .kb-detail-body {
        padding: 30px 22px 33px;
    }

    .kb-detail-body .kb-detail-lead {
        font-size: 17px;
    }

    .kb-detail-body p {
        font-size: 14px;

        line-height: 1.9;
    }

    .kb-detail-cta {
        align-items: flex-start;

        flex-wrap: wrap;

        padding: 20px;
    }

    .kb-detail-cta-content {
        min-width: 190px;
    }

    .kb-detail-cta-button {
        width: 100%;

        justify-content: center;
    }

    .kb-detail-share {
        align-items: center;

        margin-top: 28px;

        padding-top: 18px;
    }

    .kb-share-title {
        font-size: 10px;
    }

    .kb-share-buttons a,
    .kb-share-buttons button {
        width: 34px;
        height: 34px;

        font-size: 10px;
    }

    .kb-detail-sidebar {
        display: flex;
    }

}

@media (max-width:480px) {

    .kb-detail-header h1 {
        font-size: 28px;

        line-height: 1.2;

        letter-spacing: -1.1px;
    }

    .kb-detail-meta {
        font-size: 9px;
    }

    .kb-detail-featured {
        height: 230px;
    }

}

/* Carrers Page Section */
.kb-career-section {
    position: relative;
    overflow: hidden;

    padding: 105px 0 95px;

    background:
        radial-gradient(
            circle at 90% 4%,
            rgba(5,150,105,.09),
            transparent 28%
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(16,185,129,.04),
            transparent 25%
        ),
        #f7faf8;
}

.kb-career-hero {
    max-width: 900px;

    margin: 0 auto 95px;

    text-align: center;
}

.kb-career-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 16px;

    border: 1px solid rgba(5,150,105,.17);

    border-radius: 50px;

    background: #ecfdf5;

    color: #047857;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.6px;
}

.kb-eyebrow-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #059669;

    box-shadow:
        0 0 0 5px rgba(5,150,105,.10);
}

.kb-career-hero h1 {
    margin: 26px 0 0;

    color: #0f172a;

    font-size: clamp(52px, 6.5vw, 84px);

    line-height: 1.02;

    letter-spacing: -3.8px;

    font-weight: 900;
}

.kb-career-hero h1 span {
    display: block;

    color: #059669;
}

.kb-career-hero p {
    max-width: 700px;

    margin: 22px auto 0;

    color: #334155;

    font-size: 18px;

    line-height: 1.85;
}

.kb-career-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 30px;

    padding: 14px 22px;

    border: 1px solid #059669;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #059669,
            #047857
        );

    color: #ffffff;

    font-size: 12px;

    font-weight: 900;

    text-decoration: none;

    box-shadow:
        0 12px 28px rgba(5,150,105,.18);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.kb-career-btn:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 19px 38px rgba(5,150,105,.24);
}

.kb-career-heading {
    margin-bottom: 34px;
}

.kb-career-heading > span {
    color: #059669;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.7px;
}

.kb-career-heading h2 {
    margin: 9px 0 0;

    color: #0f172a;

    font-size: clamp(38px, 4.2vw, 54px);

    line-height: 1.1;

    letter-spacing: -2px;

    font-weight: 900;
}

.kb-career-heading h2 strong {
    color: #059669;
}

.kb-career-heading p {
    max-width: 650px;

    margin: 14px 0 0;

    color: #475569;

    font-size: 16px;

    line-height: 1.85;
}

.kb-career-intro {
    margin-bottom: 95px;
}

.kb-career-points {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;
}

.kb-career-point {
    position: relative;

    min-height: 320px;

    padding: 27px;

    overflow: hidden;

    border: 1px solid #d6e6dd;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 66%,
            #f0faf4 100%
        );

    box-shadow:
        0 14px 34px rgba(15,23,42,.05);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.kb-career-point::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -95px;
    top: -95px;

    border-radius: 50%;

    background:
        rgba(5,150,105,.055);

    transition:
        transform .45s ease;
}

.kb-career-point::after {
    content: "";

    position: absolute;

    left: 27px;
    right: 27px;
    bottom: 0;

    height: 3px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #059669,
            #34d399
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform .4s ease;
}

.kb-career-point:hover {
    transform: translateY(-9px);

    border-color: #b5ddc4;

    box-shadow:
        0 25px 52px rgba(5,150,105,.12);
}

.kb-career-point:hover::before {
    transform: scale(1.5);
}

.kb-career-point:hover::after {
    transform: scaleX(1);
}

.kb-point-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.kb-point-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #c6e6d3;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #ecfdf5,
            #f8fffb
        );

    color: #059669;

    font-size: 21px;

    box-shadow:
        0 10px 21px rgba(5,150,105,.08);

    transition:
        transform .3s ease,
        color .3s ease,
        background .3s ease;
}

.kb-career-point:hover .kb-point-icon {
    transform:
        rotate(-5deg)
        scale(1.07);

    background: #059669;

    color: #ffffff;
}

.kb-point-number {
    color: #cbd8d1;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1px;
}

.kb-point-line {
    width: 45px;

    height: 2px;

    margin-top: 21px;

    border-radius: 10px;

    background: #dce9e2;
}

.kb-point-category {
    display: inline-block;

    margin-top: 18px;

    color: #059669;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.4px;
}

.kb-career-point h3 {
    position: relative;
    z-index: 2;

    margin: 7px 0 0;

    color: #0f172a;

    font-size: 24px;

    line-height: 1.3;

    font-weight: 900;
}

.kb-career-point p {
    position: relative;
    z-index: 2;

    max-width: 330px;

    margin: 10px 0 0;

    color: #475569;

    font-size: 14px;

    line-height: 1.8;
}

.kb-point-footer {
    position: absolute;

    left: 27px;
    right: 27px;

    bottom: 21px;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 13px;

    border-top: 1px solid #e5eee9;

    color: #059669;

    font-size: 11px;

    font-weight: 900;
}

.kb-point-footer i {
    transition:
        transform .3s ease;
}

.kb-career-point:hover .kb-point-footer i {
    transform: translateX(5px);
}

.kb-open-roles {
    margin-bottom: 75px;
}

.kb-job-list {
    display: grid;

    gap: 17px;
}

.kb-job-card {
    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 23px 24px 23px 16px;

    border: 1px solid #d6e6dd;

    border-radius: 23px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fbfefc
        );

    box-shadow:
        0 12px 30px rgba(15,23,42,.045);

    transition:
        transform .32s ease,
        border-color .32s ease,
        box-shadow .32s ease;
}

.kb-job-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 20px;
    bottom: 20px;

    width: 4px;

    border-radius: 10px;

    background:
        linear-gradient(
            to bottom,
            #059669,
            #34d399
        );

    opacity: 0;

    transform: scaleY(.5);

    transition:
        opacity .3s ease,
        transform .3s ease;
}

.kb-job-card:hover {
    transform: translateY(-5px);

    border-color: #b5ddc4;

    box-shadow:
        0 22px 45px rgba(5,150,105,.10);
}

.kb-job-card:hover::before {
    opacity: 1;

    transform: scaleY(1);
}

.kb-job-number {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #deebe3;

    border-radius: 11px;

    background: #f8fbf9;

    color: #94a3b8;

    font-size: 10px;

    font-weight: 900;
}

.kb-job-info {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    flex: 1;

    min-width: 0;
}

.kb-job-icon {
    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #eff6ff,
            #f8fbff
        );

    color: #2563eb;

    font-size: 20px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.kb-job-card:hover .kb-job-icon {
    transform: scale(1.07);

    box-shadow:
        0 10px 22px rgba(37,99,235,.10);
}

.kb-job-icon.green {
    background:
        linear-gradient(
            145deg,
            #ecfdf5,
            #f8fffb
        );

    color: #059669;
}

.kb-job-icon.amber {
    background:
        linear-gradient(
            145deg,
            #fffbeb,
            #fffdf8
        );

    color: #d97706;
}

.kb-job-content {
    min-width: 0;
}

.kb-job-topline {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;
}

.kb-job-category {
    padding: 5px 9px;

    border-radius: 50px;

    background: #ecfdf5;

    color: #059669;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .9px;
}

.kb-job-type {
    color: #64748b;

    font-size: 9px;

    font-weight: 900;
}

.kb-job-location {
    padding-left: 9px;

    border-left: 1px solid #dce9e2;

    color: #94a3b8;

    font-size: 9px;

    font-weight: 800;
}

.kb-job-info h3 {
    margin: 8px 0 0;

    color: #0f172a;

    font-size: 22px;

    line-height: 1.35;

    font-weight: 900;
}

.kb-job-info p {
    max-width: 780px;

    margin: 7px 0 0;

    color: #64748b;

    font-size: 13px;

    line-height: 1.75;
}

.kb-job-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-width: 120px;

    padding: 12px 17px;

    border: 1px solid #b5ddc4;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #f2fbf6,
            #ffffff
        );

    color: #047857;

    font-size: 11px;

    font-weight: 900;

    text-decoration: none;

    white-space: nowrap;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease;
}

.kb-job-btn:hover {
    transform: translateY(-2px);

    border-color: #059669;

    background: #059669;

    color: #ffffff;

    box-shadow:
        0 10px 23px rgba(5,150,105,.17);
}

.kb-career-cta {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 34px 37px;

    overflow: hidden;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #059669,
            #047857
        );

    box-shadow:
        0 22px 48px rgba(5,150,105,.18);
}

.kb-career-cta::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -85px;
    top: -145px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);
}

.kb-career-cta-content {
    position: relative;
    z-index: 2;
}

.kb-career-cta-content > span {
    color: rgba(255,255,255,.72);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.kb-career-cta h2 {
    margin: 8px 0 0;

    color: #ffffff;

    font-size: 32px;

    line-height: 1.2;

    font-weight: 900;
}

.kb-career-cta p {
    margin: 7px 0 0;

    color: rgba(255,255,255,.82);

    font-size: 13px;

    line-height: 1.65;
}

.kb-career-mail {
    position: relative;
    z-index: 2;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-width: 130px;

    padding: 13px 19px;

    border-radius: 50px;

    background: #ffffff;

    color: #047857;

    font-size: 11px;

    font-weight: 900;

    text-decoration: none;

    white-space: nowrap;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.kb-career-mail:hover {
    color: #047857;

    transform: translateY(-3px);

    box-shadow:
        0 12px 26px rgba(0,0,0,.14);
}

@media (max-width:991px) {

    .kb-career-section {
        padding: 85px 0;
    }

    .kb-career-points {
        grid-template-columns:
            repeat(2,1fr);
    }

    .kb-job-number {
        display: none;
    }

}

@media (max-width:767px) {

    .kb-career-section {
        padding: 62px 0 72px;
    }

    .kb-career-hero {
        margin-bottom: 68px;
    }

    .kb-career-hero h1 {
        font-size: 43px;

        letter-spacing: -1.8px;
    }

    .kb-career-hero p {
        font-size: 14px;
    }

    .kb-career-heading h2 {
        font-size: 33px;

        letter-spacing: -1.2px;
    }

    .kb-career-heading p {
        font-size: 14px;
    }

    .kb-career-points {
        grid-template-columns: 1fr;
    }

    .kb-career-point {
        min-height: 285px;

        padding: 23px;
    }

    .kb-job-card {
        align-items: flex-start;

        flex-direction: column;

        padding: 19px;
    }

    .kb-job-info {
        width: 100%;
    }

    .kb-job-info h3 {
        font-size: 20px;
    }

    .kb-job-btn {
        width: 100%;
    }

    .kb-career-cta {
        align-items: flex-start;

        flex-direction: column;

        padding: 28px 22px;
    }

    .kb-career-cta h2 {
        font-size: 27px;
    }

    .kb-career-mail {
        width: 100%;
    }

}

@media (max-width:480px) {

    .kb-career-hero h1 {
        font-size: 36px;
    }

    .kb-career-heading h2 {
        font-size: 29px;
    }

    .kb-career-point {
        min-height: 270px;
    }

    .kb-point-icon {
        width: 52px;
        height: 52px;
    }

    .kb-job-info {
        gap: 11px;
    }

    .kb-job-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;
    }

    .kb-job-info h3 {
        font-size: 18px;
    }

    .kb-job-info p {
        font-size: 12px;
    }

    .kb-career-cta h2 {
        font-size: 24px;
    }

}

/* About Us Page Section 1 & 2 */
.kb-corporate-section {
    padding: 90px 0 50px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
}

.kb-corporate-main-card {
    max-width: 1150px;
    margin: 0 auto;
    padding: 50px;
    background: #ffffff;
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.kb-corporate-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #059669, #34d399, #10b981);
}

.kb-corp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: #059669;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.kb-corp-title-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f1f5f9;
}

.kb-corp-heading {
    font-size: 40px;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.5px;
}

.kb-gradient-accent {
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kb-cin-badge-box {
    background: #f8fafc;
    padding: 10px 20px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cin-label {
    font-size: 12px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 1px;
}

.cin-value {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.5px;
}

.kb-corp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.kb-corp-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: #f4fbf7;
    border: 2px solid #a7f3d0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.08);
}

.kb-corp-item.full-width {
    grid-column: span 2;
}

.kb-corp-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
    border-radius: 16px;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
}

.kb-item-title {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.kb-item-desc {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.6;
}

.kb-item-desc.highlight-person {
    font-size: 18px;
    font-weight: 900;
    color: #059669;
}

.phone-numbers-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.phone-pill {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.phone-pill:hover {
    color: #059669;
}

.phone-divider {
    color: #94a3b8;
    font-weight: 700;
}

.kb-sustainability-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #f8fafc 0%, #f0fdf4 100%);
    position: relative;
}

.kb-hero-content {
    max-width: 850px;
    margin: 0 auto 60px;
}

.kb-badge-luxury {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: #059669;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.kb-main-heading {
    font-size: 48px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.kb-gradient-text {
    background: linear-gradient(135deg, #059669, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kb-sub-heading {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.kb-stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.kb-stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
}

.kb-stat-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
    border-radius: 18px;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.25);
}

.kb-stat-details h3 {
    font-size: 30px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 4px;
    line-height: 1;
}

.kb-stat-details p {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    margin: 0;
}

@media (max-width: 991px) {
    .kb-corporate-main-card {
        padding: 30px 20px;
    }
    .kb-corp-title-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .kb-corp-heading {
        font-size: 32px;
    }
    .kb-corp-grid {
        grid-template-columns: 1fr;
    }
    .kb-corp-item.full-width {
        grid-column: span 1;
    }
    .kb-main-heading {
        font-size: 36px;
    }
    .kb-stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .kb-corporate-section {
        padding: 40px 0 20px;
    }
    .kb-corporate-main-card {
        padding: 20px 15px;
        border-radius: 20px;
    }
    .kb-corp-heading {
        font-size: 26px;
    }
    .kb-main-heading {
        font-size: 28px;
    }
    .kb-sub-heading {
        font-size: 15px;
    }
    .kb-corp-item {
        padding: 20px;
        gap: 15px;
    }
    .kb-corp-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    .phone-pill {
        font-size: 14px;
    }
    .kb-stat-box {
        padding: 24px 20px;
    }
    .kb-stat-icon-wrap {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    .kb-stat-details h3 {
        font-size: 24px;
    }
}

/* About Us Page Section 3 */
.kb-services-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.kb-section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.kb-section-heading {
    font-size: 42px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.kb-section-sub {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

.kb-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.kb-service-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.kb-service-card:hover {
    transform: translateY(-8px);
    border-color: #059669;
    background: #f4fbf7;
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.1);
}

.kb-service-icon-box {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
    border-radius: 20px;
    font-size: 28px;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.2);
}

.kb-service-content h3 {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 12px;
    line-height: 1.3;
}

.kb-service-content p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 24px;
    font-weight: 500;
}

.kb-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    margin-top: auto;
}

.kb-service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.kb-service-list li:last-child {
    margin-bottom: 0;
}

.kb-service-list i {
    color: #059669;
    font-size: 16px;
}

@media (max-width: 991px) {
    .kb-services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    .kb-section-heading {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .kb-services-section {
        padding: 60px 0;
    }
    .kb-service-card {
        padding: 30px 20px;
    }
    .kb-section-heading {
        font-size: 28px;
    }
}

/* About Us Page Section 4 */
.kb-why-choose-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.kb-why-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.kb-why-highlight-box {
    background: linear-gradient(135deg, #047857 0%, #059669 50%, #10b981 100%);
    border-radius: 30px;
    padding: 50px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(5, 150, 105, 0.25);
}

.kb-why-highlight-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.kb-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kb-why-highlight-box h3 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.kb-why-highlight-box p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 35px;
    font-weight: 500;
}

.kb-highlight-stats-row {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
}

.stat-box-mini h4 {
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 2px;
    line-height: 1;
}

.stat-box-mini span {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kb-why-features-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kb-stack-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.kb-stack-item:hover {
    transform: translateX(6px);
    border-color: #059669;
    background: #f4fbf7;
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.08);
}

.kb-stack-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.2));
    color: #059669;
    border-radius: 16px;
    font-size: 22px;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.kb-stack-item:hover .kb-stack-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
}

.kb-stack-text h4 {
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}

.kb-stack-text p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .kb-why-wrapper {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
    .kb-why-highlight-box {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .kb-why-choose-section {
        padding: 70px 0;
    }
    .kb-why-highlight-box h3 {
        font-size: 26px;
    }
    .kb-stack-item {
        padding: 20px;
        gap: 15px;
    }
    .kb-stack-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
    .kb-stack-text h4 {
        font-size: 16px;
    }
}

/* About Page Section 5 */
.kb-pipeline-section {
    padding: 150px 0;
    background: radial-gradient(circle at top center, #ffffff 0%, #f1f8f5 100%);
    position: relative;
    overflow: hidden;
}

.kb-mesh-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    z-index: 1;
    pointer-events: none;
}

.mesh-1 {
    top: -5%;
    left: -10%;
    width: 550px;
    height: 550px;
    background: rgba(16, 185, 129, 0.1);
}

.mesh-2 {
    bottom: -5%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(5, 150, 105, 0.08);
}

.mesh-3 {
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 400px;
    background: rgba(52, 211, 153, 0.06);
}

.kb-pipeline-section .container {
    position: relative;
    z-index: 2;
}

.kb-luxury-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 22px;
    border-radius: 100px;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.1);
    margin-bottom: 14px;
}

.pill-sparkle {
    color: #059669;
    font-size: 13px;
}

.pill-text {
    font-size: 11px;
    font-weight: 800;
    color: #059669;
    letter-spacing: 2px;
}

.kb-pipeline-section .kb-section-heading {
    font-size: 46px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.kb-pipeline-section .kb-gradient-text {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kb-pipeline-section .kb-section-sub {
    font-size: 16px;
    color: #475569;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

.kb-pipeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 75px auto 0;
}

.kb-pipeline-connector {
    position: absolute;
    top: 100px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #cbd5e1 0%, #34d399 50%, #cbd5e1 100%);
    z-index: 1;
}

.kb-connector-pulse {
    position: absolute;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, transparent, #059669, transparent);
    animation: pipelinePulse 2.8s infinite ease-in-out;
}

@keyframes pipelinePulse {
    0% { left: 0%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.kb-pipeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 2;
}

.kb-pipeline-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 32px;
    border: 1.5px solid #d1fae5;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.kb-card-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #a7f3d0;
    transition: background 0.4s ease;
}

.kb-card-glass-layer {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.kb-pipeline-card:hover {
    transform: translateY(-16px) scale(1.01);
    border-color: #059669;
    box-shadow: 0 35px 80px rgba(5, 150, 105, 0.2);
}

.kb-pipeline-card:hover .kb-card-accent-bar {
    background: linear-gradient(90deg, #059669, #34d399);
}

.kb-pipeline-card:hover .kb-card-glass-layer {
    opacity: 1;
}

.kb-pipeline-card.kb-card-featured {
    background: linear-gradient(160deg, #ffffff 0%, #eefbf4 100%);
    border-color: #34d399;
    box-shadow: 0 28px 65px rgba(5, 150, 105, 0.12);
}

.kb-pipeline-card.kb-card-featured .kb-card-accent-bar {
    background: linear-gradient(90deg, #059669, #10b981);
}

.kb-card-inner {
    padding: 44px 34px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.kb-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.kb-icon-orb {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(135deg, #a7f3d0 0%, #ffffff 100%);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.1);
    transition: all 0.4s ease;
}

.kb-icon-inner {
    width: 100%;
    height: 100%;
    background: #f0fdf4;
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    font-size: 24px;
    transition: all 0.4s ease;
}

.kb-pipeline-card:hover .kb-icon-orb {
    background: linear-gradient(135deg, #059669, #34d399);
    transform: scale(1.12) rotate(-8deg);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.35);
}

.kb-pipeline-card:hover .kb-icon-inner {
    background: #059669;
    color: #ffffff;
}

.featured-orb {
    background: linear-gradient(135deg, #059669, #34d399);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.3);
}

.featured-orb .kb-icon-inner {
    background: #059669;
    color: #ffffff;
}

.kb-watermark-num {
    font-size: 34px;
    font-weight: 900;
    color: #94a3b8;
    letter-spacing: -1.5px;
    transition: color 0.3s ease;
}

.kb-pipeline-card:hover .kb-watermark-num {
    color: #059669;
}

.featured-num {
    color: #059669;
}

.kb-mini-tag {
    font-size: 10px;
    font-weight: 800;
    color: #059669;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.featured-tag {
    color: #059669;
}

.kb-card-body h3 {
    font-size: 23px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.kb-card-body p {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 35px;
    font-weight: 500;
}

.kb-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e2e8f0;
    padding-top: 22px;
}

.kb-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.active-badge {
    color: #059669;
}

.kb-live-dot {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.kb-pipeline-card:hover .kb-live-dot, .active-dot {
    background: #059669;
    box-shadow: 0 0 0 5px rgba(5, 150, 105, 0.2);
}

.kb-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s ease;
}

.kb-pipeline-card:hover .kb-arrow-btn {
    background: #059669;
    color: #ffffff;
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.35);
}

.featured-arrow {
    background: #059669;
    color: #ffffff;
}

@media (max-width: 991px) {
    .kb-pipeline-connector {
        display: none;
    }
    .kb-pipeline-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .kb-pipeline-section {
        padding: 95px 0;
    }
    .kb-pipeline-section .kb-section-heading {
        font-size: 34px;
    }
    .kb-card-inner {
        padding: 34px 24px;
    }
    .kb-icon-orb {
        width: 64px;
        height: 64px;
    }
    .kb-icon-inner {
        font-size: 20px;
    }
    .kb-card-body h3 {
        font-size: 20px;
    }
}