/* ================== IMPORT FONTS ================== */
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400&family=PT+Sans:wght@400;700&display=swap');

/* ================== CSS VARIABLES ================== */
:root {
    --bg-header:    #FFFFFF;
    --bg-footer:    #FFFFFF;
    --bg-page:      #FFFFFF;
    --bg-card:      #FFFFFF;
    --bg-card-alt:  #F8F6F2;
    --bg-dark:      #FFFFFF;
    --bg-graphite:  #F8F6F2;
    --bg-graphite2: #EDE8DF;
    --accent-red:   #D90429;
    --accent-sand:  #C6A76E;
    --text-light:   #1A1A1A;
    --text-muted:   #6B6B6B;
    --text-dim:     #9E9E9E;
    --text-dark:    #1A1A1A;
    --text-body:    #3D3D3D;
    --text-sub:     #6B6B6B;
    --border:       rgba(198, 167, 110, 0.3);
    --border-hover: rgba(198, 167, 110, 0.7);
    --shadow:       0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.12);
    --radius:       10px;
    --radius-lg:    16px;
}

/* ================== GLOBAL ================== */
*, *::before, *::after {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'PT Sans', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-body);
}

/* ================== CONTAINER ================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================== HEADER ================== */
header {
    background: white;
    border-bottom: 3px solid var(--accent-red);
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.header-flex .menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header-flex .menu ul li a {
    text-decoration: none;
    color: var(--text-sub);
    font-family: 'PT Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.header-flex .menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-sand);
    transition: width 0.3s ease;
}

.header-flex .menu ul li a:hover,
.header-flex .menu ul li a.active {
    color: var(--accent-sand);
}

.header-flex .menu ul li a:hover::after,
.header-flex .menu ul li a.active::after {
    width: 100%;
}

/* ================== MOBILE MENU ================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--accent-sand);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================== HERO ================== */
.hero {
    position: relative;
    height: 83vh;
    background-image: url('images/aldea_bg.jpg');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 18, 0.45);
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 280px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(18,18,18,0)   0%,
        rgba(18,18,18,0.4) 40%,
        rgba(18,18,18,0.85) 75%,
        #121212 100%
    );
}

.hero-inner {
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-text {
    max-width: 1200px;
    text-align: left;
}

/* ================== HERO TITLE & SUBTITLE ================== */
.hero-title {
    position: relative;
    display: inline-block;
    background-color: #e2e0db;
    padding: 16px 32px;
    margin-bottom: 12px;
    max-width: 100%;
    backdrop-filter: blur(2px);
}

.hero-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100vw;
    background-color: #e2e0db;
}

.hero-title h1 {
    margin: 0;
    font-family: 'Philosopher', serif;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 0;
    color: #000000;
}

.hero-subtitle {
    position: relative;
    display: inline-block;
    background-color: #e2e0db;
    padding: 14px 32px;
    margin-bottom: 15px;
    max-width: 100%;
    backdrop-filter: blur(4px);
}

.hero-subtitle::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100vw;
    background-color: #e2e0db;
}

.hero-subtitle p {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
    color: black;
    font-weight: 300;
}

/* ================== ADAPTIVE / MOBILE ================== */
@media (max-width: 968px) {
    .hero { height: 60vh; min-height: 400px; }

    .hero-title { padding: 12px 20px; display: block; }
    .hero-title::after { display: none; }
    .hero-title h1 { font-size: 32px; }

    .hero-subtitle { padding: 12px 20px; display: block; }
    .hero-subtitle::after { display: none; }
    .hero-subtitle p { font-size: 17px; }
}

@media (max-width: 480px) {
    .hero { height: 50vh; min-height: 350px; }
    .hero-title { padding: 10px 15px; }
    .hero-title h1 { font-size: 24px; letter-spacing: 0.5px; }
    .hero-subtitle { padding: 10px 15px; }
    .hero-subtitle p { font-size: 15px; line-height: 1.5; }
}

/* ================== CONTENT ================== */
.content {
    padding: 80px 20px;
    background-color: var(--bg-page);
}

.content-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-dark);
}

.content-inner h2 {
    font-family: 'Philosopher', serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.yellow-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-sand));
    margin-bottom: 28px;
    border-radius: 2px;
}

.content-inner p {
    margin-bottom: 20px;
    color: var(--text-body);
}

/* ================== INTRO BOX ================== */
.intro-box {
    background: #e2e0db;
    border-left: 4px solid var(--accent-sand);
    padding: 28px 32px;
    margin-bottom: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.intro-box p {
    font-size: 19px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.7;
}

/* ================== MAIN DESCRIPTION ================== */
.main-description {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 40px;
}

/* ================== FEATURES GRID ================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.feature-card {
    padding: 30px;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-red) 0%, var(--accent-sand) 100%);
    transition: width 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-hover);
}

.feature-card:hover::before {
    width: 5px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #8B0018 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}

.feature-card h3 {
    font-family: 'Philosopher', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.65;
    margin: 0;
}

/* ================== HIGHLIGHT SECTION ================== */
.highlight-section {
    background: #e2e0db;
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-red);
    margin: 32px 0;
    box-shadow: var(--shadow);
}

.highlight-section p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.85;
    margin: 0;
}

/* ================== VALUES SECTION ================== */
.values-section {
    margin: 50px 0 40px 0;
}

.values-section h3 {
    font-family: 'Philosopher', serif;
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.value-tag {
    padding: 10px 22px;
    background: transparent;
    color: black;
    border: 1px solid red;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.value-tag:hover {
    background: #bbb4b4;
    color: var(--bg-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(198, 110, 110, 0.3);
}

/* ================== CLOSING TEXT ================== */
.closing-text {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.85;
    margin-top: 30px;
}

/* ================== HERO CONTACTS ================== */
.hero-contacts {
    background: #e2e0db;
    border-bottom: 3px solid var(--accent-red);
    padding: 80px 20px;
    text-align: center;
}

.hero-contacts h1 {
    font-family: 'Philosopher', serif;
    color: var(--text-dark);
    font-size: 42px;
    margin: 0;
    font-weight: 700;
}

/* ================== CONTACTS SECTION ================== */
.contacts-section {
    padding: 60px 20px;
    background-color: var(--bg-page);
}

.contacts-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contacts-text {
    flex: 1;
    min-width: 300px;
}

.contacts-text h2 {
    font-family: 'Philosopher', serif;
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 30px;
}

.contacts-text h2:first-child {
    margin-top: 0;
}

.contacts-text p {
    font-size: 15px;
    line-height: 1.7;
    margin: 8px 0;
    color: black;
}

.contacts-text strong {
    color: black;
    font-weight: 600;
}

.contacts-map {
    flex: 1;
    min-width: 300px;
}

.contacts-map iframe {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* ================== HERO REPORTING ================== */
.hero-reporting {
    background: #e2e0db;
    border-bottom: 3px solid var(--accent-red);
    padding: 80px 20px;
    text-align: center;
}

.hero-reporting h1 {
    font-family: 'Philosopher', serif;
    color: var(--text-dark);
    font-size: 42px;
    margin: 0;
    font-weight: 700;
}

/* ================== REPORTING SECTION ================== */
.reporting-section {
    padding: 60px 20px;
    background: var(--bg-page);
}

.reporting-intro {
    background: #e2e0db;
    border-left: 4px solid var(--accent-sand);
    padding: 28px 32px;
    margin-bottom: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.reporting-intro p {
    font-size: 17px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.7;
}

.reporting-category {
    margin-bottom: 60px;
}

.reporting-category h2 {
    font-family: 'Philosopher', serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

/* report-card БЕЗ overflow:hidden щоб file-menu не обрізалось */
.report-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border-left: 5px solid red;
}

@media (max-width: 968px) {
    .report-card {
        overflow: visible;
    }

    .file-menu {
        position: static;
        transform: none !important;
        margin-top: 8px;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, max-height 0.3s ease;
        visibility: hidden;
    }

    .file-menu.active {
        opacity: 1;
        max-height: 500px;
        visibility: visible;
    }
}
.report-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-hover);
}

.report-card:hover::before {
    width: 5px;
}

.report-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #EDE8DF 0%, #E0DAD0 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-red);
}

.report-info {
    flex: 1;
    margin-bottom: 20px;
}

.report-info h3 {
    font-family: 'Philosopher', serif;
    font-size: 19px;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.report-date {
    font-size: 13px;
    color: var(--text-sub);
    margin: 0 0 10px 0;
}

.report-description {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.6;
    margin: 0;
}

.report-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: var(--accent-red);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.report-download:hover {
    background: #F0062A;
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(217, 4, 41, 0.4);
}

.report-download svg {
    width: 18px;
    height: 18px;
}

/* ================== NO REPORTS MESSAGE ================== */
.no-reports {
    background: #EDE8DF;
    border-left: 4px solid var(--accent-red);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.no-reports p {
    font-size: 17px;
    color: var(--text-sub);
    margin: 0;
}

.report-size {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 5px;
}

/* ================== MULTIPLE FILES DOWNLOAD ================== */
.report-download-multiple {
    position: relative;
    z-index: 10;
}

.report-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: var(--accent-red);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'PT Sans', sans-serif;
    width: 100%;
}

.report-download-btn:hover {
    background: #F0062A;
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(217, 4, 41, 0.4);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.report-download-btn:hover .arrow-icon {
    transform: translateY(2px);
}

/* ================== FILE MENU ================== */
.file-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    max-height: 300px;
    overflow-y: auto;
}

.file-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.file-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-sub);
    transition: background 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.file-menu-item:last-child {
    border-bottom: none;
}

.file-menu-item:hover {
    background: #F5F0E8;
    color: var(--text-dark);
}

.file-menu-icon {
    width: 32px;
    height: 32px;
    background: #F5F0E8;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    flex-shrink: 0;
}

.file-menu-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.file-menu-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.file-menu-details {
    font-size: 12px;
    color: var(--text-dim);
}

/* ================== HERO INVESTORS ================== */
.hero-investors {
    background: #e2e0db;
    border-bottom: 3px solid var(--accent-red);
    padding: 80px 20px;
    text-align: center;
}

.hero-investors h1 {
    font-family: 'Philosopher', serif;
    color: var(--text-dark);
    font-size: 42px;
    margin: 0;
    font-weight: 700;
}

/* ================== INVESTORS SECTION ================== */
.investors-section {
    padding: 60px 20px;
    background: var(--bg-page);
}

.investors-intro {
    margin-bottom: 60px;
}

.investors-intro h2 {
    font-family: 'Philosopher', serif;
    font-size: 30px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.investors-intro p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 15px;
}

/* ================== BENEFITS GRID ================== */
.investors-benefits {
    margin-bottom: 60px;
}

.investors-benefits h2 {
    font-family: 'Philosopher', serif;
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.benefit-card {
    padding: 32px 24px;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-hover);
}

.benefit-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #EDE8DF 0%, #E0DAD0 100%);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-red);
}

.benefit-card h3 {
    font-family: 'Philosopher', serif;
    font-size: 19px;
    color: var(--text-dark);
    margin: 0 0 14px 0;
    font-weight: 600;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.65;
    margin: 0;
}

/* ================== INVESTORS DOCUMENTS ================== */
.investors-documents {
    margin-bottom: 60px;
}

.investors-documents h2 {
    font-family: 'Philosopher', serif;
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-documents {
    background: #e2e0db;
    border-left: 4px solid var(--accent-red);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 30px;
}

.no-documents p {
    font-size: 17px;
    color: var(--text-sub);
    margin: 0;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

/* document-item БЕЗ overflow:hidden */
.document-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-left: 5px solid var(--border-hover);
    border-radius: var(--radius-lg);
    transition: all 0.35s ease;
    position: relative;
}



.document-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(4px);
    border-color: red;
}

.document-item:hover::before {
    width: 7px;
}

.document-icon {
    width: 56px;
    height: 56px;
    background: #F5F0E8;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    flex-shrink: 0;
}

.document-info {
    flex: 1;
}

.document-info h3 {
    font-family: 'Philosopher', serif;
    font-size: 17px;
    color: var(--text-dark);
    margin: 0 0 6px 0;
    font-weight: 600;
}

.document-meta {
    font-size: 12px;
    color: var(--text-dim);
    margin: 0;
}

.document-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.document-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-btn {
    background: transparent;
    color: var(--accent-sand);
    border: 1px solid var(--accent-sand);
}

.view-btn:hover {
    background: var(--accent-sand);
    color: var(--bg-dark);
    box-shadow: 0 4px 16px rgba(198, 167, 110, 0.3);
}

.download-btn {
    background: var(--accent-red);
    color: #fff;
    border: 1px solid var(--accent-red);
}

.download-btn:hover {
    background: #F0062A;
    box-shadow: 0 4px 20px rgba(217, 4, 41, 0.4);
}

/* ================== INVESTORS CONTACT ================== */
.investors-contact {
    background: #e2e0db;
    border-left: 4px solid var(--accent-sand);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.investors-contact h2 {
    font-family: 'Philosopher', serif;
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.investors-contact p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 15px;
    margin: 10px 0;
    color: var(--text-sub);
}

.contact-info strong {
    color: rgb(54, 54, 54);
    font-weight: 600;
}

/* ================== FOOTER ================== */
footer {
    background-color: #0D0D0D;
    color: var(--text-sub);
    font-family: 'PT Sans', sans-serif;
    padding: 36px 20px 20px 20px;
    border-top: 3px solid var(--accent-red);
}

.footer-top h3 {
    margin: 0 0 12px 0;
    font-family: 'Philosopher', serif;
    font-size: 20px;
    color: var(--text-dark);
}

.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-sand), transparent);
    margin-bottom: 24px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-left, .footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-left p, .footer-right p {
    margin: 6px 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-sub);
}

.footer-bottom {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
}

/* ================== LOGO ================== */
.logo img {
    width: 145px;
    height: auto;
}

/* ================== ADAPTIVE / MOBILE ================== */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .header-flex .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-graphite);
        box-shadow: -4px 0 20px rgba(0,0,0,0.6);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        border-left: 1px solid var(--border);
    }

    .header-flex .menu.active {
        right: 0;
    }

    .header-flex .menu ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .header-flex .menu ul li {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .header-flex .menu ul li a {
        display: block;
        padding: 15px 10px;
        font-size: 15px;
    }

    .hero { height: 60vh; min-height: 400px; }

    .hero-title h1 { font-size: 32px; }
    .hero-title::after { min-width: 50px; }
    .hero-subtitle p { font-size: 17px; }
    .hero-subtitle::after { min-width: 0; }
    .hero-title, .hero-subtitle { padding: 12px 20px; }

    .content { padding: 50px 20px; }
    .content-inner h2 { font-size: 26px; }
    .content-inner { font-size: 16px; }

    .features-grid { grid-template-columns: 1fr; gap: 18px; }

    .values-section h3 { font-size: 22px; }
    .values-tags { gap: 10px; }
    .value-tag { padding: 8px 18px; font-size: 13px; }

    .intro-box { padding: 20px; }
    .intro-box p { font-size: 17px; }

    .contacts-flex { flex-direction: column; }

    .hero-contacts h1,
    .hero-reporting h1,
    .hero-investors h1 { font-size: 32px; }

    .hero-contacts,
    .hero-reporting,
    .hero-investors { padding: 60px 20px; }

    .reports-grid { grid-template-columns: 1fr; }

    .reporting-intro { padding: 20px; }
    .reporting-intro p { font-size: 15px; }
    .reporting-category h2 { font-size: 22px; }

    .file-menu { max-height: 250px; }
    .file-menu-item { padding: 10px 12px; }
    .file-menu-icon { width: 28px; height: 28px; }

    .benefits-grid { grid-template-columns: 1fr; }

    .document-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .document-actions {
        flex-direction: column;
        width: 100%;
    }

    .document-btn {
        width: 100%;
        justify-content: center;
    }

    .investors-intro h2,
    .investors-benefits h2,
    .investors-documents h2,
    .investors-contact h2 { font-size: 22px; }

    .footer-flex { flex-direction: column; }
    .footer-left, .footer-right { min-width: 100%; }
}

@media (max-width: 480px) {
    .logo img { width: 100px; }
    .header-flex { height: 70px; }

    .hero-title h1 { font-size: 22px; }
    .hero-subtitle p { font-size: 14px; }
    .content-inner h2 { font-size: 22px; }

    .hero-contacts h1,
    .hero-reporting h1,
    .hero-investors h1 { font-size: 26px; }

    .report-card,
    .feature-card,
    .benefit-card { padding: 20px; }

    .value-tag { padding: 7px 14px; font-size: 12px; }
}

/* ================== MAP ================== */
.map-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    .map-container { height: 300px; }
}

/* ================== SCROLLBAR ================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
    background: #F5F0E8;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-sand);
}

/* ================== SELECTION ================== */
::selection {
    background: var(--accent-red);
    color: #fff;
}