* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary-color: #121353;
    --secondary-color: #8c0d0d;
    --accent-color: #121353;
    --text-dark: #000000;
    --text-light: #4a4a4a;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --black: #000000;
    --red: #8c0d0d;
    --white: #ffffff;
    --red-dark: #6a0a0a;
    --red-light: #a01010;
    --navy: #121353;
    --navy-dark: #0d0f3d;
    --navy-light: #1a1d6b
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden
}

* {
    will-change: auto
}

img {
    content-visibility: auto
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box
}

.promo-bar {
    background: #121353;
    color: #fff;
    padding: 12px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1)
}

.promo-bar.hidden {
    max-height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1)
}

.promo-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgb(18 19 83 / .15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgb(18 19 83 / .1) 0%, transparent 50%);
    opacity: .6;
    pointer-events: none
}

.promo-glow {
    display: none
}

@keyframes glowPulse {
    0%,
    100% {
        opacity: .3;
        transform: scale(1)
    }
    50% {
        opacity: .4;
        transform: scale(1.05)
    }
}

.promo-particles {
    display: none
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgb(18 19 83 / .4);
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
    animation-duration: 9s
}

.particle:nth-child(3) {
    left: 70%;
    animation-delay: 4s;
    animation-duration: 8.5s
}

.particle:nth-child(4) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 9.5s
}

@keyframes floatParticle {
    0%,
    100% {
        transform: translateY(100%) translateX(0);
        opacity: 0
    }
    20% {
        opacity: .4
    }
    50% {
        transform: translateY(0) translateX(10px);
        opacity: .3
    }
    80% {
        opacity: .4
    }
    100% {
        transform: translateY(-100%) translateX(0);
        opacity: 0
    }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    position: relative;
    z-index: 1;
    gap: 16px
}

.promo-badge-new {
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #121353, #1a1d6b);
    color: #fff;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    box-shadow: 0 2px 8px rgb(18 19 83 / .4);
    flex-shrink: 0;
    position: relative;
    overflow: hidden
}

@keyframes badgeSlide {
    from {
        opacity: 0;
        transform: translateX(-10px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / .2), transparent);
    animation: shine 4s infinite;
    z-index: 1
}

@keyframes shine {
    0% {
        left: -100%
    }
    100% {
        left: 100%
    }
}

.promo-badge-new i {
    font-size: 10px;
    position: relative;
    z-index: 2
}

.promo-main-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 16px
}

.promo-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1
}

.promo-icon-wrapper {
    width: 38px;
    height: 38px;
    background: rgb(255 255 255 / .08);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / .15);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease
}

.icon-bg-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(18 19 83 / .2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px
}

.icon-ring-pulse {
    display: none
}

.promo-icon-wrapper:hover {
    background: rgb(255 255 255 / .12);
    border-color: rgb(255 255 255 / .2)
}

.promo-icon-wrapper:hover .icon-bg-glow {
    opacity: 1
}

.promo-icon-wrapper i {
    font-size: 16px;
    color: #121353;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 6px rgb(18 19 83 / .4));
    transition: transform 0.3s ease
}

.promo-icon-wrapper:hover i {
    transform: scale(1.05)
}

.promo-text-content {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.promo-main-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .1px;
    color: #fff;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap
}

.promo-highlight {
    background: linear-gradient(135deg, #121353, #1a1d6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    font-weight: 800;
    font-size: 15px;
    display: inline-block
}

.promo-separator {
    color: rgb(255 255 255 / .4);
    font-weight: 300
}

.promo-price {
    color: #121353;
    font-weight: 800;
    font-size: 16px;
    text-shadow: 0 0 8px rgb(18 19 83 / .3);
    display: inline-block
}

.promo-sub-text {
    font-size: 11px;
    font-weight: 400;
    color: rgb(255 255 255 / .75);
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 5px
}

.promo-sub-text i {
    font-size: 10px;
    color: rgb(255 255 255 / .6)
}

.promo-right {
    display: flex;
    align-items: center
}

.promo-code-card {
    background: rgb(0 0 0 / .25);
    border: 1px solid rgb(255 255 255 / .15);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgb(0 0 0 / .2)
}

.promo-code-card:hover {
    background: rgb(0 0 0 / .35);
    border-color: rgb(255 255 255 / .25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(0 0 0 / .3)
}

.code-header {
    padding: 5px 12px 3px;
    border-bottom: 1px solid rgb(255 255 255 / .1)
}

.code-label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgb(255 255 255 / .7)
}

.code-body {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px
}

.promo-code {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #121353;
    font-family: 'Courier New', 'Monaco', monospace;
    background: rgb(18 19 83 / .15);
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgb(18 19 83 / .3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.promo-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / .2), transparent);
    transition: left 0.5s
}

.promo-code-card:hover .promo-code::before {
    left: 100%
}

.promo-code-card:hover .promo-code {
    background: rgb(18 19 83 / .25);
    border-color: rgb(18 19 83 / .5);
    box-shadow: 0 0 20px rgb(18 19 83 / .3)
}

.promo-copy-btn {
    background: rgb(255 255 255 / .1);
    border: 1px solid rgb(255 255 255 / .2);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 12px;
    position: relative
}

.promo-copy-btn:hover {
    background: rgb(255 255 255 / .2);
    border-color: rgb(255 255 255 / .3);
    transform: scale(1.05)
}

.promo-copy-btn:active {
    transform: scale(.95)
}

.promo-copy-btn.copied {
    background: var(--success-color);
    border-color: var(--success-color)
}

.btn-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(0 0 0 / .9);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease
}

.promo-copy-btn:hover .btn-tooltip {
    opacity: 1
}

.promo-text {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    flex: 1;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 13px
}

.promo-text i {
    font-size: 14px;
    opacity: .9
}

.promo-close {
    background: transparent;
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: .7;
    padding: 0;
    font-size: 12px;
    flex-shrink: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)
}

.promo-close:hover {
    background: rgba(255, 255, 255, .1);
    opacity: 1
}

.promo-close:hover {
    background: rgb(255 255 255 / .15);
    border-color: rgb(255 255 255 / .25);
    opacity: 1;
    transform: rotate(90deg)
}

.promo-close:active {
    transform: rotate(90deg) scale(.9)
}

.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgb(0 0 0 / .1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5rem;
    max-width: 100%;
    margin: 0;
    padding: 0 30px
}

.navbar .container::after {
    content: '';
    flex: 0 0 2rem
}

.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease
}

.nav-logo:hover {
    transform: scale(1.05)
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700
}

@media (max-width:768px) {
    .nav-logo {
        height: 40px
    }
    .nav-brand h1 {
        font-size: 1.2rem
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: 2rem;
    flex: 1;
    justify-content: flex-start
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    padding: .6rem 0;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease
}

.nav-menu a:hover {
    color: var(--primary-color)
}

.nav-menu a:hover::after {
    width: 100%
}

.nav-dropdown {
    position: relative
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: .75rem;
    background: #fff0;
    z-index: 999;
    pointer-events: none
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: .3rem
}

.nav-dropdown>a i {
    font-size: .8rem;
    transition: transform 0.3s ease;
    margin-left: .2rem
}

.nav-dropdown:hover>a i {
    transform: rotate(180deg)
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 2rem 2.5rem;
    margin: 0;
    width: fit-content;
    max-width: 95vw;
    box-shadow: 0 8px 24px rgb(0 0 0 / .15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    margin-top: .75rem;
    border: 1px solid rgb(0 0 0 / .08);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
    pointer-events: none
}

.dropdown-menu li {
    margin: 0;
    flex: 0 0 auto
}

.dropdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    padding: 1rem .75rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: center;
    border-radius: 6px;
    width: 180px;
    min-width: 160px;
    flex-shrink: 0;
    cursor: pointer;
    pointer-events: auto
}

.dropdown-item::after {
    display: none
}

.dropdown-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid rgb(0 0 0 / .1);
    transition: transform 0.2s ease;
    background: #f5f5f5
}

.dropdown-item:hover {
    background: rgb(18 19 83 / .05);
    color: var(--primary-color)
}

.dropdown-item:hover .dropdown-image {
    transform: scale(1.05);
    border-color: var(--primary-color)
}

.dropdown-item span {
    display: block;
    line-height: 1.2;
    font-size: .85rem;
    word-wrap: break-word;
    overflow-wrap: break-word
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: .7rem 1.4rem !important;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 1rem !important;
    margin-left: .5rem;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.nav-cta::after {
    display: none
}

.nav-cta:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(18 19 83 / .3);
    color: white !important
}

.nav-login {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    border: 1.5px solid var(--primary-color);
    padding: .7rem 1.4rem !important;
    border-radius: 6px;
    font-size: 1rem !important;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.nav-login::after {
    display: none
}

.nav-login:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(18 19 83 / .3)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    gap: 4px
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 10001;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgb(0 0 0 / .1);
    overflow-y: auto;
    pointer-events: auto
}

.mobile-sidebar.active {
    left: 0;
    pointer-events: auto;
    z-index: 10001
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none
}

.mobile-sidebar-overlay.active {
    opacity: 0;
    pointer-events: auto
}

.mobile-sidebar.active {
    pointer-events: auto;
    z-index: 10001
}

.mobile-sidebar-banner {
    background: #f5f5f5;
    color: #333;
    padding: 10px 15px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    width: 100%;
    border-bottom: 1px solid #e0e0e0
}

.mobile-sidebar-header {
    background: linear-gradient(to bottom, #f0f0f0, #e0e0e0);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid silver;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .5), 0 1px 2px rgb(0 0 0 / .1);
    position: relative
}

.mobile-sidebar-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgb(255 255 255 / .6)
}

.mobile-sidebar-logo {
    display: flex;
    align-items: center;
    flex: 1
}

.mobile-nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease
}

.mobile-sidebar-close {
    background: linear-gradient(to bottom, #e8e8e8, #d8d8d8);
    border: 1px solid #a0a0a0;
    border-radius: 3px;
    font-size: 18px;
    color: #2a2a2a;
    cursor: pointer;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .5), 0 1px 1px rgb(0 0 0 / .2);
    min-width: 32px;
    height: 28px
}

.mobile-sidebar-close:hover {
    background: linear-gradient(to bottom, #f0f0f0, #e0e0e0);
    border-color: gray;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .6), 0 1px 2px rgb(0 0 0 / .25)
}

.mobile-sidebar-close:active {
    background: linear-gradient(to bottom, #d0d0d0, #c0c0c0);
    box-shadow: inset 0 1px 2px rgb(0 0 0 / .3);
    transform: translateY(1px)
}

.mobile-sidebar-nav {
    flex: 1;
    background: var(--bg-white);
    padding: 0;
    display: flex;
    flex-direction: column
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: var(--bg-white);
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
    width: 100%;
    box-sizing: border-box
}

.mobile-nav-item:hover {
    background: #f8f8f8
}

.mobile-nav-expandable {
    cursor: pointer
}

.mobile-expand-icon {
    font-size: 14px;
    color: #666;
    transition: transform 0.3s ease;
    transform: rotate(0deg)
}

.mobile-nav-expandable.expanded .mobile-expand-icon {
    transform: rotate(180deg)
}

.mobile-nav-cta {
    background: var(--primary-color) !important;
    color: white !important;
    font-weight: 600 !important;
    margin: .75rem auto !important;
    width: 70% !important;
    max-width: 280px !important;
    box-sizing: border-box !important;
    text-align: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    padding: 14px 20px !important;
    border: none !important;
    box-shadow: 0 2px 4px rgb(0 0 0 / .1) !important;
    transition: all 0.3s ease !important
}

.mobile-nav-cta:hover {
    background: var(--red-dark) !important;
    box-shadow: 0 4px 8px rgb(0 0 0 / .15) !important;
    transform: translateY(-1px) !important
}

.mobile-nav-login {
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    margin: .5rem auto !important;
    width: 70% !important;
    max-width: 280px !important;
    box-sizing: border-box !important;
    text-align: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    padding: 14px 20px !important;
    background: white !important;
    box-shadow: 0 2px 4px rgb(0 0 0 / .1) !important;
    transition: all 0.3s ease !important
}

.mobile-nav-login:hover {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 4px 8px rgb(0 0 0 / .15) !important;
    transform: translateY(-1px) !important
}

.mobile-nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
    width: 100%;
    box-sizing: border-box
}

.mobile-nav-submenu.active {
    max-height: 2000px;
    width: 100%
}

.mobile-dropdown-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    width: 100%;
    list-style: none;
    box-sizing: border-box
}

.mobile-dropdown-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: left;
    border-bottom: 1px solid rgb(0 0 0 / .08);
    background: #fff;
    width: 100%;
    box-sizing: border-box
}

.mobile-dropdown-item:last-child {
    border-bottom: none
}

.mobile-dropdown-item:hover {
    background: rgb(18 19 83 / .05);
    color: var(--primary-color)
}

.mobile-dropdown-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid rgb(0 0 0 / .1);
    transition: transform 0.2s ease;
    background: #f5f5f5
}

.mobile-dropdown-item:hover .mobile-dropdown-image {
    transform: scale(1.05);
    border-color: var(--primary-color)
}

.mobile-dropdown-item span {
    display: block;
    line-height: 1.4;
    flex: 1
}

.mobile-submenu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px 18px 50px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease
}

.mobile-submenu-item:hover {
    background: #f0f0f0
}

.mobile-submenu-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.mobile-submenu-icon i {
    font-size: 18px;
    color: #66bb6a
}

.mobile-submenu-item:nth-child(2) .mobile-submenu-icon {
    background: #e3f2fd
}

.mobile-submenu-item:nth-child(2) .mobile-submenu-icon i {
    color: #42a5f5
}

.mobile-submenu-item:nth-child(3) .mobile-submenu-icon {
    background: #fff3e0
}

.mobile-submenu-item:nth-child(3) .mobile-submenu-icon i {
    color: #ffa726
}

.mobile-submenu-item:nth-child(4) .mobile-submenu-icon {
    background: #f3e5f5
}

.mobile-submenu-item:nth-child(4) .mobile-submenu-icon i {
    color: #ab47bc
}

.mobile-submenu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mobile-submenu-title {
    font-size: 15px;
    font-weight: 700;
    color: #2a2a2a
}

.mobile-submenu-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4
}

.mobile-submenu-arrow {
    font-size: 12px;
    color: #999;
    flex-shrink: 0
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80);
    background-size: cover;
    background-position: center;
    z-index: 1
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / .85), rgb(18 19 83 / .85))
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    z-index: 2;
    background: #fff0
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 600px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    padding: 80px 0
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px
}

.slide-text {
    text-align: left
}

.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgb(0 0 0 / .4);
    line-height: 1.2;
    letter-spacing: -.5px;
    color: #fff
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgb(0 0 0 / .3);
    line-height: 1.5;
    color: #fff
}

.hero-description {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    margin-bottom: 2.5rem;
    opacity: .95;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgb(0 0 0 / .3);
    color: rgb(255 255 255 / .95)
}

.slide-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    animation: fadeInUp 0.8s ease-out
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    background: rgb(15 23 42 / .8);
    padding: 10px 16px;
    border-radius: 30px;
    border: 1px solid rgb(255 255 255 / .15);
    box-shadow: 0 4px 20px rgb(0 0 0 / .3)
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(255 255 255 / .35);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    padding: 0;
    position: relative;
    border: none;
    flex-shrink: 0
}

.dot.active {
    width: 36px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(135deg, #121353, #1a1d6b);
    box-shadow: 0 2px 10px rgb(18 19 83 / .6)
}

.dot:hover:not(.active) {
    background: rgb(255 255 255 / .55);
    transform: scale(1.15)
}

.carousel-prev,
.carousel-next {
    background: rgb(255 255 255 / .15);
    border: 1.5px solid rgb(255 255 255 / .25);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    font-size: 11px;
    padding: 0;
    box-shadow: 0 2px 10px rgb(0 0 0 / .2);
    flex-shrink: 0;
    position: relative;
    overflow: hidden
}

.carousel-prev::before,
.carousel-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / .15);
    border-radius: 50%;
    transition: transform 0.3s ease
}

.carousel-prev:hover::before,
.carousel-next:hover::before {
    transform: translate(-50%, -50%) scale(1)
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgb(255 255 255 / .15);
    border-color: rgb(255 255 255 / .4);
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgb(0 0 0 / .3)
}

.carousel-prev:active,
.carousel-next:active {
    transform: scale(.96);
    box-shadow: 0 2px 8px rgb(0 0 0 / .2)
}

.carousel-prev i,
.carousel-next i {
    position: relative;
    z-index: 1;
    font-weight: 600
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem
}

.btn-primary {
    background: var(--accent-color);
    color: #fff
}

.btn-primary:hover {
    background: #8c0d0d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(140 13 13 / .5)
}

.btn-secondary {
    background: #fff0;
    color: #fff;
    border: 2px solid #fff
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary-color)
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center
}

.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
    overflow: hidden
}

.trust-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 50%, rgb(18 19 83 / .03) 0%, transparent 50%), radial-gradient(circle at 75% 50%, rgb(0 0 0 / .02) 0%, transparent 50%);
    pointer-events: none
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1
}

.trust-card {
    text-align: center;
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    background: var(--bg-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid #fff0;
    box-shadow: 0 4px 20px rgb(0 0 0 / .08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: trustFadeIn 0.8s ease forwards;
    contain: layout style paint
}

.trust-card:nth-child(1) {
    animation-delay: 0.1s
}

.trust-card:nth-child(2) {
    animation-delay: 0.2s
}

.trust-card:nth-child(3) {
    animation-delay: 0.3s
}

@keyframes trustFadeIn {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.trust-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1
}

.trust-card:hover .trust-accent-line {
    transform: scaleX(1)
}

.trust-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(18 19 83 / .05), transparent);
    transition: left 0.6s ease;
    z-index: 0
}

.trust-card:hover .trust-hover-effect {
    left: 100%
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(18 19 83 / .03), rgb(0 0 0 / .02));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0
}

.trust-card:hover::before {
    opacity: 1
}

.trust-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgb(18 19 83 / .2);
    border-color: rgb(18 19 83 / .2)
}

.trust-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    width: 110px;
    height: 110px
}

.trust-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgb(18 19 83 / .1), rgb(0 0 0 / .05));
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: 1
}

.trust-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border: 2px solid rgb(18 19 83 / .2);
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: 2
}

@keyframes trustRingPulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .5
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: .8
    }
}

.trust-icon {
    position: relative;
    z-index: 3;
    font-size: 3.2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    transition: all 0.5s ease
}

.trust-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgb(18 19 83 / .2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0
}

@keyframes trustGlow {
    0%,
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1)
    }
    50% {
        opacity: .3;
        transform: translate(-50%, -50%) scale(1.2)
    }
}

.trust-card:hover .trust-icon-bg {
    transform: translate(-50%, -50%) scale(1.15);
    background: linear-gradient(135deg, rgb(173 25 25 / .15), rgb(0 0 0 / .08))
}

.trust-card:hover .trust-icon-ring {
    border-color: rgb(173 25 25 / .4);
    transform: translate(-50%, -50%) scale(1.1)
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--red-light)
}

.trust-card:hover .trust-icon-glow {
    opacity: .5
}

.trust-content {
    position: relative;
    z-index: 2
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s ease
}

.trust-card:hover h3 {
    color: var(--primary-color)
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: .95rem;
    transition: color 0.3s ease
}

.trust-card:hover p {
    color: var(--text-dark)
}

.products-section {
    padding: 80px 0;
    background: var(--bg-light)
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark)
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.product-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgb(0 0 0 / .08);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    contain: layout style paint
}

.product-card:nth-child(1) {
    animation-delay: 0.1s
}

.product-card:nth-child(2) {
    animation-delay: 0.2s
}

.product-card:nth-child(3) {
    animation-delay: 0.3s
}

.product-card:nth-child(4) {
    animation-delay: 0.4s
}

.product-card:nth-child(5) {
    animation-delay: 0.5s
}

.product-card:nth-child(6) {
    animation-delay: 0.6s
}

.product-card:nth-child(7) {
    animation-delay: 0.7s
}

.product-card:nth-child(8) {
    animation-delay: 0.8s
}

.product-card:nth-child(9) {
    animation-delay: 0.9s
}

.product-card:nth-child(10) {
    animation-delay: 1s
}

.product-card:nth-child(11) {
    animation-delay: 1.1s
}

.product-card:nth-child(12) {
    animation-delay: 1.2s
}

.product-card:nth-child(13) {
    animation-delay: 1.3s
}

.product-card:nth-child(14) {
    animation-delay: 1.4s
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1
}

.product-card:hover::before {
    transform: scaleX(1)
}

.product-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgb(18 19 83 / .2)
}

.product-image-wrapper {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgb(18 19 83 / .05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none
}

.product-card:hover .product-overlay {
    opacity: 1
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff0;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgb(0 0 0 / .1));
    will-change: transform
}

.product-card:hover .product-image {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 8px 16px rgb(0 0 0 / .15))
}

.product-content {
    padding: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.product-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease
}

.product-card:hover h3 {
    color: var(--primary-color)
}

.product-description {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease
}

.product-card:hover .product-description {
    opacity: 1;
    max-height: 200px
}

.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
    overflow: hidden
}

.process-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgb(18 19 83 / .03) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgb(18 19 83 / .03) 0%, transparent 50%);
    pointer-events: none
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1
}

.step-card {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid #fff0;
    box-shadow: 0 4px 20px rgb(0 0 0 / .08);
    opacity: 0;
    transform: translateY(50px);
    animation: stepFadeIn 0.8s ease forwards;
    contain: layout style paint
}

.step-card:nth-child(1) {
    animation-delay: 0.2s
}

.step-card:nth-child(2) {
    animation-delay: 0.4s
}

.step-card:nth-child(3) {
    animation-delay: 0.6s
}

@keyframes stepFadeIn {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / .05), rgb(18 19 83 / .05));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0
}

.step-card:hover::before {
    opacity: 1
}

.step-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgb(18 19 83 / .2);
    border-color: var(--primary-color)
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -3rem;
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: translateY(-50%);
    z-index: 0;
    opacity: .3
}

.step-card:last-child .step-connector {
    display: none
}

.step-number-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgb(18 19 83 / .3);
    transition: all 0.4s ease
}

.step-number-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: .3;
    z-index: 1
}

@keyframes numberPulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .3
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0
    }
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgb(18 19 83 / .4)
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px
}

.step-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgb(0 0 0 / .1), rgb(18 19 83 / .1));
    border-radius: 50%;
    transition: all 0.4s ease
}

.step-icon {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    transition: all 0.4s ease
}

.step-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    z-index: 1
}

@keyframes iconPulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .5
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0
    }
}

.step-card:hover .step-icon-bg {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(135deg, rgb(0 0 0 / .15), rgb(18 19 83 / .15))
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    color: var(--secondary-color)
}

.step-content {
    position: relative;
    z-index: 2
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s ease
}

.step-card:hover h3 {
    color: var(--primary-color)
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: .95rem;
    transition: color 0.3s ease
}

.step-card:hover p {
    color: var(--text-dark)
}

.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden
}

.benefits-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box
}

.benefits-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 15% 25%, rgb(18 19 83 / .03) 0%, transparent 50%), radial-gradient(circle at 85% 75%, rgb(0 0 0 / .02) 0%, transparent 50%);
    pointer-events: none
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    width: 100%
}

.benefit-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    transform: translateY(0)
}

.benefit-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    transform: translateY(40px)
}

.benefit-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    transform: translateY(40px)
}

.benefit-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    transform: translateY(0)
}

.benefit-item {
    background: var(--bg-white);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid #fff0;
    box-shadow: 0 4px 20px rgb(0 0 0 / .08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: benefitFadeIn 0.8s ease forwards;
    contain: layout style paint
}

.benefit-item:nth-child(1) {
    animation-delay: 0.1s
}

.benefit-item:nth-child(2) {
    animation-delay: 0.2s
}

.benefit-item:nth-child(3) {
    animation-delay: 0.3s
}

.benefit-item:nth-child(4) {
    animation-delay: 0.4s
}

@keyframes benefitFadeIn {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.benefit-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(18 19 83 / .05), transparent);
    transition: left 0.6s ease;
    z-index: 0
}

.benefit-item:hover .benefit-hover-effect {
    left: 100%
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1
}

.benefit-item:hover::before {
    transform: scaleX(1)
}

.benefit-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgb(18 19 83 / .15);
    border-color: rgb(18 19 83 / .2)
}

.benefit-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    width: 100px;
    height: 100px
}

.benefit-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgb(18 19 83 / .1), rgb(0 0 0 / .05));
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: 1
}

.benefit-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgb(18 19 83 / .2);
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: 2
}

@keyframes iconRingRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg)
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

.benefit-item i {
    position: relative;
    z-index: 3;
    font-size: 2.8rem;
    color: var(--primary-color);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px
}

.benefit-icon-shine {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 0;
    height: 0;
    background: linear-gradient(135deg, transparent, rgb(255 255 255 / .3), transparent);
    transition: all 0.6s ease;
    z-index: 4;
    border-radius: 50%
}

.benefit-item:hover .benefit-icon-bg {
    transform: translate(-50%, -50%) scale(1.15);
    background: linear-gradient(135deg, rgb(173 25 25 / .15), rgb(0 0 0 / .08))
}

.benefit-item:hover .benefit-icon-ring {
    border-color: rgb(173 25 25 / .4);
    transform: translate(-50%, -50%) scale(1.1)
}

.benefit-item:hover .benefit-icon-shine {
    width: 120px;
    height: 120px
}

.benefit-item:hover i {
    transform: scale(1.1);
    color: var(--red-light)
}

.benefit-content {
    position: relative;
    z-index: 2
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s ease
}

.benefit-item:hover h4 {
    color: var(--primary-color)
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: .95rem;
    transition: color 0.3s ease
}

.benefit-item:hover p {
    color: var(--text-dark)
}

.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    width: 100%
}

.faq-main-content {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box
}

.faq-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark)
}

.faq-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem
}

.faq-column {
    display: flex;
    flex-direction: column
}

.faq-item-wrapper {
    overflow: hidden
}

.faq-question-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    cursor: pointer
}

.faq-item-wrapper:hover .faq-question-item {
    transform: translateX(5px);
    color: var(--primary-color)
}

.faq-arrow {
    color: #121353;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1)
}

.faq-item-wrapper:hover .faq-arrow {
    transform: translateX(5px) rotate(90deg);
    color: var(--red-light)
}

.faq-question-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease
}

.faq-item-wrapper:hover .faq-question-text {
    color: var(--primary-color)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.4, 0, .2, 1), opacity 0.4s ease, padding 0.4s ease;
    opacity: 0;
    padding: 0 0 0 2rem
}

.faq-item-wrapper:hover .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding: 0 0 1.5rem 2rem
}

.faq-answer p {
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.7;
    margin: 0;
    transform: translateY(-10px);
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1)
}

.faq-item-wrapper:hover .faq-answer p {
    transform: translateY(0)
}

.faq-separator {
    height: 1px;
    background: var(--border-color);
    margin: .5rem 0
}

.reviews-section {
    padding: 0;
    background: var(--bg-white)
}

.reviews-hero {
    position: relative;
    min-height: 450px;
    background: linear-gradient(135deg, rgb(0 0 0 / .75), rgb(18 19 83 / .6)), url(https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=1920&q=80);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden
}

.reviews-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgb(18 19 83 / .2) 0%, transparent 50%);
    pointer-events: none
}

.reviews-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / .5), rgb(18 19 83 / .4))
}

.reviews-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 900px;
    animation: heroFadeIn 1s ease-out
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reviews-hero-title {
    font-size: 4.5rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgb(0 0 0 / .3)
}

.reviews-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: .95;
    max-width: 700px;
    letter-spacing: .5px
}

.reviews-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    position: relative
}

.reviews-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(18 19 83 / .2), transparent)
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px
}

.reviews-carousel {
    display: none;
    position: relative;
    width: 100%;
    margin: 4rem auto 0;
    padding: 0 20px
}

.reviews-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    justify-content: center
}

.review-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative
}

.review-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: reviewFadeIn 0.6s ease forwards
}

.reviews-grid .review-item:nth-child(1) {
    animation-delay: 0.1s;
    margin-top: 0
}

.reviews-grid .review-item:nth-child(2) {
    animation-delay: 0.2s;
    margin-top: -8rem
}

.reviews-grid .review-item:nth-child(3) {
    animation-delay: 0.3s;
    margin-top: 0
}

.reviews-grid .review-item:nth-child(4) {
    animation-delay: 0.4s;
    margin-top: 3rem
}

.reviews-grid .review-item:nth-child(5) {
    animation-delay: 0.5s;
    margin-top: -8rem
}

.reviews-grid .review-item:nth-child(6) {
    animation-delay: 0.6s;
    margin-top: 3rem
}

@keyframes reviewFadeIn {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.review-slide .review-item {
    max-width: 700px;
    margin: 0 auto;
    opacity: 1;
    transform: none;
    animation: none
}

.reviews-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 20px
}

.reviews-carousel-prev,
.reviews-carousel-next {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(18 19 83 / .2);
    font-size: 1.2rem
}

.reviews-carousel-prev:hover,
.reviews-carousel-next:hover {
    background: var(--red-light);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgb(173 25 25 / .3)
}

.reviews-carousel-dots {
    display: flex;
    gap: .8rem;
    align-items: center
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: #fff0;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0
}

.review-dot.active {
    background: var(--primary-color);
    transform: scale(1.3)
}

.review-dot:hover {
    background: var(--red-light);
    border-color: var(--red-light);
    transform: scale(1.2)
}

.review-bubble {
    background: #e8f4f8;
    padding: 2rem 2.5rem;
    border-radius: 28px;
    position: relative;
    margin-bottom: 2.5rem;
    box-shadow: 0 3px 12px rgb(0 0 0 / .08), inset 0 1px 0 rgb(255 255 255 / .5);
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    width: 100%;
    min-height: auto;
    display: block;
    border: 1px solid rgb(255 255 255 / .8)
}

.review-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(255 255 255 / .3), transparent);
    border-radius: 28px;
    pointer-events: none
}

.review-bubble::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid #fff0;
    border-right: 14px solid #fff0;
    border-top: 14px solid #e8f4f8;
    filter: drop-shadow(0 2px 4px rgb(0 0 0 / .08));
    transition: all 0.4s ease
}

.review-item:hover .review-bubble {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgb(173 25 25 / .15), inset 0 1px 0 rgb(255 255 255 / .6);
    background: #d6ebf5;
    border-color: rgb(173 25 25 / .1)
}

.review-item:hover .review-bubble::after {
    border-top-color: #d6ebf5;
    filter: drop-shadow(0 3px 6px rgb(173 25 25 / .15))
}

.review-text {
    color: #2c3e50;
    font-size: .98rem;
    line-height: 1.75;
    margin: 0;
    font-style: normal;
    font-weight: 400;
    position: relative;
    z-index: 1;
    letter-spacing: .2px
}

.review-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
    margin-top: 0;
    padding-top: .5rem
}

.review-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #121353, #1a1d6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.9rem;
    box-shadow: 0 4px 15px rgb(18 19 83 / .25), 0 0 0 4px rgb(255 255 255 / .8);
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    border: 3px solid #fff;
    position: relative;
    z-index: 1
}

.review-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(18 19 83 / .2), rgb(26 29 107 / .2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1
}

.review-item:hover .review-avatar::before {
    opacity: 1
}

.review-item:hover .review-avatar {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgb(18 19 83 / .35), 0 0 0 4px rgb(255 255 255 / .9)
}

.review-info {
    text-align: center
}

.review-name {
    font-weight: 700;
    font-size: .98rem;
    color: #1a1a1a;
    margin-bottom: .3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    transition: color 0.3s ease
}

.review-item:hover .review-name {
    color: #121353
}

.review-business {
    font-size: .88rem;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.3s ease
}

.review-item:hover .review-business {
    color: #888
}

.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
    overflow: hidden
}

.trust-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center
}

.trust-logo-item {
    display: flex;
    justify-content: center;
    align-items: center
}

.trust-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    width: 100%;
    border: 2px solid #fff0
}

.trust-logo-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgb(18 19 83 / .15);
    border-color: rgb(18 19 83 / .2)
}

.trust-logo-img {
    width: auto;
    height: 60px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease
}

.trust-logo-wrapper:hover .trust-logo-img {
    transform: scale(1.1)
}

.trust-logo-text {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: .5px;
    transition: color 0.3s ease
}

.trust-logo-wrapper:hover .trust-logo-text {
    color: var(--primary-color)
}

.trust-cta {
    text-align: center;
    margin-top: 3rem
}

.trust-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #121353, #1a1d6b);
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgb(173 25 25 / .3);
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.trust-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgb(255 255 255 / .2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease
}

.trust-cta-button:hover::before {
    width: 400px;
    height: 400px
}

.trust-cta-button:hover {
    background: linear-gradient(135deg, #6a0a0a, #8c0d0d);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgb(140 13 13 / .4)
}

.trust-cta-button span {
    position: relative;
    z-index: 1
}

.trust-cta-button i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease
}

.trust-cta-button:hover i {
    transform: translateX(5px)
}

.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgb(173 25 25 / .03) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgb(0 0 0 / .02) 0%, transparent 50%);
    pointer-events: none
}

.contact-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgb(18 19 83 / .05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

@keyframes contactGlow {
    0%,
    100% {
        opacity: .5;
        transform: translate(-50%, -50%) scale(1)
    }
    50% {
        opacity: .8;
        transform: translate(-50%, -50%) scale(1.1)
    }
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #121353, #1a1d6b);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgb(18 19 83 / .3)
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-5px)
    }
}

.contact-badge i {
    font-size: .9rem
}

@keyframes badgePulse {
    0%,
    100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -.5px;
    animation: titleFadeIn 0.8s ease-out
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    animation: subtitleFadeIn 0.8s ease-out 0.2s both
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    width: 100%
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgb(0 0 0 / .08);
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    border: 2px solid #fff0
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(18 19 83 / .15);
    border-color: rgb(18 19 83 / .2)
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: .3rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(18 19 83 / .1);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease
}

.contact-item:hover i {
    background: rgb(18 19 83 / .2);
    transform: scale(1.1)
}

.contact-item h4 {
    margin-bottom: .5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700
}

.contact-item p {
    margin: 0;
    color: var(--text-light)
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease
}

.contact-item a:hover {
    color: var(--red-light);
    text-decoration: underline
}

.contact-cta {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem
}

.contact-cta .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    width: 100%;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgb(18 19 83 / .2)
}

.contact-cta .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgb(255 255 255 / .2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease
}

.contact-cta .btn:hover::before {
    width: 300px;
    height: 300px
}

.contact-cta .btn-primary {
    background: linear-gradient(135deg, #121353, #1a1d6b);
    color: #fff;
    border: none
}

.contact-cta .btn-primary:hover {
    background: linear-gradient(135deg, #6a0a0a, #8c0d0d);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(18 19 83 / .4)
}

.contact-cta .btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color)
}

.contact-cta .btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(18 19 83 / .3)
}

.contact-cta .btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    font-size: 1.1rem
}

.contact-cta .btn:hover i {
    transform: scale(1.15)
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgb(0 0 0 / .1);
    border: 2px solid rgb(18 19 83 / .1);
    position: relative;
    overflow: hidden
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease
}

.contact-form:hover::before {
    transform: scaleX(1)
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    background: var(--bg-light);
    color: var(--text-dark)
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgb(18 19 83 / .1);
    transform: translateY(-2px)
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.footer {
    background: #fff;
    color: var(--text-dark);
    width: 100%
}

.footer-top {
    background: var(--bg-white);
    padding: 50px 0;
    border-bottom: 1px solid rgb(18 19 83 / .1)
}

.footer-top-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start
}

.footer-left-section {
    display: flex;
    flex-direction: column;
    gap: 3rem
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem
}

.footer-right-section {
    width: 100%
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 0
}

.footer-logo-img {
    height: auto;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 300px;
    transition: transform 0.3s ease;
    display: block
}

.footer-logo-img:hover {
    transform: scale(1.05)
}

.footer-tagline {
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
    text-align: left
}

.footer-social-links {
    display: flex;
    gap: .75rem;
    margin-top: 0
}

.footer-social-links .social-link {
    width: 42px;
    height: 42px;
    background: rgb(18 19 83 / .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem
}

.footer-social-links .social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px)
}

.footer-chat-btn {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all 0.3s ease;
    margin-top: 0;
    align-self: flex-start
}

.footer-chat-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(18 19 83 / .3)
}

.footer-chat-btn i {
    transition: transform 0.3s ease
}

.footer-chat-btn:hover i {
    transform: translateX(3px)
}

.footer-main {
    background: var(--bg-white);
    padding: 60px 0
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    width: 100%
}

.footer-column:nth-child(1),
.footer-column:nth-child(2),
.footer-column:nth-child(3) {
    grid-row: 1
}

.footer-column:nth-child(1) {
    grid-column: 1
}

.footer-column:nth-child(2) {
    grid-column: 2
}

.footer-column:nth-child(3) {
    grid-column: 3
}

.footer-column:nth-child(4),
.footer-column:nth-child(5),
.footer-column:nth-child(6) {
    grid-row: 2
}

.footer-column:nth-child(4) {
    grid-column: 1
}

.footer-column:nth-child(5) {
    grid-column: 2
}

.footer-column:nth-child(6) {
    grid-column: 3
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    text-transform: none;
    letter-spacing: .3px
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-links li {
    margin-bottom: .75rem
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: .9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: inline-block
}

.footer-links a:hover {
    color: var(--primary-color)
}

.view-all-link {
    color: var(--primary-color) !important;
    font-weight: 600
}

.footer-contact-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.footer-contact-item {
    color: var(--text-light)
}

.footer-contact-item strong {
    display: block;
    color: var(--text-dark);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.footer-contact-item p {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.6;
    margin: .25rem 0
}

.footer-contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease
}

.footer-contact-item a:hover {
    color: var(--primary-color)
}

.footer-bottom {
    background: var(--bg-white);
    padding: 25px 0;
    border-top: 1px solid rgb(18 19 83 / .1);
    text-align: center
}

.footer-bottom p {
    color: var(--text-light);
    font-size: .85rem;
    margin: 0
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0
    }
    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1
    }
    to {
        transform: translateX(100%);
        opacity: 0
    }
}

@media (max-width:992px) {
    .navbar .container {
        gap: 2rem
    }
    .nav-menu {
        gap: 1rem;
        font-size: .9rem
    }
    .dropdown-menu {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        padding: 1.5rem;
        gap: 1.5rem
    }
    .dropdown-item {
        width: 140px;
        min-width: 120px
    }
    .dropdown-image {
        width: 100px;
        height: 100px
    }
    .mobile-dropdown-grid {
        gap: 0;
        padding: 0
    }
    .mobile-dropdown-item {
        padding: .875rem 1rem;
        font-size: .9rem;
        gap: .875rem
    }
    .mobile-dropdown-image {
        width: 45px;
        height: 45px
    }
    .nav-cta,
    .nav-login {
        padding: .5rem 1rem !important;
        font-size: 0.85rem !important
    }
    .slide-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem
    }
    .step-connector {
        display: none
    }
    .process-section {
        padding: 80px 0
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem
    }
    .trust-section {
        padding: 60px 0
    }
    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem
    }
    .trust-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem
    }
    .reviews-grid {
        display: none
    }
    .reviews-carousel {
        display: block;
        max-width: 100%;
        padding: 0 15px
    }
    .reviews-carousel-nav {
        gap: 1rem;
        margin-top: 2rem
    }
    .reviews-carousel-prev,
    .reviews-carousel-next {
        width: 45px;
        height: 45px;
        font-size: 1rem
    }
    .review-dot {
        width: 10px;
        height: 10px
    }
    .reviews-hero-title {
        font-size: 3rem
    }
    .slide-text {
        text-align: center;
        order: 1
    }
    .slide-image {
        order: 2
    }
    .hero-img {
        max-width: 500px
    }
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 16px
    }
    .carousel-prev {
        left: 15px
    }
    .carousel-next {
        right: 15px
    }
}

@media (max-width:768px) {
    .hero {
        min-height: 500px
    }
    .hero-carousel {
        min-height: 500px
    }
    .carousel-slide {
        min-height: 500px;
        padding: 60px 0
    }
    .slide-content {
        gap: 30px;
        padding: 0 15px
    }
    .hero-headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem
    }
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: .75rem
    }
    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: 2rem
    }
    .hero-buttons {
        flex-direction: column;
        gap: .75rem
    }
    .hero-buttons .btn {
        width: 100%
    }
    .hero-img {
        max-width: 100%
    }
    .carousel-dots {
        bottom: 20px;
        padding: 8px 12px;
        gap: 12px
    }
    .dot {
        width: 7px;
        height: 7px
    }
    .dot.active {
        width: 30px;
        height: 5px
    }
    .carousel-prev,
    .carousel-next {
        width: 30px;
        height: 30px;
        font-size: 11px
    }
    .promo-content {
        flex-wrap: wrap;
        padding: 8px 14px;
        gap: 10px
    }
    .promo-badge-new {
        font-size: 9px;
        padding: 3px 10px;
        order: 1;
        width: 100%;
        justify-content: center
    }
    .promo-main-section {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        order: 2
    }
    .promo-left {
        width: 100%;
        justify-content: flex-start;
        gap: 10px
    }
    .promo-icon-wrapper {
        width: 36px;
        height: 36px
    }
    .promo-icon-wrapper i {
        font-size: 14px
    }
    .promo-main-text {
        font-size: 13px
    }
    .promo-highlight {
        font-size: 14px
    }
    .promo-price {
        font-size: 15px
    }
    .promo-sub-text {
        font-size: 10px
    }
    .promo-right {
        width: 100%;
        justify-content: center
    }
    .promo-code-card {
        width: 100%;
        max-width: 400px
    }
    .code-header {
        padding: 4px 10px 2px
    }
    .code-body {
        padding: 5px 10px
    }
    .promo-code {
        font-size: 13px;
        padding: 4px 10px;
        letter-spacing: 1.2px;
        flex: 1
    }
    .promo-copy-btn {
        width: 28px;
        height: 28px;
        font-size: 11px
    }
    .promo-close {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 26px;
        height: 26px;
        font-size: 11px;
        order: 0
    }
}

@media (max-width:768px) {
    .navbar .container {
        gap: 12rem;
        justify-content: space-between
    }
    .nav-menu {
        display: none
    }
    .nav-toggle {
        display: flex
    }
    body.sidebar-open {
        overflow: hidden
    }
    .hero-headline {
        font-size: 2.5rem
    }
    .hero-subtitle {
        font-size: 1.2rem
    }
    .section-title {
        font-size: 2rem
    }
    .contact-content {
        grid-template-columns: 1fr
    }
    .footer-top-content {
        grid-template-columns: 1fr;
        gap: 3rem
    }
    .footer-left-section {
        width: 100%
    }
    .footer-right-section {
        width: 100%
    }
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem 1.5rem
    }
    .footer-column:nth-child(1),
    .footer-column:nth-child(2),
    .footer-column:nth-child(3),
    .footer-column:nth-child(4),
    .footer-column:nth-child(5),
    .footer-column:nth-child(6) {
        grid-row: auto;
        grid-column: auto
    }
    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }
    .trust-logo-wrapper {
        padding: 1.5rem 1rem
    }
    .trust-logo-img {
        width: auto;
        height: 50px;
        max-width: 100%;
        object-fit: contain
    }
    .trust-logo-text {
        font-size: .85rem
    }
    .trust-cta-button {
        padding: 1rem 2rem;
        font-size: .95rem;
        flex-direction: column;
        gap: .5rem
    }
    .trust-cta-button span {
        text-align: center
    }
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem
    }
    .footer-contact-column {
        grid-column: span 2
    }
    .footer-top-content {
        flex-direction: column
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }
    .product-image-wrapper {
        height: 180px
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem
    }
    .step-connector {
        display: none
    }
    .step-card {
        padding: 2.5rem 1.5rem
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%
    }
    .benefit-item {
        padding: 2.5rem 2rem;
        transform: translateY(0) !important;
        grid-column: 1 !important
    }
    .benefit-item:nth-child(1),
    .benefit-item:nth-child(2),
    .benefit-item:nth-child(3),
    .benefit-item:nth-child(4) {
        grid-row: auto !important
    }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }
    .trust-card {
        padding: 2.5rem 2rem
    }
    .trust-icon-wrapper {
        width: 90px;
        height: 90px
    }
    .trust-icon {
        font-size: 2.5rem;
        width: 90px;
        height: 90px
    }
    .step-icon-wrapper {
        width: 80px;
        height: 80px
    }
    .step-icon {
        font-size: 2rem;
        width: 80px;
        height: 80px
    }
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem
    }
    .faq-columns {
        grid-template-columns: 1fr;
        gap: 2rem
    }
}

@media (max-width:480px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem
    }
    .footer-contact-column {
        grid-column: span 1
    }
    .footer-logo {
        flex-direction: column;
        align-items: flex-start
    }
    .footer-logo-img {
        height: 50px;
        max-width: 250px
    }
    .footer-social-links {
        flex-wrap: wrap
    }
    .footer-chat-btn {
        width: 100%;
        justify-content: center
    }
    .trust-logos {
        grid-template-columns: 1fr;
        gap: 1.2rem
    }
    .trust-logo-wrapper {
        padding: 1.2rem .8rem
    }
    .trust-cta-button {
        padding: .9rem 1.5rem;
        font-size: .85rem;
        width: 100%
    }
    .hero {
        min-height: 450px
    }
    .hero-carousel {
        min-height: 450px
    }
    .carousel-slide {
        min-height: 450px;
        padding: 40px 0
    }
    .slide-content {
        gap: 25px;
        padding: 0 10px
    }
    .hero-headline {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: .75rem
    }
    .hero-subtitle {
        font-size: clamp(0.95rem, 4.5vw, 1.2rem);
        margin-bottom: .5rem
    }
    .hero-description {
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
        margin-bottom: 1.5rem
    }
    .btn-large {
        padding: 12px 24px;
        font-size: .95rem
    }
    .carousel-dots {
        bottom: 15px;
        padding: 6px 10px;
        gap: 10px
    }
    .dot {
        width: 6px;
        height: 6px
    }
    .dot.active {
        width: 26px;
        height: 4px
    }
    .carousel-prev,
    .carousel-next {
        width: 26px;
        height: 26px;
        font-size: 10px
    }
    .promo-text {
        flex-direction: column;
        gap: 5px
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }
    .product-image-wrapper {
        height: 160px
    }
}

html {
    scroll-behavior: smooth
}

.trusted-brands-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden
}

.trusted-brands-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 50%, rgb(18 19 83 / .03) 0%, transparent 50%), radial-gradient(circle at 75% 50%, rgb(0 0 0 / .02) 0%, transparent 50%);
    pointer-events: none
}

.trusted-brands-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1
}

.trusted-brands-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #121353, #1a1d6b);
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgb(18 19 83 / .3)
}

.trusted-brands-badge i {
    font-size: 1rem;
    color: #ffd700
}

.trusted-brands-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

.brands-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0
}

.brands-logo-image {
    width: 80%;
    max-width: 80%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto
}

@media (max-width:992px) {
    .brands-logo-container {
        padding: 1.5rem 0
    }
    .trusted-brands-title {
        font-size: 2rem
    }
}

@media (max-width:768px) {
    .brands-logo-container {
        padding: 1rem 0
    }
    .trusted-brands-title {
        font-size: 1.75rem
    }
    .trusted-brands-badge {
        font-size: .75rem;
        padding: 8px 20px
    }
}

.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
    overflow: hidden
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgb(18 19 83 / .04) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgb(0 0 0 / .03) 0%, transparent 50%);
    pointer-events: none
}

.about-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgb(18 19 83 / .02) 50%, transparent 100%);
    pointer-events: none
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #121353, #1a1d6b);
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgb(18 19 83 / .3)
}

.about-badge i {
    font-size: 1rem;
    color: #ffd700
}

.brand-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
    align-items: center
}

.about-visual-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.about-patches-gallery {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 450px;
    margin: 0 auto
}

.patch-image-item {
    position: absolute;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgb(0 0 0 / .15);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    border: 3px solid #fff;
    z-index: 1
}

.patch-image-item:hover {
    z-index: 10;
    transform: scale(1.1) !important;
    box-shadow: 0 15px 40px rgb(18 19 83 / .3)
}

.patch-main {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5
}

.patch-top-right {
    width: 180px;
    height: 180px;
    top: 0;
    right: 0;
    z-index: 3
}

.patch-bottom-left {
    width: 160px;
    height: 160px;
    bottom: 0;
    left: 0;
    z-index: 2
}

.patch-bottom-right {
    width: 200px;
    height: 200px;
    bottom: 20px;
    right: 20px;
    z-index: 4
}

.patch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease
}

.patch-image-item:hover .patch-img {
    transform: scale(1.15)
}

.about-floating-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 20
}

.floating-stat {
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgb(0 0 0 / .1);
    text-align: center;
    border: 2px solid rgb(18 19 83 / .1);
    transition: all 0.3s ease
}

.floating-stat:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgb(18 19 83 / .2);
    border-color: var(--primary-color)
}

.floating-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1
}

.floating-label {
    font-size: .75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

.about-content-side {
    display: flex;
    flex-direction: column;
    gap: 3rem
}

.about-story {
    position: relative;
    padding-left: 3rem
}

.story-icon {
    position: absolute;
    left: -25px;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--red-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgb(18 19 83 / .3)
}

.story-icon i {
    font-size: 1.8rem;
    color: #fff
}

.about-story h3 {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1.5rem
}

.about-story p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    margin: 0
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
}

.feature-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgb(0 0 0 / .08);
    transition: all 0.3s ease;
    border: 2px solid #fff0;
    position: relative;
    overflow: hidden;
    contain: layout style paint
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1
}

.feature-box:hover::before {
    transform: scaleX(1)
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgb(18 19 83 / .15);
    border-color: rgb(18 19 83 / .2)
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgb(18 19 83 / .1), rgb(0 0 0 / .05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease
}

.feature-box:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--red-light));
    transform: scale(1.1)
}

.feature-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease
}

.feature-box:hover .feature-icon-wrapper i {
    color: #fff;
    transform: rotate(5deg)
}

.feature-box h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: .75rem;
    transition: color 0.3s ease
}

.feature-box:hover h4 {
    color: var(--primary-color)
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: .95rem;
    margin: 0
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    margin-top: 4rem
}

.stat-item {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgb(0 0 0 / .08);
    transition: all 0.3s ease;
    border: 2px solid #fff0;
    position: relative;
    overflow: hidden;
    contain: layout style paint
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1
}

.stat-item:hover::before {
    transform: scaleX(1)
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgb(18 19 83 / .15);
    border-color: rgb(18 19 83 / .2)
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgb(18 19 83 / .1), rgb(0 0 0 / .05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--red-light));
    transform: scale(1.1)
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease
}

.stat-item:hover .stat-icon i {
    color: #fff
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: .5rem;
    line-height: 1;
    transition: color 0.3s ease
}

.stat-item:hover .stat-number {
    color: var(--red-light)
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

@media (max-width:992px) {
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 4rem
    }
    .about-patches-gallery {
        max-width: 450px;
        height: 400px
    }
    .patch-main {
        width: 240px;
        height: 240px
    }
    .patch-top-right {
        width: 150px;
        height: 150px
    }
    .patch-bottom-left {
        width: 130px;
        height: 130px
    }
    .patch-bottom-right {
        width: 170px;
        height: 170px
    }
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .about-section {
        padding: 80px 0
    }
    .about-patches-gallery {
        max-width: 100%;
        height: 350px;
        margin-bottom: 2rem
    }
    .patch-main {
        width: 200px;
        height: 200px
    }
    .patch-top-right {
        width: 120px;
        height: 120px;
        top: 10px;
        right: 10px
    }
    .patch-bottom-left {
        width: 110px;
        height: 110px;
        bottom: 10px;
        left: 10px
    }
    .patch-bottom-right {
        width: 140px;
        height: 140px;
        bottom: 10px;
        right: 10px
    }
    .about-story {
        padding-left: 2rem
    }
    .story-icon {
        width: 50px;
        height: 50px
    }
    .story-icon i {
        font-size: 1.5rem
    }
    .about-story h3 {
        font-size: 1.5rem
    }
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }
    .stat-item {
        padding: 2rem 1.5rem
    }
    .stat-number {
        font-size: 2.5rem
    }
    .about-floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
        gap: 1.5rem
    }
}

@media (max-width:480px) {
    .about-stats-row {
        grid-template-columns: 1fr
    }
    .stat-item {
        padding: 1.5rem 1rem
    }
    .stat-number {
        font-size: 2rem
    }
    .about-patches-gallery {
        grid-template-columns: 1fr !important;
        gap: .8rem !important;
        padding: 1rem 0 !important
    }
    .patch-image-item {
        grid-column: span 1 !important;
        grid-row: auto !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 !important;
        margin: 0 !important
    }
    .patch-main {
        width: 100% !important;
        height: auto !important;
        grid-column: span 1 !important;
        grid-row: 1 !important
    }
    .patch-top-right {
        width: 100% !important;
        height: auto !important;
        grid-column: span 1 !important;
        grid-row: 2 !important
    }
    .patch-bottom-left {
        width: 100% !important;
        height: auto !important;
        grid-column: span 1 !important;
        grid-row: 3 !important
    }
    .patch-bottom-right {
        width: 100% !important;
        height: auto !important;
        grid-column: span 1 !important;
        grid-row: 4 !important
    }
    .about-floating-stats {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important
    }
    .floating-stat {
        padding: .7rem 1rem
    }
    .floating-number {
        font-size: 1.3rem
    }
    .floating-label {
        font-size: .65rem
    }
}

.blog-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
    overflow: hidden
}

.blog-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 50%, rgb(18 19 83 / .03) 0%, transparent 50%), radial-gradient(circle at 75% 50%, rgb(0 0 0 / .02) 0%, transparent 50%);
    pointer-events: none
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem
}

.blog-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgb(0 0 0 / .08);
    transition: all 0.3s ease;
    border: 2px solid #fff0;
    display: flex;
    flex-direction: column;
    contain: layout style paint
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1
}

.blog-card:hover::before {
    transform: scaleX(1)
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgb(18 19 83 / .15);
    border-color: rgb(18 19 83 / .2)
}

.blog-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgb(18 19 83 / .1), rgb(0 0 0 / .05));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: #fff;
    padding: .4rem 1rem;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    z-index: 2
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: .85rem;
    color: var(--text-light);
    flex-wrap: wrap
}

.blog-date,
.blog-author {
    display: flex;
    align-items: center;
    gap: .4rem
}

.blog-date i,
.blog-author i {
    font-size: .75rem
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease
}

.blog-card:hover .blog-title {
    color: var(--primary-color)
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    font-size: .95rem;
    margin: 0;
    flex: 1
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all 0.3s ease;
    margin-top: auto
}

.blog-read-more:hover {
    color: var(--red-light);
    gap: .8rem
}

.blog-read-more i {
    transition: transform 0.3s ease
}

.blog-read-more:hover i {
    transform: translateX(5px)
}

.blog-cta {
    text-align: center;
    position: relative;
    z-index: 1
}

@media (max-width:992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem
    }
}

@media (max-width:768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }
    .blog-image {
        height: 180px
    }
    .blog-content {
        padding: 1.5rem
    }
}

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(18 19 83 / .95), rgb(26 29 107 / .95)), url(https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 50%, rgb(0 0 0 / .2) 0%, transparent 50%);
    pointer-events: none
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / .4), rgb(18 19 83 / .5));
    z-index: 1
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(255 255 255 / .2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgb(255 255 255 / .3)
}

.cta-badge i {
    font-size: .9rem;
    color: #ffd700
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgb(0 0 0 / .3);
    color: #fff
}

.cta-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: .95;
    color: #fff
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: .8rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500
}

.cta-feature i {
    color: #ffd700;
    font-size: 1.2rem
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap
}

.cta-buttons .btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 6px 20px rgb(0 0 0 / .3);
    transition: all 0.4s ease
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #fff, #f0f0f0);
    color: var(--primary-color);
    border: none
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgb(0 0 0 / .4)
}

.cta-buttons .btn-secondary {
    background: #fff0;
    color: #fff;
    border: 2px solid #fff
}

.cta-buttons .btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgb(0 0 0 / .4)
}

@media (max-width:768px) {
    .cta-section {
        padding: 80px 0
    }
    .cta-title {
        font-size: 2.5rem
    }
    .cta-subtitle {
        font-size: 1.1rem
    }
    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%
    }
    .cta-buttons .btn-large {
        width: 100%;
        max-width: 400px
    }
    .about-section .container {
        padding: 0 20px
    }
    .about-header {
        margin-bottom: 3rem
    }
    .about-badge {
        font-size: .75rem;
        padding: 8px 18px;
        margin-bottom: 1rem
    }
    .about-main-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        margin-bottom: 3rem !important
    }
    .about-visual-side {
        width: 100%;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center
    }
    .about-patches-gallery {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        padding: 1.5rem 0 !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        margin: 0 auto
    }
    .patch-image-item {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 !important;
        margin: 0 !important;
        transform: none !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 15px rgb(0 0 0 / .1) !important
    }
    .patch-main {
        width: 100% !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        position: relative !important;
        margin: 0 !important;
        grid-column: span 2 !important
    }
    .patch-top-right {
        width: 100% !important;
        height: auto !important;
        top: auto !important;
        right: auto !important;
        position: relative !important;
        margin: 0 !important;
        grid-column: 1 !important;
        grid-row: 2 !important
    }
    .patch-bottom-left {
        width: 100% !important;
        height: auto !important;
        bottom: auto !important;
        left: auto !important;
        position: relative !important;
        margin: 0 !important;
        grid-column: 2 !important;
        grid-row: 2 !important
    }
    .patch-bottom-right {
        width: 100% !important;
        height: auto !important;
        bottom: auto !important;
        right: auto !important;
        position: relative !important;
        margin: 0 !important;
        grid-column: span 2 !important;
        grid-row: 3 !important
    }
    .patch-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important
    }
    .about-floating-stats {
        position: static !important;
        flex-direction: row !important;
        justify-content: center !important;
        margin-top: 2rem !important;
        gap: 1.5rem !important;
        width: 100%
    }
    .floating-stat {
        padding: .8rem 1.2rem
    }
    .floating-number {
        font-size: 1.5rem
    }
    .floating-label {
        font-size: .7rem
    }
    .about-content-side {
        width: 100%
    }
    .about-story {
        padding-left: 0 !important;
        padding-top: 3rem;
        position: relative
    }
    .story-icon {
        position: absolute !important;
        left: 50% !important;
        top: 0 !important;
        transform: translateX(-50%) !important;
        width: 50px !important;
        height: 50px !important
    }
    .story-icon i {
        font-size: 1.5rem !important
    }
    .about-story h3 {
        font-size: 1.5rem !important;
        text-align: center;
        margin-bottom: 1rem;
        margin-top: 1rem
    }
    .about-story p {
        font-size: .95rem !important;
        text-align: center;
        line-height: 1.7 !important;
        padding: 0 10px
    }
    .about-features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important
    }
    .feature-box {
        padding: 1.5rem !important
    }
    .feature-icon-wrapper {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 1rem !important
    }
    .feature-icon-wrapper i {
        font-size: 1.5rem !important
    }
    .feature-box h4 {
        font-size: 1.1rem !important
    }
    .feature-box p {
        font-size: .9rem !important
    }
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        margin-top: 3rem !important
    }
    .stat-item {
        padding: 2rem 1.5rem !important
    }
    .stat-icon {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: .8rem !important
    }
    .stat-icon i {
        font-size: 1.3rem !important
    }
    .stat-number {
        font-size: 2.5rem !important
    }
    .stat-label {
        font-size: .9rem !important
    }
}

@media (max-width:480px) {
    .about-section {
        padding: 60px 0 !important
    }
    .about-header {
        margin-bottom: 2rem
    }
    .about-badge {
        font-size: .7rem;
        padding: 6px 15px
    }
    .section-title {
        font-size: 1.75rem !important
    }
    .section-subtitle {
        font-size: .95rem !important
    }
    .about-patches-gallery {
        min-height: 250px;
        padding: 1.5rem 0
    }
    .patch-image-item {
        width: 48% !important;
        margin: 3px
    }
    .patch-main,
    .patch-top-right,
    .patch-bottom-left,
    .patch-bottom-right {
        width: 48% !important
    }
    .about-floating-stats {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important
    }
    .floating-stat {
        padding: .7rem 1rem
    }
    .floating-number {
        font-size: 1.3rem
    }
    .floating-label {
        font-size: .65rem
    }
    .about-story {
        padding-top: 2.5rem
    }
    .story-icon {
        width: 45px !important;
        height: 45px !important
    }
    .story-icon i {
        font-size: 1.3rem !important
    }
    .about-story h3 {
        font-size: 1.3rem !important;
        margin-top: .8rem
    }
    .about-story p {
        font-size: .9rem !important;
        padding: 0
    }
    .about-features-grid {
        gap: 1.2rem !important
    }
    .feature-box {
        padding: 1.2rem !important
    }
    .feature-icon-wrapper {
        width: 45px !important;
        height: 45px !important
    }
    .feature-icon-wrapper i {
        font-size: 1.3rem !important
    }
    .feature-box h4 {
        font-size: 1rem !important
    }
    .feature-box p {
        font-size: .85rem !important
    }
    .about-stats-row {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
        margin-top: 2rem !important
    }
    .stat-item {
        padding: 1.5rem 1rem !important
    }
    .stat-icon {
        width: 40px !important;
        height: 40px !important
    }
    .stat-icon i {
        font-size: 1.2rem !important
    }
    .stat-number {
        font-size: 2rem !important
    }
    .stat-label {
        font-size: .85rem !important
    }
}