:root {
    --color-primary: #2B5C3F;
    --color-primary-light: #3A7A54;
    --color-primary-dark: #1A3A27;
    --color-accent: #E88D39;
    --color-accent-hover: #D07A2E;
    --color-bg-light: #F9F9F7;
    --color-bg-white: #FFFFFF;
    --color-text-main: #2D3748;
    --color-text-muted: #718096;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-soft: 0 10px 40px -10px rgba(43, 92, 63, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(43, 92, 63, 0.15);
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    line-height: 1.2
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

ul {
    list-style: none
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 100px 0
}

.text-center {
    text-align: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem
}

.btn-primary {
    background-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(232, 141, 57, .3)
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 141, 57, .4)
}

.btn-secondary {
    background-color: #fff;
    color: var(--color-primary);
    border: 1px solid rgba(43, 92, 63, .2)
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px)
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: var(--transition);
    padding: 30px 0
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05)
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    text-decoration: none
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain
}

.logo .highlight {
    color: var(--color-primary)
}

.nav-list {
    display: flex;
    gap: 32px
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 8px 0
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition)
}

.nav-link:hover {
    color: var(--color-primary)
}

.nav-link:hover::after {
    width: 100%
}

.dropdown {
    position: relative;
    cursor: pointer
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-glass-border);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 260px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-menu li {
    list-style: none
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition)
}

.dropdown-menu a:hover {
    color: var(--color-primary);
    background: rgba(0, 0, 0, .02)
}

.dropdown-arrow {
    font-size: .7em;
    margin-left: 4px;
    display: inline-block;
    transition: var(--transition)
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg)
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary-dark);
    transition: var(--transition)
}

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 110%;
    background: linear-gradient(135deg, rgba(43, 92, 63, .05) 0, rgba(232, 141, 57, .05) 100%);
    border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
    animation: morph 15s ease-in-out infinite alternate;
    z-index: -1
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30%/40% 50% 60% 50%
    }

    100% {
        border-radius: 60% 40% 30% 70%/60% 50% 40% 50%
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.hero-content {
    animation: fadeUp 1s ease forwards
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(43, 92, 63, .1);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: .875rem;
    margin-bottom: 24px
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -.02em
}

.hero-title span {
    color: var(--color-primary)
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 500px
}

.hero-actions {
    display: flex;
    gap: 16px
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    border-radius: var(--radius-lg);
    background: url('../images/main-photo.webp') center/cover;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, .15);
    animation: fadeLeft 1s ease .3s forwards;
    opacity: 0
}

.glass-card {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft)
}

.stat-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 6s ease-in-out infinite
}

.stat-1 {
    top: 40px;
    left: -40px
}

.stat-2 {
    bottom: 60px;
    right: -30px;
    animation-delay: -3s
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1
}

.stat-text {
    font-size: .875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-top: 4px
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }
}

.section-header {
    margin-bottom: 60px
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.service-card {
    background: var(--color-bg-white);
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, .03);
    overflow: hidden
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(43, 92, 63, .1)
}

.service-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.service-card:hover .service-img {
    transform: scale(1.05)
}

.service-card-content {
    padding: 30px
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 16px
}

.service-text {
    color: var(--color-text-muted);
    margin-bottom: 24px
}

.service-link {
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.gallery-container {
    padding-top: 20px;
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
}

.gallery-swiper {
    padding: 20px 4px 60px 4px !important;
}

.gallery-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    z-index: 5;
}

.gallery-info {
    padding: 24px;
}

.gallery-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
}

.gallery-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.gallery-pagination {
    bottom: 0 !important;
}

.gallery-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

.gallery-nav-next,
.gallery-nav-prev {
    color: var(--color-primary) !important;
    background: #fff !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    top: 140px !important;
    /* Center on image cover (280px / 2) */
    margin-top: 0 !important;
    z-index: 50 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    outline: none !important;
}

.gallery-nav-next::after,
.gallery-nav-prev::after {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
}

.gallery-nav-next:hover,
.gallery-nav-prev:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
}

.gallery-nav-next:active,
.gallery-nav-prev:active {
    transform: scale(0.9) !important;
}

.gallery-nav-next {
    right: -27px !important;
}

.gallery-nav-prev {
    left: -27px !important;
}

@media (max-width: 1400px) {
    .gallery-nav-next {
        right: 15px !important;
        background: rgba(255, 255, 255, 0.9) !important;
    }

    .gallery-nav-prev {
        left: 15px !important;
        background: rgba(255, 255, 255, 0.9) !important;
    }
}

.map-section {
    background-color: var(--color-bg-white)
}

.map-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, .03)
}

.map-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center
}

.filter-btn {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(43, 92, 63, .2);
    background: #fff;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition)
}

.filter-btn:hover {
    border-color: var(--color-primary)
}

.filter-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(43, 92, 63, .2)
}

.interactive-map {
    height: 500px;
    width: 100%;
    border-radius: var(--radius-md);
    z-index: 10;
    background-color: #e5e5e5
}

.leaflet-popup-content-wrapper {
    border-radius: var(--radius-md) !important;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: var(--shadow-hover) !important
}

.leaflet-popup-content {
    margin: 0 !important;
    width: 260px !important
}

.popup-card {
    display: flex;
    flex-direction: column;
    font-family: var(--font-body)
}

.popup-swiper {
    width: 100%;
    height: 180px;
    border-radius: 4px 4px 0 0;
    overflow: hidden
}

.popup-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.popup-swiper .swiper-button-next,
.popup-swiper .swiper-button-prev {
    transform: scale(0.5)
}

.popup-swiper .swiper-button-next {
    right: -5px
}

.popup-swiper .swiper-button-prev {
    left: -5px
}

.popup-info {
    padding: 16px
}

.popup-info h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--color-primary-dark)
}

.popup-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 12px
}

.status-completed {
    background: rgba(43, 92, 63, .1);
    color: var(--color-primary)
}

.status-in-progress {
    background: rgba(232, 141, 57, .1);
    color: var(--color-accent-hover)
}

.popup-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: .85rem;
    color: var(--color-text-muted)
}

.popup-details span strong {
    color: var(--color-text-main)
}

.glass-card-dark {
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff
}

.glass-card-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0, transparent 70%);
    border-radius: 50%
}

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 16px
}

.cta-content p {
    font-size: 1.125rem;
    opacity: .9
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1
}

.form-input {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: 0;
    transition: var(--transition)
}

.form-input:focus {
    box-shadow: 0 0 0 3px rgba(232, 141, 57, .5)
}

.cta-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 1.125rem
}

.footer {
    background-color: var(--color-bg-white);
    padding-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, .05)
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px
}

.footer-desc {
    margin-top: 20px;
    color: var(--color-text-muted);
    max-width: 300px
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 24px
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-contact li,
.footer-links a {
    color: var(--color-text-muted);
    transition: var(--transition)
}

.footer-links a:hover {
    color: var(--color-primary)
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, .05);
    text-align: center;
    color: var(--color-text-muted)
}

.breadcrumbs {
    padding: 24px 24px 0;
    font-size: .875rem;
    color: var(--color-text-muted)
}

.breadcrumbs a {
    color: var(--color-primary)
}

.breadcrumbs a:hover {
    text-decoration: underline
}

.breadcrumbs .separator {
    margin: 0 8px
}

.catalog-title {
    font-size: 3rem;
    margin-bottom: 16px
}

.catalog-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin-bottom: 32px
}

.catalog-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.product-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, .03);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover)
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 600;
    z-index: 10
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
    flex-shrink: 0;
    position: relative;
    overflow: hidden
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.product-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-swiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0 !important
}

.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev {
    position: absolute !important;
    top: 0 !important;
    transform: none !important;
    width: 50% !important;
    height: 100% !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    z-index: 9;
    /* below pagination which is 10 */
}

.product-swiper .swiper-button-prev {
    left: 0 !important;
}

.product-swiper .swiper-button-next {
    right: 0 !important;
}

.product-swiper .swiper-button-next::after,
.product-swiper .swiper-button-prev::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    font-weight: 800;
    opacity: 0;
    transition: all .3s ease;
}

.product-swiper .swiper-button-prev::after {
    left: 10px;
}

.product-swiper .swiper-button-next::after {
    right: 10px;
}

.product-swiper:hover .swiper-button-next::after,
.product-swiper:hover .swiper-button-prev::after {
    opacity: 1;
}

.product-swiper {
    position: relative;
    width: 100%;
    overflow: hidden
}

.product-swiper .swiper-pagination {
    bottom: 10px !important;
    z-index: 10
}

.product-swiper .swiper-pagination-bullet {
    background: #fff !important;
    width: 8px;
    height: 8px;
    opacity: .5;
    transition: all .3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3)
}

.product-swiper .swiper-pagination-bullet-active {
    background: #fff !important;
    opacity: 1;
    width: 20px;
    border-radius: 4px
}

.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 16px
}

.product-specs {
    margin-bottom: 24px;
    flex-grow: 1
}

.product-specs li {
    font-size: .9rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px
}

.product-specs li span {
    color: var(--color-text-main);
    font-weight: 500
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px
}

.price-old {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: .9rem
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary)
}

.w-100 {
    width: 100%
}

.seo-text-section h2 {
    font-size: 2rem;
    margin-bottom: 24px
}

.seo-text-content p {
    margin-bottom: 16px;
    color: var(--color-text-muted)
}

.seo-text-content ul {
    list-style: disc;
    margin-left: 20px;
    color: var(--color-text-muted)
}

.seo-text-content ul li {
    margin-bottom: 8px
}

.seo-text-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--color-primary-dark)
}

.bg-light {
    background-color: var(--color-bg-light)
}

.catalog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px
}

.sort-select {
    padding: 10px 16px;
    border: 1px solid rgba(43, 92, 63, .2);
    border-radius: var(--radius-md);
    background-color: #fff;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--color-text-main);
    cursor: pointer;
    outline: 0;
    transition: var(--transition)
}

.sort-select:focus {
    border-color: var(--color-primary)
}

.product-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.badge-hit {
    background: var(--color-accent)
}

.badge-sale {
    background: #e53e3e
}

.btn-sm {
    padding: 8px 16px;
    font-size: .875rem;
    flex-shrink: 0
}

.product-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px
}

.catalog-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 40px
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 8px
}

.page-dots,
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--color-text-main);
    transition: var(--transition)
}

.page-link {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05)
}

.page-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary)
}

.page-link.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary)
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.trust-item {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, .03);
    transition: var(--transition)
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover)
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px
}

.trust-item h4 {
    font-size: 1.125rem;
    margin-bottom: 12px
}

.trust-item p {
    font-size: .9rem;
    color: var(--color-text-muted)
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft)
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: 0 0;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-main);
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition)
}

.faq-question:hover {
    color: var(--color-primary)
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition)
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out, padding .4s ease;
    padding: 0 24px
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px 24px
}

.faq-answer p {
    color: var(--color-text-muted)
}

.promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    border: 2px solid rgba(255, 255, 255, .1);
    background: linear-gradient(135deg, var(--color-primary-dark) 0, var(--color-primary) 100%);
    position: relative;
    overflow: hidden
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, .05) 0, transparent 60%);
    animation: rotateSlow 20s linear infinite
}

.promo-content {
    flex: 1;
    position: relative;
    z-index: 2
}

.promo-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: .875rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(230, 126, 34, .3)
}

.promo-banner h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #fff
}

.highlight-gift {
    color: var(--color-accent)
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, .1);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    min-width: 70px;
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(5px)
}

.timer-box span {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    color: #fff
}

.timer-box small {
    font-size: .75rem;
    color: rgba(255, 255, 255, .7);
    margin-top: 4px
}

.timer-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .5)
}

.promo-action {
    position: relative;
    z-index: 2
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition)
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2)
}

.modal-overlay.active .modal-content {
    transform: translateY(0)
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: 0 0;
    border: none;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition)
}

.modal-close:hover {
    color: var(--color-primary)
}

.modal-header {
    margin-bottom: 24px;
    text-align: center
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 12px
}

.text-primary {
    color: var(--color-primary)
}

.text-sm {
    font-size: .875rem
}

.text-muted {
    color: var(--color-text-muted)
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.form-policy {
    font-size: .75rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 12px
}

/* Custom Checkbox Styles to guarantee visibility on all platforms */
.custom-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
    user-select: none;
    position: relative;
}

.custom-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox-box {
    min-width: 18px;
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 2px solid var(--color-accent);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: 2px;
}

.custom-checkbox-input:checked~.custom-checkbox-box {
    background-color: var(--color-accent);
}

.custom-checkbox-input:checked~.custom-checkbox-box::after {
    content: "✓";
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.custom-checkbox-text {
    flex: 1;
}

.product-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start
}

.product-gallery {
    position: relative;
    width: 100%
}

.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--shadow-hover);
    position: relative;
    width: 100%;
    background-color: var(--color-bg-white)
}

.gallery-main .swiper-slide {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center
}

.gallery-main img {
    width: 100%;
    height: 100%;
    max-height: 60vh;
    object-fit: contain;
    display: block
}

.gallery-thumbs {
    box-sizing: border-box;
    padding: 4px 0
}

.gallery-thumbs .swiper-slide {
    height: 80px;
    opacity: .5;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition)
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--color-primary)
}

.gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.product-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px
}

.badge {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 600
}

.badge-hit {
    background: var(--color-accent);
    color: #fff
}

.badge-eco {
    background: #27ae60;
    color: #fff
}

.product-page-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-text-main)
}

.product-page-desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 30px
}

.product-key-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.product-key-specs li {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-bg-alt);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border)
}

.product-key-specs .spec-icon {
    font-size: 1.5rem
}

.product-key-specs strong {
    display: block;
    font-size: .875rem;
    color: var(--color-text-muted);
    margin-bottom: 4px
}

.product-key-specs span {
    display: block;
    font-weight: 600;
    color: var(--color-text-main)
}

.product-page-price-box {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border)
}

.price-label {
    font-size: .875rem;
    color: var(--color-text-muted);
    margin-bottom: 8px
}

.price-val {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1
}

.configs-section {
    padding: 80px 0
}

.config-table-wrapper {
    margin-top: 40px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    overflow-x: auto
}

.config-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 650px
}

.config-table td,
.config-table th {
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-border);
    line-height: 1.5
}

.config-table th {
    background: var(--color-bg-alt);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-main);
    position: relative;
    border-bottom: 2px solid var(--color-border)
}

.config-table td strong {
    color: var(--color-text-main);
    font-size: 1rem
}

.config-table td {
    color: var(--color-text-muted)
}

.highlight-col {
    background-color: rgba(43, 76, 126, .03);
    border-left: 1px solid rgba(43, 76, 126, .05);
    border-right: 1px solid rgba(43, 76, 126, .05)
}

th.highlight-col {
    color: var(--color-primary)
}

.badge-recommend {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: var(--color-accent);
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 600;
    white-space: nowrap
}

.config-table tr:last-child td {
    border-bottom: none
}

.config-table tr:hover td {
    background: rgba(0, 0, 0, .02)
}

.config-table td.highlight-changed {
    color: var(--color-primary);
    font-weight: 600
}

.check {
    color: #27ae60;
    font-weight: 700;
    margin-right: 6px;
    font-size: 1.1em
}

.cross {
    color: #e74c3c;
    font-weight: 700;
    margin-right: 6px;
    font-size: 1.1em
}

.calculator-section {
    padding-bottom: 80px
}

.calculator-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    text-align: left
}

.calc-header {
    text-align: center;
    margin-bottom: 40px
}

.calc-header h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 12px
}

.calc-group {
    background: rgba(255, 255, 255, .05);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, .1)
}

.calc-group-title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 20px
}

.calc-options {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.calc-checkbox input,
.calc-radio input {
    display: none
}

.calc-check-box,
.calc-radio-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition)
}

.calc-checkbox input:checked+.calc-check-box,
.calc-radio input:checked+.calc-radio-box {
    background: rgba(255, 255, 255, .2);
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px var(--color-accent)
}

.check-title,
.radio-title {
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem
}

.check-info {
    display: flex;
    flex-direction: column
}

.check-desc {
    font-size: .875rem;
    color: rgba(255, 255, 255, .7);
    margin-top: 4px
}

.check-price,
.radio-price {
    font-weight: 700;
    color: var(--color-accent);
    white-space: nowrap
}

.calc-footer {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 30px;
    margin-top: 30px
}

.calc-total-box {
    text-align: center;
    margin-bottom: 24px
}

.calc-total-box p {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 8px
}

.calc-total-price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
    line-height: 1
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s cubic-bezier(.5, 0, 0, 1)
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

.transition-delay-1 {
    transition-delay: 0.1s
}

.transition-delay-2 {
    transition-delay: 0.2s
}

@media (max-width:992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-title {
        font-size: 3rem
    }

    .hero-subtitle {
        margin: 0 auto 40px
    }

    .hero-actions {
        justify-content: center
    }

    .hero-image-wrapper {
        height: 400px;
        margin-top: 40px
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .glass-card-dark {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 24px
    }

    .product-container {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .config-table-wrapper {
        margin-top: 24px;
        border-radius: var(--radius-md)
    }
}

@media (max-width:768px) {

    .nav-list,
    .header-phone {
        display: none
    }

    .cta-button,
    .header-actions {
        display: flex;
        align-items: center;
        margin-top: 0;
    }

    /* Keep the call button visible and adjust size for mobile */
    .cta-button,
    .header-actions .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-right: 16px;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }

    .logo {
        margin-right: auto;
    }

    .services-grid {
        grid-template-columns: 1fr
    }


    .catalog-grid {
        grid-template-columns: 1fr
    }

    .trust-grid {
        grid-template-columns: 1fr
    }

    .catalog-title {
        font-size: 2.25rem
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero-title {
        font-size: 2.5rem
    }

    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px
    }

    .promo-timer {
        justify-content: center
    }

    .gallery-main {
        height: 300px
    }

    .calculator-wrapper {
        padding: 24px
    }

    .calc-check-box,
    .calc-radio-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .calc-total-price {
        font-size: 2.5rem
    }
}

.reviews-section {
    background-color: transparent;
    overflow: hidden;
    padding-bottom: 20px
}

.reviews-section .section-header {
    margin-bottom: 40px
}

.reviews-slider-wrapper {
    position: relative;
    padding: 0 50px;
    margin: 40px 0
}

.reviews-slider {
    padding: 20px 0 60px !important;
    overflow: hidden
}

.reviews-slider-wrapper .swiper-button-next,
.reviews-slider-wrapper .swiper-button-prev {
    color: var(--color-primary) !important;
    background: #fff !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    border: 1px solid rgba(0, 0, 0, .05) !important;
    transition: var(--transition) !important;
}

.reviews-slider-wrapper .swiper-button-next:hover,
.reviews-slider-wrapper .swiper-button-prev:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
    border-color: var(--color-primary) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.reviews-slider-wrapper .swiper-button-next::after,
.reviews-slider-wrapper .swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: 800 !important
}

.reviews-slider-wrapper .swiper-button-prev {
    left: 0 !important
}

.reviews-slider-wrapper .swiper-button-next {
    right: 0 !important
}

@media (max-width:768px) {
    .reviews-slider-wrapper {
        padding: 0 10px
    }

    .reviews-slider-wrapper .swiper-button-next,
    .reviews-slider-wrapper .swiper-button-prev {
        display: none !important
    }
}

.review-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, .03);
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 10px;
}

.reviews-slider .swiper-slide {
    height: auto;
    display: flex;
    box-sizing: border-box
}

.review-card::before {
    content: "“";
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 100px;
    color: rgba(var(--color-primary-rgb), .03);
    font-family: serif;
    line-height: 1;
    z-index: 0
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover)
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-bg-white);
    box-shadow: 0 0 0 2px var(--color-primary)
}

.review-author-info {
    display: flex;
    flex-direction: column
}

.review-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-primary-dark)
}

.review-meta {
    font-size: .8rem;
    color: var(--color-text-muted)
}

.review-rating {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1
}

.review-text {
    font-style: italic;
    color: var(--color-text-main);
    line-height: 1.5;
    font-size: .95rem;
    flex-grow: 1;
    position: relative;
    z-index: 1
}

.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative
}

.gallery-main .swiper-button-next,
.gallery-main .swiper-button-prev {
    position: absolute !important;
    top: 0 !important;
    transform: none !important;
    width: 50% !important;
    height: 100% !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9;
}

.gallery-main .swiper-button-prev {
    left: 0 !important;
}

.gallery-main .swiper-button-next {
    right: 0 !important;
}

.gallery-main .swiper-button-next::after,
.gallery-main .swiper-button-prev::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px !important;
    opacity: 0;
    visibility: hidden;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.gallery-main .swiper-button-prev::after {
    left: 15px;
}

.gallery-main .swiper-button-next::after {
    right: 15px;
}

.gallery-main:hover .swiper-button-next::after,
.gallery-main:hover .swiper-button-prev::after {
    opacity: 1;
    visibility: visible;
}

.gallery-main .swiper-button-next:hover::after,
.gallery-main .swiper-button-prev:hover::after {
    background: rgba(255, 255, 255, .3);
    transform: translateY(-50%) scale(1.1);
}

.gallery-thumbs {
    margin-top: 15px !important
}

.gallery-thumbs .swiper-slide {
    opacity: .6;
    transition: all .3s;
    cursor: pointer;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--color-primary)
}

.gallery-thumbs .swiper-slide:hover {
    opacity: 1
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.about-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-muted)
}

.img-responsive {
    max-width: 100%;
    height: auto
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-primary), transparent)
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    width: 100%
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1)
}

.timeline-content {
    width: 45%;
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
    transition: all .4s
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08)
}

.timeline-content.left {
    margin-right: auto;
    text-align: right
}

.timeline-content.right {
    margin-left: auto;
    text-align: left
}

.timeline-year {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: .2;
    line-height: 1;
    margin-bottom: 10px;
    display: block
}

.bank-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center
}

.bank-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.bank-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all .3s ease;
    min-height: 180px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: var(--shadow-soft)
}

.bank-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary-light)
}

.bank-logo-img {
    height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .05))
}

.bank-card:hover .bank-logo-img {
    transform: scale(1.05)
}

.bank-card span {
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    line-height: 1.2
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all .3s;
    border-bottom: 4px solid transparent
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .05)
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 25px
}

@media (max-width:991px) {

    .about-hero-grid,
    .bank-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }

    .about-hero-content {
        order: 2
    }

    .about-hero-image {
        order: 1;
        margin: 0 auto;
        max-width: 600px
    }

    .timeline-line {
        left: 40px;
        transform: none
    }

    .timeline-dot {
        left: 40px;
        transform: translateX(-50%)
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        text-align: left !important
    }

    .values-grid {
        grid-template-columns: 1fr
    }

    .bank-logos {
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-container {
        gap: 8px;
    }

    .logo-img {
        height: 32px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .cta-button,
    .header-actions .btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        margin-right: 8px;
        white-space: nowrap;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 10px 20px;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .glass-card-dark {
        padding: 30px 16px;
    }

    .stat-number {
        font-size: 2rem;
    }
}