/* =========================
   GLOBAL FOUNDATION
   ========================= */

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #1a1c1f 0%, #0f1012 60%);
    color: #f5f5f5;
    overflow-x: hidden;
}

/* =========================
   NAVIGATION
   ========================= */

.navbar {
    position: fixed;
    width: 100%;
    padding: 22px 6%;
    background: rgba(15,16,18,0.92);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
}


.navbar .logo {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 2px;
    color: #c6a14a;
}

.navbar a {
    margin-left: 30px;
    text-decoration: none;
    color: #aaa;
    transition: 0.3s ease;
}

.navbar a:hover {
    color: #c6a14a;
}
.nav-container {
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: #d6d6d6;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #e6c873;
}

/* =========================
   ARCHITECTURAL HERO
   ========================= */

.hero-architectural {
    padding: 100px 8% 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 80px;
}

.hero-left {
    text-align: left;
}

.hero-logo {
    margin-bottom: 50px;
}

.hero-logo img {
    width: 420px;
    height: auto;
}

.hero-left h1 {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.6px;
    color: #ffffff;
    margin-bottom: 28px;
}



.hero-sub {
    font-size: 19px;
    line-height: 1.65;
    color: #cfcfcf;
    margin-bottom: 48px;
    max-width: 540px;
}


/* HERO RIGHT SIDE */

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* =========================
   BUTTONS
   ========================= */

.btn {
    padding: 16px 32px;
    margin-right: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary {
    background: linear-gradient(135deg,#c6a14a,#e6c873);
    color: #111;
    box-shadow: 0 10px 25px rgba(198,161,74,0.3);
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(198,161,74,0.45);
}

.secondary {
    border: 1px solid #c6a14a;
    color: #c6a14a;
}

.secondary:hover {
    background: #c6a14a;
    color: #111;
}

/* =========================
   SECTIONS
   ========================= */

.section {
    padding: 120px 8%;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.section:nth-child(even) {
    background: rgba(255,255,255,0.02);
}

h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #e6c873;
}

.section p {
    max-width: 850px;
    color: #bbb;
    font-size: 17px;
}

/* =========================
   DIVISION ARCHITECTURE
   ========================= */

.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 40px;
    margin-top: 60px;
}

.division-card {
    background: #17191c;
    padding: 50px 40px;
    border-radius: 12px;
    border: 1px solid rgba(198,161,74,0.08);
    transition: 0.4s ease;
    position: relative;
}

.division-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,#c6a14a,transparent);
}

.division-card:hover {
    transform: translateY(-8px);
    border-color: rgba(198,161,74,0.4);
}

/* LOGO INSIDE CARD */

.division-logo {
    margin-bottom: 25px;
}

.division-logo img {
    width: 240px;
    height: auto;
    opacity: 0.85;
    transition: 0.3s ease;
}

.division-card:hover .division-logo img {
    opacity: 1;
    transform: scale(1.03);
}

/* TEXT INSIDE CARD */

.division-role {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.division-desc {
    font-size: 15px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 30px;
}

.division-parent {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================
   FOOTER
   ========================= */

footer {
    padding: 60px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #777;
}

/* =========================
   SCROLL ANIMATION
   ========================= */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    h2 {
        font-size: 30px;
    }
}
/* INVESTOR PAGE */

.investor-hero {
    padding: 180px 8% 120px;
    text-align: center;
}

.investor-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.investor-sub {
    max-width: 700px;
    margin: 30px auto 0;
    color: #b8b8b8;
}

.investor-section {
    padding: 120px 8%;
}

.investor-section.alt {
    background: rgba(255,255,255,0.02);
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.model-card {
    padding: 40px;
    background: #17191c;
    border: 1px solid rgba(198,161,74,0.1);
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
}

.capital-section {
    padding: 120px 8%;
    text-align: center;
}

.access-section {
    padding: 140px 8%;
    background: radial-gradient(circle at center, rgba(198,161,74,0.05), transparent);
}

.access-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #17191c;
    border-radius: 12px;
    border: 1px solid rgba(198,161,74,0.3);
}

.access-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.access-box input,
.access-box textarea {
    padding: 14px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 6px;
}

.primary-btn {
    padding: 16px;
    background: linear-gradient(135deg,#c6a14a,#e6c873);
    border: none;
    color: #111;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
}
