/* =============================================
   Fortune International Limited — Website v2
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --primary:      #0A1929;
    --secondary:    #142840;
    --accent:       #C9A84C;
    --accent-light: #E8C870;
    --accent-dim:   rgba(201,168,76,0.14);
    --bg:           #FAFBFC;
    --surface:      #F1F5F9;
    --white:        #FFFFFF;
    --text:         #0F1A26;
    --text-2:       #4A5568;
    --text-3:       #718096;
    --border:       #E2E8F0;
    --border-2:     #CBD5E0;
    --shadow-xs:    0 1px 3px rgba(10,25,41,0.07);
    --shadow-sm:    0 2px 8px rgba(10,25,41,0.09);
    --shadow:       0 4px 20px rgba(10,25,41,0.10);
    --shadow-lg:    0 12px 48px rgba(10,25,41,0.16);
    /* Backward compatibility */
    --muted:        #4A5568;
    --light:        #F1F5F9;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── NAVIGATION ─────────────────────────────── */
nav {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(201,168,76,0.35);
    box-shadow: 0 4px 24px rgba(10,25,41,0.25);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-brand-logo {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    font-family: 'IBM Plex Sans', sans-serif;
}

.nav-brand-text { line-height: 1.25; }

.nav-brand-name {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    letter-spacing: 0.1px;
}

.nav-brand-sub {
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    opacity: 0.85;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1px;
    align-items: center;
}

.nav-item { position: relative; }

.nav-link {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    padding: 8px 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.845rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.18s ease;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 0.1px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(201,168,76,0.16);
    color: var(--accent);
}

.nav-link .caret {
    font-size: 0.6rem;
    opacity: 0.55;
    transition: transform 0.2s;
}

.nav-item:hover .caret { transform: rotate(180deg); }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary);
    min-width: 262px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 200;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    padding-top: 8px;
}

.nav-item:hover .dropdown { display: block; }

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 12px 18px;
    font-size: 0.84rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.18s;
    cursor: pointer;
}

.dropdown a:last-child { border-bottom: none; }

.dropdown a:hover {
    background: var(--accent-dim);
    color: var(--accent);
    padding-left: 24px;
}

.dropdown a .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    opacity: 0.55;
    transition: opacity 0.18s;
}

.dropdown a:hover .dot { opacity: 1; }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 7px;
    cursor: pointer;
    padding: 0;
    color: var(--white);
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    transition: border-color 0.18s, color 0.18s;
    flex-shrink: 0;
}

.nav-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* ── HERO ───────────────────────────────────── */
.hero {
    position: relative;
    background: var(--primary);
    color: var(--white);
    padding: 96px 28px 88px;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 70% at 50% -20%, rgba(201,168,76,0.09) 0%, transparent 60%),
        radial-gradient(ellipse 60% 100% at 100% 60%, rgba(20,40,64,0.7) 0%, transparent 60%),
        linear-gradient(160deg, #0A1929 0%, #0E2440 50%, #142840 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.032;
    background-image:
        linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201,168,76,0.10);
    border: 1px solid rgba(201,168,76,0.32);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero h1 .gold { color: var(--accent); }

.hero-tagline {
    font-size: 1.15rem !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.6) !important;
    opacity: 1 !important;
    margin-bottom: 14px !important;
    font-style: italic !important;
    letter-spacing: 0.2px;
}

.hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.62);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.78;
}

.hero-stats {
    display: inline-flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 18px 36px;
    border-right: 1px solid rgba(255,255,255,0.08);
    min-width: 130px;
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.hero-stat-lbl {
    font-size: 0.71rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-weight: 500;
}

/* ── QUICK LINKS ────────────────────────────── */
.quick-links {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.ql-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.ql-item {
    flex: 1;
    min-width: 160px;
    padding: 17px 22px;
    text-decoration: none;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 500;
    font-size: 0.855rem;
    border-right: 1px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
}

.ql-item:last-child { border-right: none; }

.ql-item:hover {
    background: var(--surface);
    color: var(--primary);
}

.ql-item:hover .ql-icon-wrap {
    background: var(--accent);
    color: var(--primary);
}

.ql-icon-wrap {
    width: 32px;
    height: 32px;
    background: rgba(10,25,41,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    color: var(--secondary);
}

.ql-icon-wrap svg { width: 16px; height: 16px; }

/* ── PAGE HEADER ────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 56px 28px 50px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.022;
}

.page-header::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(201,168,76,0.07);
    pointer-events: none;
}

.page-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(1.65rem, 4vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.page-header p {
    color: rgba(255,255,255,0.62);
    font-size: 0.975rem;
    max-width: 580px;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.775rem;
    color: rgba(255,255,255,0.48);
    margin-bottom: 14px;
}

.breadcrumb a { color: rgba(255,255,255,0.58); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.4; }

/* ── MAIN CONTENT ───────────────────────────── */
.main-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 28px 80px;
}

/* ── SECTION ────────────────────────────────── */
.section { margin-bottom: 52px; }

.section-title {
    font-size: 1.32rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 44px;
    height: 2px;
    background: var(--accent);
}

.section-title svg,
.section-title .s-icon { color: var(--accent); flex-shrink: 0; font-size: 1.25rem; }

/* ── SUB-TABS ───────────────────────────────── */
.subtabs-bar {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--border);
    flex-wrap: wrap;
}

.stab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    transition: all 0.18s;
    font-family: inherit;
    letter-spacing: 0.1px;
}

.stab:hover { color: var(--primary); }

.stab.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
    font-weight: 600;
}

.stab-panel { display: none; }
.stab-panel.active { display: block; }

/* ── YEAR ACCORDION ─────────────────────────── */
.year-group {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: var(--shadow-xs);
}

.year-header {
    background: var(--primary);
    color: var(--white);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.925rem;
    user-select: none;
    transition: background 0.18s;
    gap: 12px;
    letter-spacing: 0.1px;
}

.year-header:hover { background: #112234; }

.year-header .yh-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.year-badge {
    background: var(--accent);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.year-header .chevron {
    transition: transform 0.28s ease;
    font-size: 0.8rem;
    opacity: 0.65;
}

.year-header.open .chevron { transform: rotate(180deg); }

.year-body {
    display: none;
    padding: 20px;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.year-body.open { display: block; }

/* ── QUARTER GROUP ──────────────────────────── */
.quarter-group { margin-bottom: 18px; }
.quarter-group:last-child { margin-bottom: 0; }

.quarter-label {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    padding: 5px 12px;
    background: rgba(20,40,64,0.08);
    border-left: 3px solid var(--accent);
    border-radius: 0 5px 5px 0;
    display: inline-block;
}

/* ── DOCUMENT LIST ──────────────────────────── */
.doc-list { display: flex; flex-direction: column; gap: 5px; }

.doc-row {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    gap: 10px;
    transition: all 0.2s;
    cursor: pointer;
}

.doc-row:hover {
    border-color: rgba(201,168,76,0.5);
    box-shadow: 0 2px 12px rgba(201,168,76,0.10);
    background: #FFFEF8;
}

.doc-row .doc-ico { color: #DC2626; flex-shrink: 0; width: 18px; height: 18px; font-size: 1rem; }
.doc-row .doc-ico.img { color: #2563EB; }

.doc-row .doc-label {
    flex: 1;
    font-size: 0.845rem;
    color: var(--text);
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
}

.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 5px 13px;
    border-radius: 6px;
    font-size: 0.775rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.18s;
    cursor: pointer;
    letter-spacing: 0.2px;
}

.dl-btn:hover { background: var(--accent); color: var(--primary); }
.dl-btn svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── DOC CARD ────────────────────────────────── */
.doc-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }

.doc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.22s;
    box-shadow: var(--shadow-xs);
}

.doc-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(201,168,76,0.42);
    transform: translateY(-2px);
}

.doc-card-top { display: flex; align-items: flex-start; gap: 14px; }

.doc-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.5rem;
}

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

.doc-card-info h3 { font-size: 0.975rem; color: var(--primary); margin-bottom: 4px; line-height: 1.3; font-weight: 600; }
.doc-card-info p { font-size: 0.81rem; color: var(--text-2); line-height: 1.55; }

.dl-btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.865rem;
    font-weight: 600;
    transition: all 0.18s;
    cursor: pointer;
    letter-spacing: 0.2px;
}

.dl-btn-full:hover { background: var(--accent); color: var(--primary); }

/* ── AGM GRID ───────────────────────────────── */
.agm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.agm-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all 0.22s;
}

.agm-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: rgba(201,168,76,0.38);
}

.agm-card-head {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 20px 18px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 14px;
}

.agm-card-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.5px;
}

.agm-card-meta h3 { font-size: 0.975rem; font-weight: 600; margin-bottom: 3px; }
.agm-card-meta p { font-size: 0.785rem; color: rgba(255,255,255,0.6); }

.agm-card-body { padding: 14px 16px; }

/* ── FEATURE CARDS (Home) ───────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 52px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.22s;
    box-shadow: var(--shadow-xs);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(201,168,76,0.38);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(10,25,41,0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.22s;
    color: var(--primary);
}

.feature-icon-wrap svg { width: 26px; height: 26px; }

.feature-card:hover .feature-icon-wrap {
    background: var(--accent);
    color: var(--primary);
}

/* Backward compat for old .feature-icon spans */
.feature-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }

.feature-card h3 { font-size: 0.975rem; color: var(--primary); margin-bottom: 8px; font-weight: 600; }
.feature-card p { font-size: 0.825rem; color: var(--text-2); line-height: 1.6; }

/* ── ABOUT HOME ─────────────────────────────── */
.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
    margin-bottom: 56px;
}

.about-text h2 {
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.about-text h2 span { color: var(--accent); }

.about-text p {
    color: var(--text-2);
    margin-bottom: 14px;
    line-height: 1.75;
    font-size: 0.95rem;
}

.about-highlights { list-style: none; margin-top: 20px; }

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text);
}

.about-highlights li:last-child { border-bottom: none; }

.about-highlights li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.about-visual {
    background: linear-gradient(145deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    padding: 44px 36px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: rgba(201,168,76,0.07);
    border-radius: 50%;
    pointer-events: none;
}

.about-visual::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 150px; height: 150px;
    background: rgba(201,168,76,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.av-item {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.av-item:last-child { margin-bottom: 0; }

.av-num {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.av-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.58);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ── CONTACT ────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 26px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: all 0.22s;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contact-card .ci-icon {
    width: 48px;
    height: 48px;
    background: rgba(10,25,41,0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--primary);
    font-size: 1.5rem;
}

.contact-card .ci-icon svg { width: 22px; height: 22px; }

.contact-card h3 { color: var(--primary); font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.contact-card p { color: var(--text-2); font-size: 0.865rem; line-height: 1.65; }

.notice-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    padding: 18px 22px;
    color: var(--text-2);
    font-size: 0.885rem;
    line-height: 1.72;
}

/* ── FOOTER ─────────────────────────────────── */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 52px 28px 24px;
    margin-top: auto;
    border-top: 2px solid rgba(201,168,76,0.22);
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
    letter-spacing: 0.1px;
}

.footer-brand-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-top: 12px;
}

.footer-contact-mini {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.79rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.footer-contact-mini span,
.footer-contact-mini div {
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.footer-contact-mini svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
    opacity: 0.65;
}

.footer-col h4 {
    color: rgba(255,255,255,0.45);
    font-size: 0.71rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }

.footer-col ul li a {
    color: rgba(255,255,255,0.56);
    text-decoration: none;
    font-size: 0.835rem;
    transition: color 0.18s;
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.755rem;
    color: rgba(255,255,255,0.32);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.18s;
}

.footer-bottom a:hover { color: var(--accent); }

/* ── UTILITIES ──────────────────────────────── */
.tag {
    display: inline-block;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(201,168,76,0.28);
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.empty-state {
    text-align: center;
    padding: 40px;
    background: var(--surface);
    border-radius: 10px;
    color: var(--text-2);
    border: 1px dashed var(--border-2);
}

.empty-state .es-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
    opacity: 0.32;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-block { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 12px 16px 16px;
        border-top: 1px solid rgba(255,255,255,0.07);
        box-shadow: 0 16px 40px rgba(0,0,0,0.28);
        gap: 2px;
    }

    .nav-menu.open .dropdown {
        display: block;
        position: static;
        box-shadow: none;
        background: rgba(255,255,255,0.04);
        margin: 4px 0;
        border-radius: 6px;
    }

    .hero-stats {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        min-width: 0;
        padding: 16px 24px;
    }

    .hero-stat:last-child { border-bottom: none; }

    .ql-grid { flex-direction: column; }
    .ql-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .ql-item:last-child { border-bottom: none; }

    .features-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .agm-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
    .hero-stats { border-radius: 10px; }
    .nav-container { padding: 0 16px; }
    .main-content { padding: 40px 16px 60px; }
    .page-header { padding: 40px 16px 36px; }
    .hero { padding: 72px 16px 64px; }
}
