/* ===================================================
   HOLDING CMS — CORPORATE STYLESHEET
   v1.0.0 | PHP 8.3 | DirectAdmin
=================================================== */

/* Variables */
:root {
    --navy:     #0B1426;
    --navy2:    #111d35;
    --navy3:    #162040;
    --gold:     #C5A028;
    --gold2:    #d4b040;
    --gold-muted: rgba(197,160,40,.15);
    --white:    #ffffff;
    --gray-100: #f8f9fb;
    --gray-200: #eef0f5;
    --gray-400: #8899aa;
    --gray-600: #556070;
    --border:   rgba(255,255,255,.08);
    --shadow:   0 4px 24px rgba(0,0,0,.3);
    --radius:   10px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-head: 'Cormorant Garamond', Georgia, serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--navy); color: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* Typography */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(36px, 6vw, 80px); }
h2 { font-size: clamp(28px, 4vw, 52px); }
h3 { font-size: clamp(18px, 2.5vw, 26px); }

/* Layout */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(60px, 8vw, 120px) 0; }

/* ==================== HEADER ==================== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(11,20,38,.95);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    padding: 14px 0;
}
.site-header .container {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; }
.logo-text {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.logo-text::after { content: '.'; color: var(--gold); }
.logo-img { height: 44px; width: auto; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    border-radius: 6px;
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    width: 32px; padding: 6px 0;
}
.nav-toggle span {
    display: block; height: 2px; background: var(--white);
    border-radius: 2px; transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: stretch;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(197,160,40,.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 10% 80%, rgba(21,50,100,.4) 0%, transparent 60%),
        linear-gradient(160deg, var(--navy) 60%, #0d1f42 100%);
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image: 
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .5;
}
.hero .container { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; justify-content: center; padding-top: 40px; padding-bottom: 40px; gap: 60px; }
.hero-content { max-width: 700px; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
}
.hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-title {
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.hero-title span { color: var(--gold); font-style: italic; }
.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,.65);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-1px); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.stat-card {
    background: rgba(255,255,255,.03);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}
.stat-card:hover { background: rgba(197,160,40,.08); }
.stat-num {
    font-family: var(--font-head);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }

/* Scroll indicator */
.hero-scroll {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding-bottom: 32px;
    color: var(--gray-400); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ==================== TICKER ==================== */
.ticker-wrap {
    background: var(--gold);
    overflow: hidden;
    padding: 14px 0;
}
.ticker-track {
    display: flex;
    animation: ticker 25s linear infinite;
    width: max-content;
}
.ticker-item {
    font-size: 13px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--navy);
    padding: 0 28px; white-space: nowrap;
    display: flex; align-items: center; gap: 16px;
}
.ticker-item em { font-style: normal; opacity: .5; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ==================== SECTION COMMONS ==================== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 16px;
}
.section-header h2 { color: var(--white); margin-bottom: 16px; }
.section-header p { color: var(--gray-400); max-width: 560px; margin: 0 auto; font-size: 16px; }
.section-cta { text-align: center; margin-top: 48px; }

/* ==================== ABOUT TEASER ==================== */
.about-teaser { background: var(--navy2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .section-tag { margin-bottom: 16px; display: block; }
.about-text h2 { color: var(--white); margin-bottom: 20px; }
.about-text p { color: var(--gray-400); font-size: 16px; margin-bottom: 32px; line-height: 1.8; }
.about-visual { position: relative; }
.about-card {
    background: var(--gold);
    color: var(--navy);
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    text-align: center;
}
.about-card-num { font-family: var(--font-head); font-size: 72px; font-weight: 700; line-height: 1; }
.about-card-label { font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }
.about-lines { display: flex; flex-wrap: wrap; gap: 8px; }
.about-line {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--gray-400);
    transition: var(--transition);
}
.about-line:hover { border-color: var(--gold); color: var(--gold); }

/* ==================== COMPANIES ==================== */
.companies-section { background: var(--navy); }
.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.company-card {
    background: var(--navy2);
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
}
.company-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}
.company-card:hover { background: var(--navy3); }
.company-card:hover::before { transform: scaleX(1); }
.company-num {
    font-size: 12px; font-weight: 700; color: var(--gold);
    letter-spacing: 2px; margin-bottom: 20px;
}
.company-logo-wrap { margin-bottom: 16px; height: 48px; display: flex; align-items: center; }
.company-logo-wrap img { max-height: 48px; max-width: 140px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .7; transition: var(--transition); }
.company-card:hover .company-logo-wrap img { opacity: 1; filter: none; }
.company-logo-placeholder {
    width: 48px; height: 48px;
    background: var(--gold-muted);
    border: 1px solid rgba(197,160,40,.3);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--gold);
    text-transform: uppercase;
}
.company-sector { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.company-card h3 { color: var(--white); margin-bottom: 12px; font-size: 20px; }
.company-card p { color: var(--gray-400); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.company-link {
    font-size: 13px; font-weight: 600; color: var(--gold);
    display: flex; align-items: center; gap: 6px;
    transition: var(--transition);
}
.company-link:hover { gap: 10px; }

/* ==================== NEWS ==================== */
.news-section { background: var(--navy2); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: var(--navy3); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.news-card:hover { transform: translateY(-4px); border-color: rgba(197,160,40,.3); }
.news-img { height: 200px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.news-card:hover .news-img img { transform: scale(1.04); }
.news-body { padding: 24px; }
.news-date { font-size: 12px; color: var(--gold); margin-bottom: 10px; }
.news-body h3 { font-size: 18px; color: var(--white); margin-bottom: 12px; line-height: 1.4; }
.news-body h3 a:hover { color: var(--gold); }
.news-body p { color: var(--gray-400); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.news-link { font-size: 13px; font-weight: 600; color: var(--gold); transition: var(--transition); }
.news-link:hover { letter-spacing: .5px; }

/* ==================== CTA BAND ==================== */
.cta-band {
    background: var(--gold);
    padding: 80px 0;
    text-align: center;
}
.cta-band h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px); color: var(--navy); margin-bottom: 16px; }
.cta-band p { color: rgba(11,20,38,.7); font-size: 18px; margin-bottom: 32px; }
.cta-band .btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cta-band .btn-primary:hover { background: var(--navy2); border-color: var(--navy2); }

/* ==================== FOOTER ==================== */
.site-footer { background: #070e1c; padding: 80px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; }
.footer-logo { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--gold); margin-bottom: 16px; letter-spacing: 1px; }
.footer-logo::after { content: '.'; }
.footer-brand p { color: var(--gray-400); font-size: 14px; line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col ul li span { color: var(--gray-400); font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-400); font-size: 14px; }
.contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.contact-item a { color: var(--gray-400); transition: var(--transition); }
.contact-item a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    color: var(--gray-400); font-size: 13px;
}
.footer-ver { font-size: 11px; opacity: .5; }

/* ==================== INNER PAGES ==================== */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(160deg, var(--navy2) 0%, var(--navy) 100%);
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197,160,40,.06) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-400); margin-bottom: 24px; }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--gray-400); font-size: 18px; max-width: 600px; }

/* About Page */
.about-section { background: var(--navy); }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--navy2); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: var(--transition); }
.value-card:hover { border-color: rgba(197,160,40,.4); transform: translateY(-4px); }
.value-icon { width: 48px; height: 48px; background: var(--gold-muted); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--gold); }
.value-card h4 { color: var(--white); font-size: 18px; margin-bottom: 12px; }
.value-card p { color: var(--gray-400); font-size: 14px; line-height: 1.7; }

/* Management */
.management-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.manager-card { background: var(--navy2); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); text-align: center; transition: var(--transition); }
.manager-card:hover { border-color: rgba(197,160,40,.3); transform: translateY(-4px); }
.manager-photo { height: 220px; background: var(--navy3); overflow: hidden; }
.manager-photo img { width: 100%; height: 100%; object-fit: cover; }
.manager-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 48px; color: var(--gold); opacity: .3; }
.manager-info { padding: 20px; }
.manager-info h4 { color: var(--white); font-size: 17px; margin-bottom: 6px; }
.manager-info .title { font-size: 13px; color: var(--gold); }

/* Companies page */
.sector-block { margin-bottom: 64px; }
.sector-title { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.sector-title h3 { color: var(--white); font-size: 22px; }
.sector-badge { background: var(--gold-muted); color: var(--gold); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; border: 1px solid rgba(197,160,40,.3); }
.companies-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* News page */
.news-page-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.news-list { display: flex; flex-direction: column; gap: 28px; }
.news-list-item { display: flex; gap: 24px; background: var(--navy2); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); transition: var(--transition); }
.news-list-item:hover { border-color: rgba(197,160,40,.3); }
.news-list-thumb { width: 120px; height: 90px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--navy3); }
.news-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-list-body h3 { font-size: 17px; color: var(--white); margin-bottom: 8px; line-height: 1.4; }
.news-list-body h3 a:hover { color: var(--gold); }
.news-list-body p { color: var(--gray-400); font-size: 13px; line-height: 1.6; }
.news-sidebar { position: sticky; top: 100px; }
.sidebar-box { background: var(--navy2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.sidebar-box h4 { color: var(--white); font-size: 15px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info { }
.contact-info h3 { color: var(--white); font-size: 28px; margin-bottom: 20px; }
.contact-info p { color: var(--gray-400); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail .icon { width: 44px; height: 44px; background: var(--gold-muted); border: 1px solid rgba(197,160,40,.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-detail .text strong { display: block; color: var(--white); margin-bottom: 4px; }
.contact-detail .text span { color: var(--gray-400); font-size: 14px; }
.contact-form { background: var(--navy2); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.contact-form h3 { color: var(--white); margin-bottom: 28px; font-size: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; color: var(--gray-400); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 13px 16px;
    background: var(--navy); border: 1px solid var(--border);
    border-radius: 8px; color: var(--white); font: inherit; font-size: 14px;
    outline: none; transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--navy2); }
.form-submit { width: 100%; }

/* Map embed */
.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 32px; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 300px; border: none; }

/* Alert messages */
.alert { padding: 14px 20px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: rgba(40,200,100,.1); border: 1px solid rgba(40,200,100,.3); color: #6dffa5; }
.alert-error { background: rgba(200,50,50,.1); border: 1px solid rgba(200,50,50,.3); color: #ff8888; }

/* Detail pages */
.article-wrap { max-width: 800px; margin: 0 auto; }
.article-meta { display: flex; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.article-meta span { font-size: 13px; color: var(--gray-400); }
.article-meta .tag { background: var(--gold-muted); color: var(--gold); padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(197,160,40,.3); }
.article-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.article-img img { width: 100%; max-height: 480px; object-fit: cover; }
.article-content { color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.9; }
.article-content h2,h3,h4 { color: var(--white); margin: 32px 0 16px; }
.article-content p { margin-bottom: 20px; }
.article-content ul,ol { padding-left: 24px; margin-bottom: 20px; }
.article-content li { margin-bottom: 8px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 8px;
    font-size: 14px; font-weight: 600;
    border: 1px solid var(--border); color: var(--gray-400);
    transition: var(--transition);
}
.pagination a:hover, .pagination span.current { border-color: var(--gold); color: var(--gold); }

/* Empty state */
.empty-state { text-align: center; padding: 80px 20px; color: var(--gray-400); }
.empty-state svg { margin: 0 auto 20px; opacity: .3; }
.empty-state h3 { color: var(--white); margin-bottom: 10px; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .companies-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .management-grid { grid-template-columns: repeat(2, 1fr); }
    .companies-list { grid-template-columns: repeat(2, 1fr); }
    .news-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; top: 64px; left: 0; right: 0;
        background: rgba(11,20,38,.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px 32px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 99;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; }
    .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 16px; }
    
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .companies-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-values-grid { grid-template-columns: 1fr; }
    .management-grid { grid-template-columns: repeat(2, 1fr); }
    .companies-list { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .news-list-item { flex-direction: column; }
    .news-list-thumb { width: 100%; height: 160px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .management-grid { grid-template-columns: 1fr; }
}
