:root {
    --color-primary: #7C0707;
    --color-text: #121212;
    --color-bg-dark: #FDFDFD;
    --font-primary: 'Roobert TRIAL', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Reset image behaviors */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Base link styles */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* =========================================================================
   HEADER STYLES
   ========================================================================= */

.site-header {
    border-bottom: 1px solid rgba(12, 12, 12, .05);
    padding: 16px 32px;
    z-index: 1000;
    position: relative;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.header-logo {
    display: block;
    width: 90px;
    height: 36px;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
    /* Stay above overlay */
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-content-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-left: 32px;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-nav ul {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav a {
    font-size: 14px;
    line-height: 18px;
    color: var(--color-text);
    letter-spacing: -0.28px;
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 613px;
    flex-shrink: 0;
}

.header-contacts {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header-contact {
    display: flex;
    gap: 8px;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.header-contact:hover {
    opacity: 1;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    overflow: hidden;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-text {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.28px;
    white-space: nowrap;
}

.header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-lang {
    backdrop-filter: blur(6px);
    background-color: rgba(180, 26, 26, 0.1);
    border: 1px solid rgba(180, 26, 26, 0.1);
    border-radius: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
}

.flag-icon {
    position: relative;
    width: 18px;
    height: 18px;
    overflow: hidden;
}

.flag-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flag-base {
    top: 17.24%;
    bottom: 50%;
    width: 100%;
    height: auto;
}

.flag-mid {
    top: 50%;
    bottom: 17.24%;
    width: 100%;
    height: auto;
}

.flag-top {
    top: 39.08%;
    bottom: 39.08%;
    width: 100%;
    height: auto;
}

.lang-text {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.28px;
    white-space: nowrap;
}

.header-btn {
    background-color: #7C0707;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    letter-spacing: -0.28px;
    text-transform: uppercase;
    white-space: nowrap;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.header-btn:hover {
    background-color: var(--color-primary);
}

.menu-toggle {
    display: none;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-toggle-icon {
    display: block;
    width: 100%;
    height: 100%;
    background: url('../img/hamburger.svg') no-repeat center center / contain;
    transition: opacity 0.3s ease;
}

/* TABLET AND MOBILE RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .site-header {
        padding: 16px 32px;
    }

    .header-content-wrap {
        display: none;
        /* Hide default inline content */
    }

    .menu-toggle {
        display: block;
    }

    /* Mobile Drawer Open State */
    .site-header.menu-open .header-content-wrap {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #FFF;
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 120px 32px 32px 32px;
        margin: 0;
        gap: 40px;
        overflow-y: auto;
    }

    .site-header.menu-open .header-left,
    .site-header.menu-open .header-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 32px;
    }

    .site-header.menu-open .header-right {
        width: 100%;
    }

    .site-header.menu-open .header-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .site-header.menu-open .header-nav a {
        font-size: 18px;
        line-height: 24px;
    }

    .site-header.menu-open .header-contacts {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .site-header.menu-open .header-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }

    .site-header.menu-open .header-btn {
        width: 100%;
    }

    .site-header.menu-open .menu-toggle-icon {
        background-image: url('../img/close.svg');
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 16px;
    }

    .site-header.menu-open .header-content-wrap {
        padding: 80px 16px 32px 16px;
    }
}

/* =========================================================================
   BUTTONS
   ========================================================================= */

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: -0.28px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.btn-primary {
    background-color: #7C0707;
    color: #FFFFFF;
    border: none;
}

.btn-primary:hover {
    background-color: #8C000B;
}

.btn-secondary {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Glow effects */
.hero-glow {
    position: absolute;
    width: 933px;
    height: 933px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-1 {
    left: 727px;
}

.hero-glow-2 {
    left: 871px;
}

.hero-glow-3 {
    left: 1058px;
}

.hero-glow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 680px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-badge {
    background: #B41A1A0D;
    border: 1px solid rgba(180, 26, 26, 0.1);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-badge span {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
	color: #EF3E3E;
}

.hero-title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 12px 0;
}

.hero-description {
    font-size: 14px;
    line-height: 18px;
    opacity: 0.5;
    letter-spacing: -0.28px;
    max-width: 564px;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 12px;
}

.hero-image {
    position: absolute;
    width: 1083px;
    height: 441px;
    left: 727px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.hero-image img {
    position: absolute;
    width: 100.08%;
    height: 140%;
    top: -26.54%;
    left: -0.04%;
    object-fit: cover;
}

/* Responsive constraints */
@media (max-width: 1440px) {
    .hero-image {
        left: 50%;
    }

    .hero-glow-1 {
        left: 45%;
    }

    .hero-glow-2 {
        left: 55%;
    }

    .hero-glow-3 {
        left: 65%;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-image {
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 800px;
        height: auto;
        margin-top: 40px;
    }

    .hero-image img {
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
        object-fit: contain;
    }

    .hero-glow {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* =========================================================================
   LINE BENEFITS SECTION
   ========================================================================= */

.line-section {
    padding: 80px 0;
}

.line-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 912px;
    margin: 0 auto 64px auto;
}

.line-badge {
    color: #FFF;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Roobert TRIAL', sans-serif;
    margin-bottom: 16px;
}

.line-title {
    font-size: 40px;
    line-height: 44px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.line-description {
    font-size: 14px;
    line-height: 18px;
    opacity: 0.5;
    letter-spacing: -0.28px;
    max-width: 564px;
    margin: 0;
}

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

.line-card {
    background: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    transition: border-color 0.3s ease;
}

.line-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.line-card.span-1 {
    grid-column: span 1;
}

.line-card.span-2 {
    grid-column: span 2;
}

/* In Figma, they used a mask with background, we achieve similar via background img */
.card-glow {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.card-glow img {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 332px;
    height: auto;
    object-fit: cover;
}

.card-glow.glow-wide img {
    width: 680px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.card-icon {
    background: rgba(180, 26, 26, 0.05);
    border: 1px solid rgba(180, 26, 26, 0.1);
    backdrop-filter: blur(6px);
    border-radius: 4px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon img {
    width: 24px;
    height: 24px;
}

.card-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.4px;
}

.card-text {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.28px;
    margin: 0;
    opacity: .8;
}

.card-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.card-value {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: -0.48px;
    white-space: nowrap;
}

.card-label {
    font-size: 12px;
    line-height: 16px;
    opacity: 0.5;
    text-transform: uppercase;
    font-family: 'Roobert TRIAL', sans-serif;
    text-align: right;
}

@media (max-width: 1024px) {
    .line-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .line-card.span-1,
    .line-card.span-2 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .line-section {
        padding: 40px 0;
    }

    .line-title {
        font-size: 32px;
        line-height: 36px;
    }

    .line-card {
        padding: 24px;
        min-height: auto;
    }

    .line-grid {
        grid-template-columns: 1fr;
    }

    .line-card.span-1,
    .line-card.span-2 {
        grid-column: span 1;
    }
}

/* =========================================================================
   STEPS TIMELINE SECTION
   ========================================================================= */

.steps-section {
    padding: 80px 0;
    overflow: hidden;
}

.steps-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.steps-title {
    font-size: 40px;
    line-height: 44px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.steps-subtitle {
    font-size: 14px;
    opacity: 0.5;
    text-transform: uppercase;
    font-family: 'Roobert TRIAL', sans-serif;
    letter-spacing: -0.28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pre-steps-image {
    margin-inline: auto;
}

.steps-timeline-wrap {
    width: 100%;
    padding-bottom: 20px;
    background-color: #FFF;
    border-radius: 20px;
}

.steps-timeline-wrap::-webkit-scrollbar {
    height: 6px;
}

.steps-timeline-wrap::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.steps-timeline-wrap::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.steps-timeline {
    display: grid;
    grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr 36px 1fr;
    align-items: start;
    gap: 0;
    padding: 80px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.step-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: start;
}

.step-text {
    font-size: 14px;
    line-height: 18px;
    opacity: 0.5;
    letter-spacing: -0.28px;
}

.step-label {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.32px;
}

.step-circle {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-item.active .step-circle {
    border-color: #EF3E3E;
}

.step-item.active .step-text,
.step-item.active .step-label {
    opacity: 1;
}

.step-number {
    font-size: 40px;
    line-height: 44px;
    font-weight: 500;
    opacity: 0.5;
    position: relative;
    z-index: 2;
}

.step-item.active .step-number {
    opacity: 1;
}

.step-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.step-glow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-divider {
    width: 36px;
    border-bottom: 1px dashed #EF3E3E;
    height: 1px;
}

@media (max-width: 1024px) {
    .steps-header {
        flex-direction: column;
        gap: 24px;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .step-divider {
        width: 1px;
        height: 36px;
        border-bottom: none;
        border-left: 1px dashed #EF3E3E;
    }

    .step-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-inline: 20px;
        gap: 40px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 40px 0;
    }

    .steps-timeline {
        padding: 0px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .steps-title {
        font-size: 32px;
        line-height: 36px;
    }
}

/* =========================================================================
   INDICATORS SECTION
   ========================================================================= */

.indicators-section {
    padding: 80px 0;
}

.section-title {
    font-size: 40px;
    line-height: 44px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 48px 0;
}

.text-center {
    text-align: center;
}

.indicators-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 80px;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 40px 60px;
    position: relative;
    border: 1px solid #EF3E3E;
}

.stat-item::before {
    content: '';
    background-color: var(--color-bg-dark);
    position: absolute;
    left: -1px;
    top: 20%;
    bottom: 20%;
    width: 1px;
}

.stat-item::after {
    content: '';
    background-color: var(--color-bg-dark);
    position: absolute;
    right: -1px;
    top: 20%;
    bottom: 20%;
    width: 1px;
}

.stat-label {
    font-size: 14px;
    line-height: 18px;
    opacity: 0.5;
    letter-spacing: -0.28px;
    text-align: center;
    white-space: nowrap;
}

.stat-value {
    font-size: 40px;
    line-height: 44px;
    font-weight: 500;
    letter-spacing: -0.8px;
}

.stat-value span {
    color: #EF3E3E;
}

.indicators-charts {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.charts-sidebar {
    width: 328px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.charts-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.4px;
}

.charts-legend {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.legend-item {
    font-family: 'Roobert TRIAL', sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.28px;
    padding: 12px 20px;
    border-radius: 8px;
    white-space: nowrap;
    color: #FFF;
}

.legend-after {
    background: #7C0707;
}

.legend-before {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.charts-bars {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 912px;
    width: 100%;
}

.chart-row {
    display: flex;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.chart-label {
    width: 140px;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.32px;
}

.chart-track {
    flex-grow: 1;
    height: 20px;
    background: #151515;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.chart-progress {
    height: 100%;
    background: linear-gradient(to right, #892424, #be4e4e);
    border-radius: 4px;
}

.chart-value {
    width: 40px;
    text-align: right;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.32px;
}

@media (max-width: 1024px) {
    .indicators-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .indicators-charts {
        flex-direction: column;
    }

    .charts-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 32px;
    }

    .indicators-stats {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .stat-item {
        padding: 32px 0;
    }

    .chart-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .chart-label {
        width: calc(100% - 60px);
    }

    .chart-value {
        width: 44px;
        text-align: right;
    }

    .chart-track {
        width: 100%;
        order: 3;
    }

    .charts-bars {
        gap: 32px;
    }
}

/* =========================================================================
   VIDEO SECTION
   ========================================================================= */

.video-section {
    padding: 100px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.video-section-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    background-size: cover;
    background-position: top right;
}

.video-header {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto 100px auto;
}

.video-badge {
    color: #EF3E3E;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    font-family: 'Roobert TRIAL', sans-serif;
    margin-bottom: 16px;
    display: block;
}

.video-title {
    font-size: 40px;
    line-height: 44px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.video-thumbnail {
    position: relative;
    z-index: 1;
    max-width: 912px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 912 / 540;
    object-fit: cover;
}

@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }

    .video-header {
        margin-bottom: 40px;
    }

    .video-title {
        font-size: 32px;
        line-height: 36px;
    }

    .video-thumbnail img {
        aspect-ratio: 16 / 9;
    }
}

/* =========================================================================
   FAQ SECTION
   ========================================================================= */

.faq-section {
    padding: 80px 0;
}

.faq-header {
    max-width: 680px;
    margin: 0 auto 64px auto;
}

.faq-badge {
    color: #EF3E3E;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    font-family: 'Roobert TRIAL', sans-serif;
    margin-bottom: 16px;
    display: inline-block;
}

.faq-title {
    font-size: 40px;
    line-height: 44px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.faq-description {
    font-size: 14px;
    line-height: 18px;
    opacity: 0.5;
    letter-spacing: -0.28px;
    margin: 0;
}

.faq-list {
    max-width: 1144px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.faq-question span {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: -0.32px;
}

.faq-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    margin-top: 16px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 14px;
    line-height: 18px;
    opacity: 0.5;
    letter-spacing: -0.28px;
    margin: 0;
    color: #121212;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 32px;
        line-height: 36px;
    }

    .faq-item {
        padding: 20px;
    }
}

/* =========================================================================
   CONTACTS SECTION
   ========================================================================= */

.contacts-section {
    padding: 80px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.contacts-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    background-image: url('../img/contacts-bg.svg');
    background-size: cover;
    background-position: top center;
}

.contacts-decor {
    position: absolute;
    top: 50%;
    left: -160px;
    width: 564px;
    height: 564px;
    transform: translateY(-50%);
    background-image: url('../img/contacts-decor.svg');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.contacts-header {
    margin-bottom: 60px;
}

.contacts-badge {
    color: #EF3E3E;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    font-family: 'Roobert TRIAL', sans-serif;
    margin-bottom: 16px;
    display: inline-block;
}

.contacts-title {
    font-size: 40px;
    line-height: 44px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.contacts-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.contacts-map-wrap {
    width: 100%;
    max-width: 680px;
    height: 730px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #f5f5f5;
}

.contacts-map-decor {
    position: absolute;
    top: 50%;
    left: 272px;
    width: 706px;
    height: 734px;
    background-image: url('../img/contacts-map-decor.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    pointer-events: none;
}

.contacts-info-card {
    position: absolute;
    top: 32px;
    left: 32px;
    border-radius: 8px;
    width: calc(100% - 64px);
    height: calc(100% - 64px);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.info-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
    .info-card-header {
        flex-direction: column;
    }
}

.info-card-header img {
    width: 150px;
    aspect-ratio: 15/6;
}

.info-card-header span {
    font-size: 14px;
    line-height: 18px;
    opacity: 0.5;
}

.info-card-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.info-card-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 26, 26, 0.05);
    border: 1px solid rgba(180, 26, 26, 0.1);
    border-radius: 4px;
    backdrop-filter: blur(6px);
}

.info-icon img {
    width: 24px;
    height: 24px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.info-content span {
    font-size: 12px;
    line-height: 16px;
    font-family: 'Roobert TRIAL', sans-serif;
    color: #FFFFFF;
    opacity: 0.5;
    text-transform: uppercase;
}

.info-content p {
    font-size: 14px;
    line-height: 18px;
    margin: 0;
}

.info-content p .dim {
    opacity: 0.5;
    margin: 0 4px;
}

.info-card-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 32px;
}

.info-card-link img {
    width: 16px;
    height: 16px;
}

/* Contacts Form */
.contacts-form-wrap {
    width: 100%;
    max-width: 680px;
    border-radius: 8px;
    padding: 32px;
    flex-shrink: 0;
    background-color: #f5f5f5;
}

.form-header {
    margin-bottom: 24px;
}

.form-header h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    margin: 0 0 16px 0;
}

.form-header p {
    font-size: 14px;
    line-height: 18px;
    opacity: 0.5;
    margin: 0;
}

.contacts-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-field-full {
    flex: none;
    width: 100%;
}

.field-label {
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
}

.field-label .req {
    color: #EF3E3E;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 20px 16px;
    font-size: 14px;
    line-height: 18px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(255, 255, 255, 0.2);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-field textarea {
    height: 180px;
    resize: none;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #7C0707;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 18px;
    font-family: 'Roobert TRIAL', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    min-height: 58px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #892424;
}

.form-disclaimer {
    font-size: 14px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
    text-align: center;
}

.form-disclaimer a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 1200px) {
    .contacts-grid {
        flex-direction: column;
    }

    .contacts-map-wrap,
    .contacts-form-wrap {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contacts-section {
        padding: 40px 0;
    }

    .contacts-title {
        font-size: 32px;
        line-height: 36px;
    }

    .form-row {
        flex-direction: column;
    }

    .contacts-map-wrap {
        height: auto;
        min-height: 600px;
    }

    .contacts-info-card {
        padding: 24px;
        top: 16px;
        left: 16px;
        width: calc(100% - 32px);
        height: calc(100% - 32px);
        max-width: 100%;
        height: auto;
    }

    .contacts-form-wrap {
        padding: 24px;
    }

    .form-field textarea {
        height: 120px;
    }
}

/* =========================================================================
   FOOTER
   ========================================================================= */

.site-footer {
    position: relative;
    background-color: #121212;
    overflow: hidden;
}

.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-brand {
    max-width: 448px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    width: 150px;
    aspect-ratio: 15/6;
}

.footer-tagline {
    font-size: 14px;
    line-height: 18px;
    opacity: 0.5;
    color: #FFFFFF;
    margin: 0;
}

.language-selector {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(180, 26, 26, 0.1);
    border: 1px solid rgba(180, 26, 26, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    width: fit-content;
}

.footer-nav,
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer-col-title {
    font-size: 14px;
    line-height: 18px;
    font-family: 'Roobert TRIAL', sans-serif;
    color: #FFFFFF;
    opacity: 0.5;
    text-transform: uppercase;
}

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

.footer-menu a {
    font-size: 16px;
    line-height: 20px;
    font-family: 'Roobert TRIAL', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #EF3E3E;
}

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

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-family: 'Roobert TRIAL', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-contact-link img {
    width: 20px;
    height: 20px;
}

.btn-up {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    transform: rotate(180deg);
}

.btn-up img {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright,
.privacy-policy {
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    opacity: 0.5;
    margin: 0;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}