/* ==========================================================================
   Variables & Reset
   ========================================================================== */
@font-face {
    font-family: 'TT Firs Neue';
    src: url('../fonts/TTFirsNeue-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('../fonts/TTFirsNeue-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('../fonts/TTFirsNeue-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    /* UI Kit Colors */
    --main-red: #F32B0F;
    --secondary-red: #FF0011;
    --main-orange: #FF4900;
    --sec-orange: #FF753A;
    --main-brown: #150200;
    --sec-brown: #230006;
    --tertiary-brown: #3D0705;

    /* Whites & Blacks */
    --white-100: #FFFFFF;
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-32: rgba(255, 255, 255, 0.32);
    --white-16: rgba(255, 255, 255, 0.16);
    --white-8: rgba(255, 255, 255, 0.08);
    --white-5: rgba(255, 255, 255, 0.05);
    --white-1: rgba(255, 255, 255, 0.01);

    --black-100: #000000;
    --dark-gray: #1E1E1E;
    --light-gray: #939393;

    /* Gradients */
    --gradient-dark: linear-gradient(180deg, var(--main-brown) 0%, var(--black-100) 100%);
    --gradient-brown: linear-gradient(180deg, var(--black-100) 0%, var(--tertiary-brown) 100%);
    --gradient-brand: linear-gradient(180deg, var(--main-red) 0%, var(--secondary-red) 100%);
    --gradient-brite-orange: linear-gradient(180deg, var(--main-red) 0%, var(--sec-orange) 100%);
    --gradient-h2: linear-gradient(180deg, var(--white-100) 0%, var(--main-orange) 100%);
    --gradient-cards: linear-gradient(180deg, var(--white-8) 0%, var(--white-1) 100%);
    --gradient-stroke: linear-gradient(180deg, var(--white-16) 0%, var(--white-1) 100%);

    /* Typography per UI Kit */
    --font-h1: 50px;
    --line-height-h1: 1.1;
    --font-h2: 40px;
    --line-height-h2: 1.3;
    --font-h3: 32px;
    --line-height-h3: 1.5;
    --font-h4: 24px;
    --line-height-h4: 1.5;
    --font-numbers: 60px;
    --line-height-numbers: 1.5;
    --font-button: 18px;
    --line-height-button: 1.5;

    --text-large: 18px;
    --line-height-large: 1.5;
    --text-medium: 16px;
    --line-height-medium: 1.3;
    --text-small: 14px;
    --line-height-small: 1.3;
    --text-xs: 12px;
    --line-height-xs: 1.3;

    /* Old Variables */
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-muted: #888888;
    --accent-color: #F32B0F;
    --accent-hover: #e61a00;
    --card-bg: rgba(25, 25, 25, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);

    --font-main: 'TT Firs Neue', 'Inter', sans-serif;

    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.text-accent {
    color: var(--accent-color);
}

.icon-arrow {
    margin-left: 8px;
    font-weight: 500;
}

/* ==========================================================================
   Global Effects
   ========================================================================== */
.page__glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.page__glow-bg--top {
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

/* ==========================================================================
   UI Components (Buttons, Forms)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition-fast);
}

.btn--primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn--primary:hover {
    background-color: #e61a00;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--white-50);
    margin-left: 32px;
}

.breadcrumbs__link {
    transition: color var(--transition-fast);
}

.breadcrumbs__link:hover {
    color: var(--white-100);
}

.breadcrumbs__separator {
    display: flex;
    align-items: center;
    color: var(--white-32);
}

.breadcrumbs__current {
    color: var(--white-100);
}

.btn--outline {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border-radius: 24px;
}

.btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* State when header becomes fixed on scroll */
.header--fixed {
    position: fixed;
    animation: slideDown 0.4s ease forwards;
    padding: 10px 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header--scrolled .header__container {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.1);
    margin-top: 0;
}

.header__container {
    max-width: 1720px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 14px 14px 38px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    border-radius: 80px;
    margin-top: 0;
    transition: all 0.4s ease;
}

/*
.header--fixed .header__container {
    margin-top: 10px;
}*/

.header__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.nav__list {
    display: flex;
    gap: 30px;
    position: relative;
}

.nav__link {
    font-size: 18px;
    /* From Figma: P (large) 18px */
    font-weight: 450;
    /* They use 450, we can use 400 or 500 depending on what font file is loaded */
    line-height: 1.5;
    color: #ffffff;
    /* They use #FFFFFF instead of muted */
    transition: color var(--transition-fast), opacity var(--transition-fast);
    opacity: 0.8;
    /* Slight opacity so hover makes it 100% */
}

.nav__link.text-accent {
    opacity: 1;
}

.nav__link:hover {
    color: #F32B0F;
    opacity: 1;
}

/* Dropdown Menu */
.nav__item {
    /* Removed position: relative to allow dropdown to align with .nav__list */
}

.dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    transform: translateY(10px);

    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 32px;
    gap: 40px;

    width: 100%;
    min-height: 175px;
    height: auto;

    background: #FFFFFF;
    box-shadow: 0px 4px 29.7px rgba(48, 4, 10, 0.76);
    border-radius: 12px;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}


/* Invisible bridge to keep menu open while moving mouse */
.dropdown::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
}

.nav__item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.dropdown__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 217px;
}

.dropdown__link {
    font-family: 'TT Firs Neue';
    font-style: normal;
    font-weight: 450;
    font-size: 16px;
    line-height: 130%;
    color: #000000;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.dropdown__link:hover {
    color: var(--accent-color);
}


.header__btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px;
    padding-left: 24px;
    gap: 20px;
    background: linear-gradient(93.88deg, #F32B0F -1.94%, #FF0011 100%);
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header__btn:hover {
    background: #000000;
}

.header__btn:hover .header__btn-icon {
    background: #F32B0F;
    color: #FFFFFF;
}

.header__btn-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.header__burger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.header__burger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.header__burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header__btn-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 11px;
    gap: 10px;
    width: 38px;
    height: 38px;
    background: #FFFFFF;
    border-radius: 162px;
    flex: none;
    order: 1;
    flex-grow: 0;
    color: #000000;
    transition: all 0.3s ease;
}

.header__btn-icon svg {
    width: 24px;
    height: 24px;
    flex: none;
}

/* ==========================================================================
   Hero Home Section
   ========================================================================== */
.hero-home {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* Р—Р°С‚РµРјРЅРµРЅРёРµ РІРёРґРµРѕ-С„РѕРЅР° РІРЅРёР·Сѓ (РїРѕСЏРІР»СЏРµС‚СЃСЏ РїСЂРё СЃРєСЂРѕР»Р»Рµ) */
.hero-home__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Р Р°СЃС‚СЏРіРёРІР°РµРј РЅР° РІСЃСЋ РІС‹СЃРѕС‚Сѓ, С‡С‚РѕР±С‹ РЅРµ Р±С‹Р»Рѕ РІРёРґРЅРѕ РІРµСЂС…РЅРµРіРѕ РєСЂР°СЏ */
    /* РџР»Р°РІРЅС‹Р№ РїРµСЂРµС…РѕРґ: РґРѕ СЃРµСЂРµРґРёРЅС‹ РїСЂРѕР·СЂР°С‡РЅРѕ, РїРѕС‚РѕРј РјСЏРіРєРѕ СѓС…РѕРґРёС‚ РІ С‡РµСЂРЅС‹Р№ */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 75%, #000000 100%);
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-home__video-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

.hero-home__video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-home__container {
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 200px;
    /* Header height (~100px) + 100px gap */
    position: relative;
    z-index: 1;
}

.hero-home__content {
    max-width: 850px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Reduced gap to match screenshot */
}

.hero-home__title {
    font-family: 'TT Firs Neue';
    font-weight: 500;
    font-size: 50px;
    line-height: 110%;
    color: #FFFFFF;
}

.hero-home__subtitle {
    font-family: 'TT Firs Neue';
    font-weight: 450;
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    max-width: 560px;
}

.hero-home__btns {
    display: flex;
    gap: 20px;
}

.hero-home__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 48px;
    height: 64px;
    border-radius: 12px;
    font-family: 'TT Firs Neue';
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
}

.hero-home__btn--filled {
    background: #F32B0F;
    color: #FFFFFF;
}

.hero-home__btn--outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);

    color: #FFFFFF;
}

.hero-home__btn.hero-home__btn--outline:hover {
    background: #FFFFFF33;

    backdrop-filter: blur(60px)
}

.hero-home__btn:hover {
    background: #FF0011;

}

/* Card NGFW */
.card-ngfw {
    position: absolute;
    width: 415px;
    height: 430px;
    right: 0;
    bottom: 14px;
    background: linear-gradient(180deg, #000000 0%, #3D0705 100%);
    border-radius: 40px;
    border: 1px solid var(--white-8);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10;
}

.card-ngfw__initial {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.card-ngfw__content {
    padding: 32px 32px 0 32px;
    margin-bottom: 24px;
}

.card-ngfw__title {
    font-family: 'TT Firs Neue';
    font-weight: 450;
    font-size: 32px;
    line-height: 130%;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.card-ngfw__desc {
    font-family: 'TT Firs Neue';
    font-weight: 450;
    font-size: 16px;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.7);
}

.card-ngfw__image {
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-ngfw__image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Expanded State */
.card-ngfw__expanded {
    border-radius: 40px;
    border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 0;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(180deg, #150200 0%, #000000 55%);
}

/* Bottom spacer вЂ” gives breathing room so content sits above the transparent fade zone */
.card-ngfw__expanded::after {
    content: '';
    display: block;
    width: 100%;
    height: 80px;
    flex-shrink: 0;
    pointer-events: none;
}

.card-ngfw__exp-header {
    text-align: center;
    margin-bottom: 80px;
    z-index: 2;
}

.card-ngfw__exp-title {
    font-weight: 500;
    font-size: 50px;
    line-height: 110%;
    color: #F32B0F;

    margin-bottom: 24px;
}

.card-ngfw__exp-subtitle {
    max-width: 480px;
    font-weight: 450;
    font-size: 24px;

    line-height: 130%;

    margin: 0 auto;
    background: linear-gradient(86.82deg, #FFFFFF 50.18%, #FF490D 91.51%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-ngfw__anim-container {
    width: 100%;
    max-width: 1200px;
    height: 520px;
    /* Р¤РёРєСЃРёСЂСѓРµРј РІС‹СЃРѕС‚Сѓ, С‡С‚РѕР±С‹ РЅРµ СЂРѕСЃР»Р° */
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 150px;
    flex-shrink: 0;
    /* Р—Р°РїСЂРµС‰Р°РµРј СЃР¶Р°С‚РёРµ РёР»Рё СЂР°СЃС‚СЏР¶РµРЅРёРµ РІРѕ flex-РєРѕРЅС‚РµР№РЅРµСЂРµ */
}

#ngfw-canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-ngfw__stats {
    display: flex;
    gap: 20px;
    padding: 0 60px;
    width: 100%;
    margin-bottom: 120px;
}

.card-ngfw__stat-card {
    flex: 1;
    background: var(--gradient-cards);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 1;
    visibility: visible;
}

.card-ngfw__stat-value {
    font-family: 'TT Firs Neue';
    font-weight: 450;
    font-size: 32px;
    line-height: 150%;
    color: #FFFFFF;
}

.card-ngfw__stat-value span {
    font-size: 60px;
    font-weight: 500;
    color: var(--main-red);
}

.card-ngfw__stat-desc {
    font-family: 'TT Firs Neue';
    font-weight: 450;
    font-size: 18px;
    line-height: 150%;
    color: var(--white-70);
}

.card-ngfw__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.card-ngfw__cert {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'TT Firs Neue';
    font-weight: 450;
    font-size: 24px;
    color: var(--white-70);
}

.card-ngfw__cert svg {
    width: 24px;
    height: 24px;
}

.card-ngfw__cta {
    width: 271px;
    position: relative;
    z-index: 10;
    transition: none !important;
    will-change: transform;
}

.card-ngfw__cta *,
.card-ngfw__cta::before,
.card-ngfw__cta::after {
    transition: none !important;
}


/* ==========================================================================
   Success Stories Section
   ========================================================================== */









.success-card__logo-box {
    position: absolute;
    left: 32px;
    top: 32px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}



.success-card__bottom-panel {
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 4px;
    min-height: 232px;
    height: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border-radius: 16px;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 24px;
    gap: 20px;
    transition: all 0.4s ease;
}

.success-card__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    /* Use margins for smooth animation instead of gap */
    transition: all 0.4s ease;
}


.success-card:hover .success-card__name {
    margin-bottom: 12px;
    font-family: 'TT Firs Neue';
    font-style: normal;
    font-weight: 450;
    font-size: 32px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0;
    /* Default margin to Details when Desc is hidden */
    transition: margin 0.4s ease;
}

.success-card__description {
    font-family: 'TT Firs Neue';
    font-size: 16px;
    line-height: 140%;
    color: #FFFFFF;
    max-width: 742px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
}

.success-card:hover .success-card__description {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 24px;
    /* Margin to Details */
}

.success-card__details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 0px;
    gap: 20px 12px;
    align-self: stretch;
}

.success-card__detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 4px;
    width: 365px;
    min-width: 320px;
}

.success-card__label {
    font-family: 'TT Firs Neue';
    font-style: normal;
    font-weight: 450;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.success-card__value {
    font-family: 'TT Firs Neue';
    font-style: normal;
    font-weight: 450;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
}

.success-card__action {
    flex: none;
}

.success-card__arrow {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.success-card:hover .success-card__arrow {
    background: var(--main-red);
}

.success-stories__bottom {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 850px;
    z-index: 0;
}

.btn-round {
    display: inline-flex;
    align-items: center;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border-radius: 80px;
    padding: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.btn-round::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 80px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.btn-round::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 80px;
    background: conic-gradient(from var(--angle), rgba(243, 43, 15, 0) 0%, rgba(243, 43, 15, 0) 60%, #F32B0F 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    animation: rotate-gradient 6s linear infinite;
    z-index: 1;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate-gradient {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 360deg;
    }
}

.btn-round:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-round__text {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 24px 0 32px;
    font-family: 'TT Firs Neue', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    text-align: left;
    white-space: nowrap;
}

.btn-round__arrow {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-round:hover .btn-round__arrow {
    background: linear-gradient(93.88deg, #F32B0F -1.94%, #FF0011 100%);
}

/* Responsive */
@media (max-width: 900px) {
    .success-card {
        width: calc(100% - 40px);
        height: auto;
        min-height: 450px;
    }

    .success-stories__stack {
        width: 100%;
    }

    .success-card__details {
        grid-template-columns: 1fr;
    }

    .success-card__name {
        font-size: 24px;
    }
}

/* ==========================================================================
   Highlight Section
   ========================================================================== */
.highlight {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.highlight__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    /* Slightly more height for the "flying" effect */
    background: #000 url('../img/background2.jpg') no-repeat center center;
    background-size: contain;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    display: block;
}



.highlight__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1265px;
}

.highlight__logo-box {
    display: none;
    /* Hidden as we now use the image sequence */
}

.highlight__sequence {
    width: 612px;
    height: 612px;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#sequence-canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.highlight__title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    text-align: center;
    color: #fff;
}

.highlight__title .word-anim {
    display: inline-block;
    background-image: linear-gradient(86.82deg, #FFFFFF 50.18%, #FF490D 91.51%);
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight__logo-img {
    border-radius: 12px;
}



.highlight__text {
    font-size: 24px;
    max-width: 800px;
    margin-bottom: 20px;
    color: #ffd6cc;
}

.highlight__subtext {
    color: #F98A68;
    margin-bottom: 4%;
    font-size: 32px;
    line-height: 130%;
    text-align: center;
}

.highlight__title,
.highlight__subtext {
    opacity: 1;
    transform: none;
}

.highlight__brand {
    opacity: 0;
    transform: translateY(30px);
}

.word-anim {
    display: inline-block;
    white-space: normal;
    margin-right: 0.25em;
}

.highlight__brand {}


.team {
    padding: 100px 0;
}

.team__container {
    max-width: 1250px;
}

.team__video-wrapper {
    position: relative;
    border-radius: 40px;
    /* From Figma overall style */
    overflow: hidden;
    aspect-ratio: 21 / 9;
    height: 705px;
    width: 100%;
    background: var(--dark-gray);
    display: flex;
    align-items: flex-end;
}

.team__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}

.team__video-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.team__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.team__play-btn svg {
    width: 100%;
    height: 100%;
}

.team__play-btn .play-btn__bg {
    transition: fill var(--transition-fast), fill-opacity var(--transition-fast);
}

.team__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.team__play-btn:hover .play-btn__bg {
    fill: var(--main-red);
    fill-opacity: 1;
}

.team__info {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
    padding: 16px 20px;
    backdrop-filter: blur(60px);
    border-radius: 20px;
}

.team__role {
    font-weight: 450;
    font-size: 16px;
    line-height: 130%;
    color: var(--white-100, #FFFFFF);
}

.team__name {
    font-weight: 450;
    font-size: 16px;
    line-height: 130%;
    color: var(--white-32, #FFFFFF52);

}

/* ==========================================================================
   Blog Hero Section
   ========================================================================== */
.blog-hero {
    position: relative;
    width: 100%;
    background: transparent;
    padding-bottom: 72px;
    height: 400px;
}

.triangle-video-bg {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1920px;
    height: 1000px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
    mix-blend-mode: screen;
}

.triangle-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.blog-hero__container {
    position: relative;
    z-index: 1;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-hero__breadcrumbs {
    margin-bottom: auto;
    padding-top: 122px;
    margin-left: 32px;
}



.blog-hero__title {
    font-weight: 500;
    font-size: 50px;
    line-height: 110%;
}

.blog-hero__count {
    font-weight: 450;
    font-size: 18px;
    line-height: 130%;
    -webkit-text-fill-color: initial;
    margin-top: 8px;
}

.blog-content {
    border-radius: 40px;
    /*padding: 48px 0;*/
    margin-bottom: 120px;
}

.blog-content__container {
    padding: 48px;
    border-radius: 40px;
    background-color: #000;
    border: 1px solid var(--Main, #FFFFFF33)
}

.blog-filter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;

}

.blog-filter__right {
    margin-left: auto;
}

.blog-filter__left {
    display: flex;
    align-items: center;
    gap: 40px;
    display: none;
}

.blog-filter__btn {
    font-size: 18px;
    /* From Figma */
    font-weight: 450;
    line-height: 1.2;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

.blog-filter__btn:hover {
    color: var(--accent-color);
}

.blog-filter__arrow {
    font-size: 10px;
    color: #ffffff;
}

.blog-filter__clear {
    font-size: 18px;
    /* From Figma */
    font-weight: 450;
    line-height: 1.2;
    color: #ffffff;
    opacity: 0.2;
    /* From Figma */
    margin-left: 20px;
    transition: opacity var(--transition-fast);
}

.blog-filter__clear:hover {
    opacity: 1;
}

.view-toggle {
    display: flex;
    background: transparent;
    padding: 0;
    gap: 16px;
    /* From Figma */
}

.view-toggle__btn {
    width: 42px;
    /* From Figma */
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 161px;
    /* From Figma 161.5px */
    color: #000;
    /* Icon color in Figma */
    background: rgba(255, 255, 255, 0.15);
    /* From Figma inactive state */
    transition: var(--transition-fast);
}

.view-toggle__btn svg {
    stroke: #fff;
    /* Make stroke white for inactive */
}

.view-toggle__btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.view-toggle__btn.active {
    background: #FFFFFF;
    /* From Figma active state */
    color: #000000;
}

.view-toggle__btn.active svg {
    stroke: #000;
}

/* Grid View (Default) */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    /* From Figma gap: 32px 20px */
    margin-bottom: 48px;
}

.articles-grid .article-item__add-btn {
    display: none;
}

.articles-grid.list-view .article-item__add-btn {
    display: flex;
}

.articles-grid.list-view {
    grid-template-columns: 1fr;
    gap: 32px;
}

.article-item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 4px;
    border-radius: 20px;
    border: 1px solid #FFFFFF33;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease;
}

.article-item:hover {
    background: linear-gradient(172.46deg, rgba(60, 60, 60, 0.5) 2.83%, rgba(0, 0, 0, 0.5) 165.82%);
}

.article-item__image-wrapper {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 32px;
}

.article-item__img {
    width: 100%;
    max-height: 318px;
    border-radius: 16px;

    height: 100%;
    object-fit: cover;
}

/* List View Overrides */
.list-view .article-item {
    flex-direction: row;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 4px;
    background: transparent;
    align-items: center;
}

.list-view .article-item__image-wrapper {
    width: 346px;
    height: 256px;
    border-radius: 12px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.article-item__content {
    padding: 0 28px 28px 28px;
    /* Adjusted for grid view inside 4px padding container */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.list-view .article-item__content {
    padding: 32px 32px 32px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    align-items: flex-start;
}

.article-item__meta {
    display: flex;
    align-items: center;
    gap: 18px;
    /* From Figma */
    font-size: 18px;
    /* From Figma */
    color: #939393;
    /* From Figma */
    margin-bottom: 20px;
}

.article-item__category {
    font-weight: 450;
    font-size: 18px;
    line-height: 150%;
    color: #939393;
}

.article-item__date {
    font-weight: 450;
    font-size: 18px;
    line-height: 150%;
    color: #939393;
}

.list-view .article-item__meta {
    margin-bottom: 0;
}

.article-item__dot {
    width: 6px;
    height: 6px;
    background: #D9D9D9;
    /* From Figma */
    border-radius: 50%;
    display: inline-block;
}

.article-item__title {
    max-width: 650px;
    font-size: 24px;
    line-height: 150%;
}

.article-item__add-btn {
    position: absolute;
    width: 48px;
    /* From Figma */
    height: 48px;
    background: rgba(218, 221, 244, 0.1);
    /* From Figma */
    color: white;
    border-radius: 12px;
    /* From Figma */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: background var(--transition-fast);
}

.article-item__add-btn:hover {
    background: rgba(218, 221, 244, 0.2);
}

.list-view .article-item__add-btn {
    position: absolute;
    right: 32px;
    top: 32px;
    /* Align to the right padding of content */

}

/* Tags List */
.article-item__tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 0px;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    width: 100%;
    height: auto;
    min-height: 40px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.article-item__tag {

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 10px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    flex: none;
    flex-grow: 0;

    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: #FFFFFF;
}

/* Tags in list view */
.list-view .article-item__tags {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 1150px;
    margin-top: auto;
}

.list-view .article-item__tag {

    padding: 12px 24px;
    font-size: 14px;
    line-height: 130%;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.pagination__pages {
    display: flex;
    gap: 16px;
    align-items: center;
    /* From Figma */
    margin: 0 auto;
}

.pagination__page {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0.83px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #FFFFFF;
    transition: all var(--transition-fast);
}

.pagination__page:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.pagination__page.active {
    width: 90px;
    height: 90px;
    background: linear-gradient(93.88deg, #F32B0F -1.94%, #FF0011 100%);
    border: none;
    font-weight: 450;
    font-size: 28px;
    line-height: 130%;
    z-index: 2;
}

/* Neighbor of active - 64px */
.pagination__page.active+.pagination__page,
.pagination__page:has(+ .pagination__page.active) {
    width: 64px;
    height: 64px;
    font-size: 20px;
}

/* Neighbor of neighbor of active - 40px (default, but explicit for clarity) */
.pagination__page.active+.pagination__page+.pagination__page,
.pagination__page:has(+ .pagination__page + .pagination__page.active) {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.pagination__arrow {
    width: 48px;
    /* From Figma */
    height: 48px;
    border-radius: 12px;
    background: rgba(218, 221, 244, 0.1);
    /* From Figma right arrow */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background var(--transition-fast);
}

.pagination__arrow--prev {
    background: rgba(218, 221, 244, 0.2);
    opacity: 0.2;
    rotate: 180deg;
    /* From Figma left arrow inactive */
}

.pagination__arrow:hover {
    background: rgba(218, 221, 244, 0.3);
}

/* ==========================================================================
   Ecosystem & Bottom Stats (Legacy keeping for safety)
   ========================================================================== */
.ecosystem {
    padding: 120px 0;
    text-align: center;
}

.ecosystem__header {
    margin-bottom: 80px;
}

.ecosystem__title {
    background: linear-gradient(86.82deg, #FFFFFF 50.18%, #FF490D 91.51%);
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    text-align: center;
    max-width: 940px;
    margin: 0 auto 20px;
}

.ecosystem__subtitle {
    color: #fff;
    font-weight: 450;
    font-size: 24px;
    line-height: 150%;
    text-align: center;

}

.ecosystem__visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem__circles {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 50px;
}

.ecosystem__circle {
    position: absolute;
    bottom: -50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 31, 0, 0.2);
}

.ecosystem__circle--1 {
    width: 200px;
    height: 200px;
}

.ecosystem__circle--2 {
    width: 350px;
    height: 350px;
    border-color: rgba(255, 31, 0, 0.1);
}

.ecosystem__circle--3 {
    width: 500px;
    height: 500px;
    border-color: rgba(255, 31, 0, 0.05);
}

.ecosystem__logo {
    position: absolute;
    bottom: 10px;
    font-size: 40px;
    font-weight: 700;
    color: var(--accent-color);
}

.bottom-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.bottom-stat-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 32px;
    text-align: start;
    border-radius: 20px;

}

.bottom-stat-card__value {
    color: #F32B0F;
    font-weight: 500;
    font-size: 60px;
    line-height: 150%;
    margin-bottom: 20px;
}

.bottom-stat-card__desc {
    color: #fff;
    font-weight: 450;
    font-size: 24px;
    line-height: 150%;

}

.bottom-stats__action {
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
    padding: 50px 0 0 0;
}

.contact__container {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    padding: 80px;
    gap: 40px;
    width: 100%;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    overflow: hidden;
}

.contact__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;

    height: auto;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 1;
}

.contact__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;

    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.contact__title {
    font-family: 'TT Firs Neue', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0;
}

.contact__desc {
    max-width: 598px;

    font-family: 'TT Firs Neue', sans-serif;
    font-style: normal;
    font-weight: 450;
    font-size: 24px;
    line-height: 130%;
    color: #939393;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.form__input.form__input--phone {
    background-color: transparent;
    padding-left: 0;
}

.contact__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10.56px;
    margin-top: 40px;
}

.contact__logo-symbol {
    position: relative;
    width: 66px;
    height: 66px;
}

.contact__logo-polygon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.contact__logo-polygon--3 {
    width: 52.18px;
    height: 45.19px;
    background: #F32B0F;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}



.form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    isolation: isolate;
    width: 100%;
    max-width: 770px;
    height: auto;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.form__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    isolation: isolate;
    width: 100%;
    max-width: 770px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    z-index: 1;
}

.form__switch {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0px 5px 20px rgba(0, 0, 0, 0.32), inset -2px 2px 4px rgba(0, 0, 0, 0.32);
    border-radius: 16px;
    z-index: 1;
}

.news {
    overflow-x: hidden;
}

.form__switch-inner {
    display: flex;
    flex-direction: row;
    gap: 4px;
    width: 100%;
}

.form__switch-tab {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    gap: 10px;
    flex: 1;
    min-height: 65px;
    border-radius: 12px;
    transition: background 0.3s ease, color 0.3s ease;
}

.form__switch-tab:not(.active):hover {
    background: var(--Ghost-tertiary, #FFFFFF0D);
}

.form__switch-tab.active {
    background: #FFFFFF;
}

.form__switch-tab.active .form__switch-text {
    color: #000000;
}

.form__switch-text {
    width: auto;
    height: 21px;
    font-family: 'TT Firs Neue', sans-serif;
    font-style: normal;
    font-weight: 450;
    font-size: 16px;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.7);
    flex: none;
    order: 0;
    flex-grow: 0;
}

.form__inputs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    isolation: isolate;
    width: 100%;
    max-width: 770px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    z-index: 0;
}

.form__input-group {
    width: 100%;
}

.form__input-group--hidden {
    display: none;
}

.form__input {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 24px 16px 30px;
    gap: 10px;
    width: 100%;
    min-width: 260px;
    height: 72px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: none;
    font-family: 'TT Firs Neue', sans-serif;
    font-weight: 450;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
}

.form__textarea {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 16px 30px;
    gap: 10px;
    width: 100%;
    min-width: 260px;
    min-height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: none;
    font-family: 'TT Firs Neue', sans-serif;
    font-weight: 450;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    resize: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #939393;
}

.form__input--phone {
    min-width: 0 !important;
}

.form__input-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}

.form__input-phone {
    flex: 1;
    min-width: 260px;
}

.form__phone-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 15px 4px 4px;
    gap: 20px;
    width: 100%;
    height: 72px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.form__country {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    gap: 10px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.form__flag {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.form__flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form__country-code {
    font-family: 'TT Firs Neue', sans-serif;
    font-weight: 450;
    font-size: 16px;
    line-height: 130%;
    color: #939393;
}

.form__checkboxes {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 100%;
    max-width: 770px;
    min-height: 52px;
    height: auto;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    z-index: 0;
}

.form__checkbox-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.form__checkbox {
    display: none;
}

.form__checkbox-square {
    width: 15px;
    height: 15px;
    border: 1.25px solid #FFFFFF;
    border-radius: 2px;
    flex: none;
    order: 0;
    flex-grow: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form__checkbox:checked+.form__checkbox-square {
    background-color: transparent;
    border-color: transparent;
    background-image: url('../img/check-square.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 145%;
}

.form__checkbox-label {
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: #FFFFFF;
    flex: 1;
    order: 1;
}

.form__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px;
    width: 100%;
    height: 64px;
    background: linear-gradient(93.88deg, #F32B0F -1.94%, #FF0011 100%);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    z-index: 0;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.form__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.form__button-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 8px 0px 24px;
    gap: 10px;
    width: 100%;
    min-height: 56px;
}

.form__button-text {
    width: auto;
    font-family: 'TT Firs Neue', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.form__button-icon {
    width: 56px;
    height: 56px;

    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    order: 1;
    flex-grow: 0;
    margin-left: auto;
}

.form__input-row .form__input-group {
    flex: 1.5;
    min-width: 260px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact__container {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .contact__content,
    .contact__text,
    .contact__title,
    .form,
    .form__content,
    .form__switch,
    .form__inputs,
    .form__input-row,
    .form__checkboxes,
    .form__button {
        width: 100%;
        max-width: none;
        height: auto;
    }

    .contact__desc {
        width: 100%;
        max-width: none;
    }

    .form__switch-inner {
        width: 100%;
    }

    .form__switch-tab {
        flex: 1;
        padding: 12px;
    }

    /* Keep row horizontal at 1200px, move to column at 768px */
    .form__input-row {
        flex-direction: row;
        gap: 12px;
    }
}


.form__submit {
    width: 100%;
    padding: 20px;
    text-align: start;
    display: flex;
    justify-content: space-between;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    position: relative;
    background: #000;
    overflow: hidden;
    margin-top: 120px;
}

.footer__video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.footer__video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.footer__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.footer__container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.footer__top {
    display: flex;
    flex-direction: row;
    padding: 20px 0 40px;
    /* From Figma */
    margin-bottom: 0;
}

.footer__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 32px;
    gap: 20px;
    border-right: 1px solid #FFFFFF33;
}


/*
.footer__col:first-child {
    border-left: 1px solid #FFFFFF33;
}*/

.footer__col-title {
    text-transform: uppercase;

    font-style: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: #FFFFFF66;

}



.footer__text {

    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;


}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    display: flex;
    align-items: center;
    gap: 8px;

    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
}

.footer__icon-arrow {
    width: 16px;
    height: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer__icon-arrow svg {
    width: 16px;
    height: 16px;
}

.footer__bottom {
    padding: 60px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer__brand-large {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__brand-large svg {
    width: 100%;
    height: auto;
    max-width: 1720px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .stats-cards {
        grid-template-columns: 1fr;
    }

    .clients__grid {
        grid-template-columns: 1fr;
    }

    .clients-main-card {
        min-height: 250px;
    }

    .contact__container {
        flex-direction: column;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-ngfw__title {
        font-size: 28px;
    }

    .header__nav {
        display: none;
    }

    .footer__top {
        grid-template-columns: 1fr;
    }

    .form__group--row-3 {
        flex-direction: column;
    }

    .form__input-row {
        flex-direction: column;
        gap: 20px;
    }

    .form__input-phone {
        width: 100%;
    }
}

/* ==========================================================================
   Animations (Reveal on Scroll, Glows, Hovers)
   ========================================================================== */



/* Continuous Glow Pulse for TT card */
@keyframes pulseGlow {
    0% {
        opacity: 0.4;
        transform: scale(1) translateX(-50%);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1) translateX(-45%);
    }

    100% {
        opacity: 0.4;
        transform: scale(1) translateX(-50%);
    }
}

.clients-main-card__glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    filter: blur(80px);
    z-index: 1;
    animation: pulseGlow 4s infinite ease-in-out;
}

/* Hover effects */
.btn .icon-arrow,
.hero-ngfw__link .icon-arrow {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.btn:hover .icon-arrow,
.hero-ngfw__link:hover .icon-arrow {
    transform: translateX(5px) translateY(-5px);
}

.client-box {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.client-box:hover {

    box-shadow: 0 15px 40px rgba(255, 31, 0, 0.15);
}

@keyframes pulseBorder {
    0% {
        border-color: rgba(255, 31, 0, 0.2);
    }

    50% {
        border-color: rgba(255, 31, 0, 0.6);
        box-shadow: 0 0 20px rgba(255, 31, 0, 0.2);
    }

    100% {
        border-color: rgba(255, 31, 0, 0.2);
    }
}

.ecosystem__circle {
    animation: pulseBorder 4s infinite;
}

.ecosystem__circle--1 {
    animation-delay: 0s;
}

.ecosystem__circle--2 {
    animation-delay: 1s;
}

.ecosystem__circle--3 {
    animation-delay: 2s;
}

/* ==========================================================================
   News Slider Section (index.html)
   ========================================================================== */
.news {
    background: #000000;
    padding: 120px 0;
}

.news__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.news__title-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news__title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 500;
    color: #FFFFFF;
}

.news__nav {
    display: flex;
    gap: 12px;
}

.news__pagination {
    display: none;
    position: static;
    width: 100%;
}

@media (max-width: 575px) {
    .news__nav {
        display: none;
    }

    .news__header {
        margin-bottom: 40px;
    }

    .news__pagination {
        display: flex;
        gap: 8px;
        margin-top: 32px;
    }

    .news__pagination .swiper-pagination-bullet {
        flex: 1;
        height: 2px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 0;
        opacity: 1;
        margin: 0 !important;
        transition: background 0.3s ease;
    }

    .news__pagination .swiper-pagination-bullet-active {
        background: #FFFFFF;
    }
}

.news__nav-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: background var(--transition-fast), opacity var(--transition-fast);
}

.news__nav-btn:hover:not(.swiper-button-disabled) {
    background: rgba(255, 255, 255, 0.24);
    opacity: 1;
}

.news__nav-btn.swiper-button-disabled {
    background: rgba(255, 255, 255, 0.16);
    opacity: 0.2;
    cursor: default;
    pointer-events: none;
}

.news-slider {
    width: 100%;
    overflow: visible;
}

.news-card {
    display: flex;
    flex-direction: row;
    width: 771px;
    height: 244px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 4px;
    box-sizing: border-box;
}

.news-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
}

.news-card__title {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 450;
    color: #FFFFFF;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    color: #939393;
}

.news-card__dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.news-card__image-box {
    width: 231px;
    height: 100%;
    background: #1E1E1E;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}


.news-card__image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}


/* ==========================================================================
   Vacancies Page Styles
   ========================================================================== */

.page--vacancies .triangle-video-bg {
    top: -180px;
    opacity: 0.5;
    transform: translateX(-50%) rotate(180deg);
}

.vacancies-hero {
    position: relative;
    padding-top: 32px;
    padding-bottom: 80px;
}

.vacancies-hero__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 43, 15, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.vacancies-hero__breadcrumbs {
    margin-bottom: 48px;
}

.vacancies-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 38px 0 100px;
}

.vacancies-intro__title {

    font-weight: 500;
    font-size: 50px;
    line-height: 130%;
    text-align: center;
    background: linear-gradient(96.06deg, #FFFFFF 17.35%, #FF490D 103.61%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent margin-bottom: 16px;
}

.vacancies-intro__subtitle {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 50px;
}

.vacancies-intro__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.vacancies-intro__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.vacancies-intro__btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vacancies-intro__graphic {
    margin-top: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    height: 400px;
}

.orbital {
    position: relative;
    width: 800px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.orbital__circle {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.orbital__circle--1 {
    width: 300px;
    height: 300px;
}

.orbital__circle--2 {
    width: 500px;
    height: 500px;
}

.orbital__circle--3 {
    width: 700px;
    height: 700px;
}

.orbital__avatar {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #F32B0F;
    box-shadow: 0 0 20px rgba(243, 43, 15, 0.5);
    z-index: 5;
}

.orbital__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orbital__avatar--1 {
    top: 220px;
    left: 180px;
}

.orbital__avatar--2 {
    top: 80px;
    left: 320px;
}

.orbital__avatar--3 {
    top: 120px;
    right: 280px;
}

.orbital__avatar--4 {
    top: 240px;
    right: 150px;
}

.orbital__logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.orbital__logo-text {
    font-size: 80px;
    font-weight: 700;
    background: linear-gradient(180deg, #F32B0F 0%, #FF753A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.vacancies-filter {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 80px;
    width: 100%;
    position: relative;
    z-index: 20;
}

.vacancies-filter__group {
    display: flex;
    flex: 1;
    gap: 16px;
}

.vacancies-filter__item {
    flex: 1;
    height: 90px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(35px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 32px;
    cursor: pointer;
    transition: background var(--transition-fast);
    position: relative;
}

.vacancies-filter__select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
    appearance: none;
}

.vacancies-filter__item:hover,
.vacancies-filter__item.active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.vacancies-filter__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.vacancies-filter__label {
    font-size: 18px;
    font-weight: 450;
    color: #FFFFFF;
}

.vacancies-filter__arrow {
    display: flex;
    align-items: center;
}

.vacancies-filter__submit {
    width: 279px;
    height: 90px;
    background: linear-gradient(93.88deg, #F32B0F -1.94%, #FF0011 100%);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-fast);
}

.vacancies-filter__submit:hover {
    opacity: 0.9;
}

.vacancies-hero__title {
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
}

/* Vacancies List */
.vacancies-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-bottom: 120px;
}

.vacancies-category {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.vacancies-category__header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.vacancies-category__title {

    font-weight: 500;
    font-size: 36px;
    ;
    line-height: 110.00000000000001%;

    color: #FFFFFF;
}

.vacancies-category__count {
    font-size: 18px;
    font-weight: 450;
    color: #FFFFFF;
    margin-top: 4px;
}

.vacancies-category__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vacancy-card {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 32px 32px 36px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: background var(--transition-fast), border-color var(--transition-fast);
    text-decoration: none;
    color: inherit;
}

.vacancy-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.4);
}

.vacancy-card--gradient {
    background: linear-gradient(357.28deg, rgba(0, 0, 0, 0.2) -118.48%, rgba(0, 0, 0, 0) 61.98%);
}

.vacancy-card__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.vacancy-card__title {
    font-size: 24px;
    line-height: 150%;
    font-weight: 450;
    color: #FFFFFF;
    margin: 0;
}

.vacancy-card__location {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.vacancy-card__icon {
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

.vacancy-card__arrow {
    width: 48px;
    height: 48px;
    background: rgba(218, 221, 244, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DBDFFD;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.vacancy-card:hover .vacancy-card__arrow {
    background: var(--main-red);
    color: #FFFFFF;
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .vacancies-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .vacancies-filter__submit {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .vacancies-filter__group {
        flex-direction: column;
    }

    .vacancies-filter__item {
        height: 70px;
    }

    .vacancy-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 24px;
    }

    .vacancy-card__arrow {
        align-self: flex-end;
    }
}

/* ==========================================================================
   Success Stories Section
   ========================================================================== */
.success-stories {
    position: relative;
    padding: 120px 0;
    background: #000000 url('../img/bg-card.jpg') no-repeat center calc(50% + 135px);
    background-size: contain;
    overflow: hidden;
    /* Clips cards sliding up/down */
    height: 100vh;
    /* Fixed height for pinning */
    display: flex;
    align-items: center;
}

.success-stories__container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.success-stories__title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(180.82deg, #FFFFFF 50.18%, #FF490D 91.51%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 500;
    text-align: center;



}

.success-stories__stack {
    position: relative;
    height: 554px;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.success-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.success-card__bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-card:hover .success-card__bg-wrapper {
    transform: scale(1.05);
}

.success-card__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.success-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.success-card__content {
    position: relative;
    z-index: 3;
    padding: 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.success-card__logo {
    max-height: 100%;
    width: auto;
}

.success-card__name {
    font-size: 32px;
    font-weight: 500;
}

.success-card__description {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    max-width: 742px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.success-card:hover .success-card__description {
    opacity: 1;
    transform: translateY(0);
}

.success-card__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.success-card__detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.success-card__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.success-card__value {
    font-size: 16px;
    color: #fff;
}

.success-card__action {
    display: flex;
    position: absolute;
    right: 4px;
    bottom: 4px;
    justify-content: flex-end;
}

.success-card__arrow {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.success-card:hover .success-card__arrow {
    background: #F32B0F;
}

.success-stories__bottom {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 850px;
    z-index: 0;
}

.btn-round {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border-radius: 80px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    color: #fff;
}

.btn-round:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-round__content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 4px 0 32px;
    height: 52px;
}

.btn-round__arrow {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .success-card {
        width: calc(100% - 40px);
        height: auto;
        min-height: 450px;
    }

    .success-stories__stack {
        height: 500px;
    }

    .success-card__details {
        grid-template-columns: 1fr;
    }

    .success-card__name {
        font-size: 24px;
    }
}

/* ==========================================================================
   NGFW Promo Section (Expansion Animation)
   ========================================================================== */
.ngfw-promo {
    position: relative;
    height: 300vh;
    background: #000;
}

.ngfw-promo__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-ngfw-expand {
    position: absolute;
    width: 415px;
    height: 430px;
    right: 32px;
    bottom: 14px;
    background: linear-gradient(180deg, #000000 0%, #3D0705 100%);
    border-radius: 20px;
    overflow: hidden;
    transform-origin: right bottom;
    z-index: 10;
}

.card-ngfw-expand__transformed {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(180deg, #150200 0%, #000000 55%);
}

.ngfw-transformed__header {
    text-align: center;
    margin-bottom: 20px;
    z-index: 2;
}

.ngfw-transformed__title {
    font-family: "TT Firs Neue";
    font-weight: 500;
    font-size: 50px;
    line-height: 110%;
    color: #F32B0F;
    margin-bottom: 16px;
}

.ngfw-transformed__subtitle {
    max-width: 1082px;
    font-size: 24px;
    font-weight: 450;
    line-height: 130%;
    background: linear-gradient(86.82deg, #FFFFFF 50.18%, #FF490D 91.51%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ngfw-transformed__main {
    position: relative;
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ngfw-transformed__sequence {
    width: 780px;
    height: 520px;
    position: relative;
    z-index: 2;
}

#iron-canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ngfw-glow--red {
    width: 900px;
    height: 900px;
    background: #F3646A;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    filter: blur(100px);
}

.ngfw-stat-card {
    flex: 1;
    padding: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ngfw-stat-card__number {
    font-size: 60px;
    font-weight: 500;
    color: #F32B0F;
}

.ngfw-stat-card__unit {
    font-size: 32px;
    color: #FFF;
}

.ngfw-transformed__footer {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.ngfw-transformed__cert {
    display: flex;
    align-items: center;
    gap: 20px;
}


.ngfw-cert-text {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1920px) {

    .news {
        overflow-x: hidden;
    }
}

/* ==========================================================================
   Adaptive 1440
   ========================================================================== */

@media (max-width: 1720px) {
    .container {
        margin: 0 auto;
        width: calc(100% - 64px);
    }
}

@media (max-width: 1440px) {
    .team__video-wrapper {
        margin: 0 auto;
        max-width: 1000px;
        max-height: 555px;
    }

    .articles-grid {
        gap: 20px;
    }

    .list-view .article-item__image-wrapper {
        width: 346px;
        height: 100%;
    }

    .list-view .article-item__img {
        max-height: 100%;
    }

    .container {
        max-width: 1376px;
        margin: 0 auto;
        width: calc(100% - 64px);
    }

    .hero-home {
        height: 100vh;
        min-height: 700px;
    }

    .hero-home__container {
        padding-top: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        height: 100%;
        margin-top: 0;
    }



    .header__container {
        max-width: 1376px;
        width: calc(100% - 64px);
        margin: 0 auto;
        height: 70px;
        gap: 0;
        justify-content: space-between;
        padding-left: 24px;
        padding-right: 14px;
    }

    .nav__list {
        gap: 40px;
    }

    .nav__link {
        font-size: 18px;
    }

    .header__btn {
        height: 46px;
        padding-left: 20px;
    }

    .header__btn-text {
        font-size: 18px;
    }

    .hero-home__content {
        max-width: 753px;
        gap: 30px;
        margin-top: 0;
        margin-bottom: 0;
        align-self: flex-start;
        display: flex;
        flex-direction: column;
        padding-top: 80px;
        flex-grow: 1;
    }

    .hero-home__title {
        font-size: 50px;
        line-height: 110%;
        margin-bottom: 0;
    }

    .hero-home__subtitle {
        font-size: 24px;
        line-height: 130%;
        max-width: 753px;
    }


    .hero-home__btns {
        gap: 20px;
        margin-top: 0;
    }

    .hero-home__btn {
        width: 186px;
        height: 64px;
        padding: 0;
    }

    .card-ngfw {
        width: 415px;
        height: 430px;
        position: absolute;
        right: 0;
        bottom: 0;
        margin: 0;
    }

    .card-ngfw__title {
        font-size: 32px;
    }

    .card-ngfw__desc {
        font-size: 16px;
    }

    .highlight__title {
        max-width: 908px;
        font-size: 40px;
        line-height: 130%;
        text-align: center;

    }

    .highlight__sequence {
        width: 400px;
        height: 400px;
        margin: 0 auto;
    }

    .highlight__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .news {
        padding: 100px 0;
    }

    .news__header {
        margin-bottom: 50px;
    }

    .bottom-stats__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }

    .ecosystem {
        padding: 100px 0;
    }

    .contact {
        padding: 0;
    }

    .contact__text {
        max-width: 510px;
        width: auto;
    }

    .contact__content {
        max-width: 510px;
    }

    .contact__container {
        min-height: auto;
        padding: 80px 32px;
        flex-wrap: wrap;
    }

    .contact__desc {
        max-width: 510px;
        font-size: 18px;
        line-height: 150%;
    }

    .footer {
        margin-top: 100px;
    }

    .card-ngfw__stat-value {
        font-size: 24px;

    }

    .card-ngfw__stat-card {
        padding: 52px 32px 32px 32px;
    }

    .card-ngfw__stat-value span {
        font-size: 60px;
    }

    .card-ngfw__stats {
        padding: 0 32px;
        width: 100%;
        margin-bottom: 100px;
    }

    .footer__brand-large {
        max-width: 1302px;
        margin: 0 auto;
    }

    .footer__brand-large {

        padding: 0 20px;
    }

}

/* ==========================================================================
   Adaptive 1024
   ========================================================================== */
@media (max-width: 1320px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 1024px) {
    .container.blog-content__container {
        margin: 0;
        width: 100%;
        max-width: 100%;
        border: 0;
        border-radius: 20px;
        padding: 24px 20px;
    }

    .list-view .article-item__content {
        padding: 24px 24px 24px 32px;
    }

    .blog-filter {
        margin-bottom: 20px;
    }

    .container {
        max-width: 984px;
        margin: 0 auto;
        width: calc(100% - 40px);
    }

    .contact__container {
        grid-template-columns: 1fr;
    }

    .card-ngfw {
        width: 318px;
    }

    .nav__link {
        font-size: 16px;
    }

    .card-ngfw__stat-desc {
        font-size: 16px;
    }

    .nav__list {
        gap: 32px;
    }

    .hero-home__subtitle {
        font-size: 18px;
    }

    .card-ngfw__desc {
        font-size: 12px;
    }

    .card-ngfw__title {
        font-size: 24px;
    }

    .card-ngfw__stat-value span {
        font-size: 36px;
    }

    .card-ngfw__stat-value {
        font-size: 18px;
    }

    .team__video-wrapper {
        max-height: 554px;
    }

    .team {
        padding: 0;
    }

    .ecosystem {
        padding: 64px 0 0 0;
    }

    .ecosystem__header {
        margin-bottom: 50px;
    }

    .bottom-stat-card__value {
        font-size: 36px;
    }

    .bottom-stat-card__desc {
        font-size: 16px;
    }

    .bottom-stats__grid {
        gap: 16px;
        margin-bottom: 50px;
    }

    .contact__logo {
        order: -1;
        margin-top: 0;
    }

    .contact__container {
        padding: 50px 40px;
    }

    .form__input-row {
        flex-direction: row;
    }

    .form__input-phone {
        width: 30%;
    }

    .form__input--phone {
        min-width: auto;
    }

    .footer {
        margin-top: 60px;
    }

    .footer__text {
        font-size: 14px;
    }

    .footer__link {
        font-size: 14px;
    }

    .footer__brand-large {
        max-width: 981px;

    }

    .news-card {
        width: 100%;
    }
}


/* ==========================================================================
   Adaptive 767
   ========================================================================== */
@media (max-width: 991px) {
    .header__nav {
        display: none;
    }

    .header__container {
        height: 60px;
    }

    .header__burger {
        display: flex;
    }

    .header__actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .header__burger span {
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    }

    .header__burger.active {

        border-color: rgba(255, 255, 255, 0.3);
    }

    .header__burger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .header__burger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .header__burger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px;
    /* Added bottom padding */
}

.mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__overlay {
    position: fixed;
    /* Changed to fixed to keep blur while scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu.active .mobile-menu__overlay {
    opacity: 1;
}

.mobile-menu__container {
    position: relative;
    z-index: 2;
    flex: 1;
    width: 100%;
    max-width: 728px;
    margin: 100px auto 0;
    background: #000000;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active .mobile-menu__container {
    transform: translateY(0);
}

.mobile-menu__container::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu__container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-menu__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.mobile-menu__item:last-child {
    border-bottom: none;
}

.mobile-menu__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-menu__item-title {
    font-size: 20px;
    font-weight: 450;
    color: #FFFFFF;
}

.mobile-menu__item-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    transition: background 0.3s ease;
}

.mobile-menu__item-btn svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mobile-menu__item.active .mobile-menu__item-btn svg {
    transform: rotate(45deg);
    stroke: #FFFFFF;
}

.mobile-menu__item-content {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
}

.mobile-menu__item.active .mobile-menu__item-content {
    display: flex;
}

.mobile-menu__link {
    font-size: 18px;
    font-weight: 450;
    line-height: 150%;
    color: #939393;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: #FFFFFF;
}

.mobile-menu__footer {
    display: flex;
    gap: 20px;
    margin-top: auto;
}

.mobile-menu__footer-btn {
    flex: 1;
    height: 64px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu__footer-btn--filled {
    background: linear-gradient(93.88deg, #F32B0F -1.94%, #FF0011 100%);
    color: #FFFFFF;
}

.mobile-menu__footer-btn--filled:hover {
    filter: brightness(1.1);
}

.mobile-menu__footer-btn--outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    color: #FFFFFF;
}

.mobile-menu__footer-btn--outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
    .mobile-menu__container {
        width: 100%;
        margin: 100px auto 0;
        border-radius: 24px;
        padding: 40px;
    }

    .mobile-menu__footer {
        flex-direction: row;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 728px;
    }

    .articles-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .article-item__title {
        font-size: 18px;
    }

    .article-item__image-wrapper {
        margin-bottom: 20px;
    }

    .article-item__tags {
        padding-top: 24px;
    }

    .blog-hero {
        height: 325px;
    }

    .article-item__content {
        padding: 0 20px 20px 20px;
    }

    .blog-hero__title {
        font-size: 30px;
    }

    .blog-hero__breadcrumbs {
        padding-top: 95px;
    }

    .blog-filter {
        display: none;
    }

    .article-item__date {
        font-size: 14px;
    }

    .article-item__category {
        font-size: 14px;
    }

    .hero-home__title {
        font-size: 30px;
    }

    .hero-home__subtitle {
        font-size: 16px;
    }

    .hero-home__content {
        gap: 10px;
    }

    .card-ngfw__exp-title {
        font-size: 30px;
    }

    .card-ngfw__exp-subtitle {
        font-size: 20px;
    }

    .card-ngfw__stats {
        flex-direction: column;
    }

    .card-ngfw__stat-card {
        padding: 47px 32px 32px 32px;
    }

    .card-ngfw__cert {
        font-size: 20px;
    }

    .highlight__title {
        font-size: 28px;
    }

    .team__video-wrapper {
        max-height: 410px;
    }

    .team__info {
        width: 100%;
        position: static;
    }

    .news__title {
        font-size: 28px;
    }

    .news {
        padding: 80px 0;
    }

    .news-card__title {
        font-size: 20px;
    }

    .news-card {

        flex-direction: column-reverse;
    }

    .news-card {
        width: 100%;
        background: #1E1E1E;
        border-radius: 12px;
        position: relative;
        padding: 0;
        overflow: hidden;
        height: auto;
        flex-shrink: 0;
    }

    .news-card__image-box {
        width: 100%;
        aspect-ratio: 16 / 9;
        padding: 4px;
        height: auto;
        border-radius: 12px;
    }

    .news-card__image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px
    }

    .ecosystem__title {
        font-size: 28px;
    }

    .ecosystem__subtitle {
        font-size: 20px;
    }

    .bottom-stats__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .contact__container {
        padding: 40px;
    }

    .footer__link {
        font-size: 12px;
    }

    .footer__text {
        font-size: 12px;
    }

    .footer__col-title {
        font-size: 12px;
    }

    .footer__brand-large svg {
        padding: 0 11px;
    }
}

@media (max-width: 575px) {
    .card-ngfw__stats {
        margin-bottom: 40px;
    }

    .news__header {
        margin-bottom: 24px;
    }

    .header__container {
        padding: 14px 7px 14px 24px;
    }

    .highlight__sequence {
        width: 100%;
        height: 100%;
        margin-bottom: 40px;
    }

    .page__glow-bg {
        position: absolute;
        width: 100%;
    }

    .mobile-menu__footer {
        flex-direction: column;
    }

    .mobile-menu__footer-btn {
        flex: none;
    }

    .mobile-menu__container {
        padding: 16px 24px;
    }

    .container {
        margin: 0 auto;
        width: calc(100% - 24px);
        max-width: 100%;
    }

    .hero-home__content {
        padding-top: 38px;
    }

    .highlight__bg {
        background: none;
    }

    .hero-home__btns {
        flex-direction: column;
    }

    .success-stories {
        overflow: visible;
    }

    .hero-home__btn {
        width: 100%;
    }

    .ecosystem__subtitle {
        font-size: 18px;
    }

    .contact__container {
        padding: 24px 16px;
    }

    .contact__logo-symbol {
        width: 32px;
        height: 32px;
    }

    .contact__logo {
        width: 32px;
        height: 32px;
        margin-top: 20px;
    }

    .contact__logo-polygon--3 {
        width: 25px;
        height: 22px;
    }

    .contact__logo-polygon--4 {
        width: 25px;
        height: 22px;
    }

    .contact__title {
        font-size: 28px;
    }

    .contact__desc {
        font-size: 16px;
    }

    .form__button-inner {
        width: 100%;
    }

    .footer__top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0;
        gap: 40px 0;
    }

    .footer__col {
        border-right: none !important;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px !important;
    }

    /* Vertical line between columns */
    .footer__col:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    /* Remove bottom border from last row */
    .footer__col:nth-child(1),
    .footer__col:nth-child(4) {
        border-bottom: none;
    }

    /* Reorder columns to match image: Email(3) & Phone(2) top, Socials(1) & Address(4) bottom */
    .footer__col:nth-child(3) {
        order: 1;
    }

    /* Email */
    .footer__col:nth-child(2) {
        order: 2;
        padding-left: 24px
    }

    /* Phone */
    .footer__col:nth-child(1) {
        order: 3;
    }

    /* Socials */
    .footer__col:nth-child(4) {
        order: 4;
        padding-left: 24px;
    }

    /* Address */

    .footer__col-title {
        font-size: 12px !important;
        margin-bottom: 20px;
    }

    .footer__link,
    .footer__text {
        font-size: 12px !important;
    }

    .highlight__title {
        font-size: 20px;
        max-width: 315px;
    }

    .form__input-row .form__input-group {
        width: 100%;
    }

    .highlight__subtext {
        font-size: 20px;
        text-align: center;
    }

    .highlight__brand svg {
        max-width: 240px;
    }

    .team__video-wrapper {
        max-height: 350px;
    }

    .card-ngfw__cert {
        font-size: 20px;
        flex-direction: column-reverse;
        text-align: center;
        max-width: 255px;
    }

    .card-ngfw__stats {
        padding: 0 12px;
    }

    .card-ngfw__anim-container {
        width: 100%;
        max-width: 1200px;
        height: 310px;
        margin-bottom: 0px;
        margin-top: 0px;
    }

    .card-ngfw__exp-subtitle {
        font-size: 20px;
        max-width: 225px;
    }

    .header__btn {
        display: none;
    }

    .news-card__content {
        padding: 28px 20px;
    }

    .hero-home__title {
        font-size: 28px;
    }

    .hero-home__content {
        gap: 16px;
    }

    .blog-content .pagination {
        display: none;
    }

    .articles-grid {
        gap: 28px;
    }

    .blog-hero__breadcrumbs {
        margin-left: 0;
    }

    .blog-hero {
        padding-bottom: 60px;
        max-width: 100%;
        width: auto;
    }

    .blog-content {
        margin-bottom: 0;
    }

    .articles-grid {
        margin-bottom: 0;
    }

    .footer__bottom {
        padding: 60px 0px 40px;
    }
}