/* ============================================
   KONTOMISTRZ - HYPER PREMIUM ABOUT PAGE
   Modern, animated, glass-morphism design
   ============================================ */

/* === CSS Variables === */
:root {
    --about-primary: #493EFB;
    --about-primary-dark: #3730a3;
    --about-secondary: #FFA135;
    --about-gradient-1: linear-gradient(135deg, #493EFB 0%, #8B5CF6 50%, #FFA135 100%);
    --about-gradient-2: linear-gradient(180deg, #EEF2FF 0%, #FFFFFF 100%);
    --about-gradient-3: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    --about-glass: rgba(255, 255, 255, 0.85);
    --about-glass-border: rgba(255, 255, 255, 0.3);
    --about-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --about-shadow-md: 0 10px 40px rgba(73, 62, 251, 0.15);
    --about-shadow-lg: 0 25px 80px rgba(73, 62, 251, 0.2);
    --about-shadow-glow: 0 0 60px rgba(73, 62, 251, 0.3);
}

/* === Global Page Wrapper === */
.page-about {
    overflow-x: hidden;
    background: var(--about-gradient-2);
}

/* Breadcrumbs Override for About Page */
.page-about .breadcrumbs-custom {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
}

.page-about .breadcrumbs-custom a,
.page-about .breadcrumbs-custom span {
    color: rgba(255, 255, 255, 0.7) !important;
}

.page-about .breadcrumbs-custom a:hover {
    color: #FFA135 !important;
}

.page-about .breadcrumbs-custom .breadcrumbs__separator {
    color: rgba(255, 255, 255, 0.5) !important;
}

.page-about .breadcrumbs-custom .breadcrumbs__current {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ============================================
   HERO SECTION - Immersive 3D Experience
   ============================================ */
.about-hero {
    position: relative !important;
    padding: 120px 0 80px !important;
    background: var(--about-gradient-3) !important;
    background-image: none !important;
    overflow: hidden !important;
    min-height: auto !important;
}

/* Animated Background Elements */
.about-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background:
        radial-gradient(ellipse 800px 800px at 20% 30%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 600px 600px at 80% 70%, rgba(255, 161, 53, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 400px 400px at 60% 20%, rgba(73, 62, 251, 0.3) 0%, transparent 50%);
    animation: heroGradientFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

@keyframes heroGradientFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, -2%) rotate(1deg); }
    50% { transform: translate(-1%, 2%) rotate(-1deg); }
    75% { transform: translate(-2%, -1%) rotate(0.5deg); }
}

/* Floating Orbs */
.about-hero .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: orbFloat 15s ease-in-out infinite;
}

.about-hero .orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.5);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.about-hero .orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 161, 53, 0.4);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.about-hero .orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(73, 62, 251, 0.4);
    top: 40%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Hero Content */
.about-hero__container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-hero__body {
    text-align: center;
}

.about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease-out;
}

.about-hero__badge svg {
    width: 16px;
    height: 16px;
}

.about-hero__title {
    font-size: clamp(40px, 6vw, 72px) !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
    letter-spacing: -0.02em !important;
    text-align: center !important;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.about-hero__title span {
    background: linear-gradient(135deg, #FFA135 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero__text {
    font-size: clamp(18px, 2vw, 22px) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.7 !important;
    max-width: 800px !important;
    margin: 0 auto 32px !important;
    text-align: center !important;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-hero__desc {
    font-size: clamp(16px, 1.5vw, 20px) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 700px !important;
    margin: 0 auto 48px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    font-weight: normal !important;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Hero Banks Grid */
.about-hero__banks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-hero__bank {
    flex: 0 0 auto;
}

.about-hero__bank a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 12px 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.about-hero__bank a:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 161, 53, 0.3);
    border-color: var(--about-secondary);
}

.about-hero__bank img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* ============================================
   TEAM SECTION - Cards with 3D Hover
   ============================================ */
.about-team {
    position: relative !important;
    padding: 120px 0 !important;
    background: var(--about-gradient-2) !important;
    overflow: hidden !important;
}

.about-team::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--about-gradient-3);
    clip-path: ellipse(80% 100% at 50% 0%);
}

.about-team__container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-team__header {
    text-align: center;
    margin-bottom: 64px;
}

.about-team__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(73, 62, 251, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(73, 62, 251, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--about-primary);
    margin-bottom: 24px;
}

.about-team__label svg {
    width: 18px;
    height: 18px;
}

.about-team__title {
    font-size: clamp(36px, 5vw, 56px) !important;
    font-weight: 800 !important;
    color: #1F2937 !important;
    line-height: 1.1 !important;
    margin: 8px 0 20px 0 !important;
    letter-spacing: -0.02em !important;
    text-align: center !important;
}

.about-team__text {
    font-size: 18px !important;
    color: #6B7280 !important;
    line-height: 1.7 !important;
    max-width: 600px !important;
    margin: 20px auto 0 auto !important;
    text-align: center !important;
    font-weight: normal !important;
}

/* Team Cards Grid */
.about-team__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    perspective: 1000px;
    margin: 32px 0 0 0 !important;
}

@media (max-width: 992px) {
    .about-team__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-team__list {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Individual Team Card */
.about-team__card {
    position: relative !important;
    background: #fff !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: var(--about-shadow-md) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.about-team__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(73, 62, 251, 0.02) 100%);
    pointer-events: none;
    z-index: 1;
}

.about-team__card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: var(--about-shadow-lg), var(--about-shadow-glow);
}

.about-team__card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.about-team__card-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #fff 0%, transparent 100%);
    z-index: 2;
}

.about-team__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-team__card:hover img {
    transform: scale(1.1);
}

.about-team__wrapper {
    position: relative;
    padding: 24px 28px 32px;
    z-index: 3;
    margin-top: -40px;
    background: #fff;
    border-radius: 20px 20px 0 0;
}

.about-team__name {
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 4px;
}

.about-team__job {
    font-size: 15px;
    font-weight: 600;
    color: var(--about-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-team__job::before {
    content: "";
    width: 24px;
    height: 3px;
    background: var(--about-gradient-1);
    border-radius: 2px;
}

.about-team__info {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-team__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(73, 62, 251, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-team__social:hover {
    background: var(--about-gradient-1);
    transform: scale(1.1) rotate(-5deg);
}

.about-team__social:hover svg path {
    fill: #fff;
}

.about-team__social svg {
    width: 20px;
    height: 20px;
}

.about-team__social svg path {
    fill: var(--about-primary);
    transition: fill 0.3s ease;
}

/* ============================================
   PRODUCTS/MISSION SECTION - Split Layout
   ============================================ */
.about-products {
    position: relative !important;
    padding: 120px 0 !important;
    background: #fff !important;
    overflow: hidden !important;
}

.about-products::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(73, 62, 251, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.about-products__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-products__body {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
    flex-direction: unset !important;
}

@media (max-width: 992px) {
    .about-products__body {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.about-products__col-01 {
    position: relative;
}

.about-products__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #1F2937;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-products__title span {
    color: var(--about-primary);
}

.about-products__text {
    font-size: 17px;
    color: #6B7280;
    line-height: 1.8;
}

.about-products__text p {
    margin-bottom: 20px;
}

.about-products__text p:last-child {
    margin-bottom: 0;
}

/* Floating Stats */
.about-products__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-products__stat {
    background: var(--about-gradient-2);
    border: 1px solid rgba(73, 62, 251, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-products__stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--about-shadow-md);
    border-color: var(--about-primary);
}

.about-products__stat-value {
    font-size: 36px;
    font-weight: 800;
    background: var(--about-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.about-products__stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

/* Product Image */
.about-products__col-02 {
    position: relative;
}

.about-products__image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--about-shadow-lg);
}

.about-products__image-wrapper::before {
    content: "";
    position: absolute;
    inset: -4px;
    background: var(--about-gradient-1);
    border-radius: 36px;
    z-index: -1;
    opacity: 0.5;
}

.about-products__col-02 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
}

/* Decorative Elements */
.about-products__decor {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: var(--about-gradient-1);
    opacity: 0.1;
    z-index: -1;
}

.about-products__decor-1 {
    top: -40px;
    right: -40px;
    transform: rotate(15deg);
}

.about-products__decor-2 {
    bottom: -30px;
    left: -30px;
    transform: rotate(-10deg);
    background: var(--about-secondary);
}

/* ============================================
   FINANCE/ARTICLES SECTION - Premium Slider
   ============================================ */
.about-finance {
    position: relative !important;
    padding: 120px 0 !important;
    background: var(--about-gradient-3) !important;
    overflow: hidden !important;
    min-height: auto !important;
}

.about-finance::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 600px at 10% 90%, rgba(255, 161, 53, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 800px 800px at 90% 10%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.about-finance::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.about-finance__container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-finance__header {
    text-align: center;
    margin-bottom: 64px;
}

.about-finance__title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-finance__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* Slider Cards */
.about-finance-slider__item {
    padding: 0 12px;
}

.about-finance-slider__wrapper {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-finance-slider__wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 161, 53, 0.2);
}

.about-finance-slider__article {
    display: block;
    text-decoration: none;
}

.about-finance-slider__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.about-finance-slider__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-finance-slider__wrapper:hover .about-finance-slider__image img {
    transform: scale(1.1);
}

.about-finance-slider__date {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--about-primary);
    z-index: 10;
}

.about-finance-slider__info {
    padding: 28px;
}

.about-finance-slider__review {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
    margin-bottom: 12px;
}

.about-finance-slider__review svg {
    width: 16px;
    height: 16px;
}

.about-finance-slider__title {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-finance-slider__desc {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-finance-slider__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--about-primary);
    transition: all 0.3s ease;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.about-finance-slider__link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.about-finance-slider__link:hover {
    color: var(--about-secondary);
}

.about-finance-slider__link:hover::after {
    transform: translateX(4px);
}

/* Slider Navigation */
.about-finance-slider__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.about-finance-slider__btn-prev,
.about-finance-slider__btn-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-finance-slider__btn-prev:hover,
.about-finance-slider__btn-next:hover {
    background: var(--about-secondary);
    border-color: var(--about-secondary);
    transform: scale(1.1);
}

.about-finance-slider__btn-prev svg,
.about-finance-slider__btn-next svg {
    width: 24px;
    height: 24px;
}

.about-finance-slider__btn-prev svg path,
.about-finance-slider__btn-next svg path {
    fill: #fff;
}

/* Slider Dots */
.about-finance-slider__dots {
    margin-top: 32px;
}

.about-finance-slider__dots .slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.about-finance-slider__dots .slick-dots li button {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
}

.about-finance-slider__dots .slick-dots li.slick-active button,
.about-finance-slider__dots .slick-dots li:hover button {
    background: var(--about-secondary);
    width: 60px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out both;
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease-out both;
}

.animate-scaleIn {
    animation: scaleIn 0.8s ease-out both;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
    .about-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .about-hero__bank a {
        width: 120px;
        height: 60px;
    }

    .about-team,
    .about-products,
    .about-finance {
        padding: 80px 0;
    }

    .about-products__stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NEWSLETTER SECTION OVERRIDE (from home)
   ============================================ */
.page-about .home-subscribe {
    background: var(--about-gradient-3);
    position: relative;
    overflow: hidden;
}

.page-about .home-subscribe::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 500px at 20% 80%, rgba(255, 161, 53, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 600px 600px at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
}
