* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #0B1A33;
    scroll-behavior: smooth;
}

:root {
    --navy: #0B1A33;
    --navy-light: #142c4c;
    --gold: #C6A43F;
    --gold-dark: #a8882f;
    --white: #ffffff;
    --gray-bg: #F8F9FC;
    --gray-text: #475569;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER & NAVIGASI ========== */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    padding: 16px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy);
    letter-spacing: -0.3px;
}

.logo-text span {
    color: var(--gold);
}

/* ========== NAVIGATION MENU ========== */
nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

nav a {
    text-decoration: none;
    font-weight: 500;
    color: var(--navy);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 30px;
    position: relative;
    display: inline-block;
}

/* Efek underline animasi */
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 70%;
}

/* Efek hover */
nav a:hover {
    color: var(--navy);
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(198, 164, 63, 0.3);
}

/* Active menu */
nav a.active {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(198, 164, 63, 0.4);
}

nav a.active::after {
    width: 70%;
    background: var(--navy);
}

/* Tooltip */
nav a::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--navy);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

nav a:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ========== BUTTON STYLES ========== */
.btn-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--navy);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
    font-family: inherit;
    display: inline-block;
    text-decoration: none;
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-solid {
    background: var(--gold);
    border: none;
    color: var(--navy);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

.btn-solid:hover {
    background: #D4AF37;
    transform: translateY(-2px);
}

.btn-wa {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    transition: 0.2s;
}

.btn-wa:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-location {
    display: inline-block;
    background: var(--navy);
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    transition: 0.2s;
    border: none;
}

.btn-location i {
    margin-right: 8px;
    color: var(--gold);
}

.btn-location:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* ========== SECTIONS ========== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-sub {
    color: var(--gray-text);
    max-width: 600px;
    margin-bottom: 48px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8F9FC 0%, #ffffff 100%);
    padding: 60px 0 80px;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.badge {
    background: rgba(198,164,63,0.12);
    color: var(--gold-dark);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 24px;
}

.card {
    background: white;
    padding: 32px 24px;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: 0.2s;
    border: 1px solid #eef2f6;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.08);
}

.card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* Price Card */
.price-card {
    background: var(--navy);
    color: white;
    padding: 40px;
    border-radius: 32px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.price-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin: 16px 0;
}

.price-card ul {
    text-align: left;
    margin: 24px 0;
    list-style: none;
}

.price-card li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ========== BAGAN ORGANISASI ========== */
.org-chart {
    margin-top: 40px;
}

.org-level-1 {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.org-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.2s;
    border: 1px solid #eef2f6;
}

.org-card:hover {
    transform: translateY(-4px);
}

.managing-partner {
    background: linear-gradient(135deg, #0B1A33 0%, #142c4c 100%);
    color: white;
    min-width: 260px;
}

.managing-partner .team-name {
    color: var(--gold);
    font-size: 1.3rem;
}

.managing-partner .team-role {
    color: #dddddd;
}

.photo-frame {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.small-photo {
    width: 70px;
    height: 70px;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-line {
    width: 2px;
    height: 40px;
    background: var(--gold);
    margin: 0 auto 30px;
    position: relative;
}

.org-line::before,
.org-line::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: var(--gold);
    top: 50%;
}

.org-line::before {
    left: -100px;
}

.org-line::after {
    right: -100px;
}

.org-level-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.org-division {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
}

.division-card {
    background: var(--gray-bg);
    padding: 20px 16px;
    margin-bottom: 16px;
    border-radius: 20px;
}

.division-card .team-name {
    font-size: 0.95rem;
    margin-top: 8px;
}

.division-card .team-role {
    font-size: 0.7rem;
}

.org-staff {
    margin-top: 8px;
}

.staff-card {
    background: white;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.staff-photo {
    width: 45px;
    height: 45px;
    margin: 0 auto 8px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.staff-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-card span {
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
}

.staff-card small {
    font-size: 0.7rem;
    color: var(--gray-text);
    display: block;
}

.team-name {
    font-weight: 700;
    font-size: 1rem;
    margin-top: 8px;
}

.team-role {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 4px;
}

small {
    font-size: 0.7rem;
    color: var(--gray-text);
}

/* ========== BACKGROUND TIMBANGAN EMAS ========== */
.legal-watermark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.08;
}

.legal-watermark i {
    font-size: 200px;
    color: var(--gold);
    transform: rotate(-10deg);
}

/* ========== CONTACT GRID ========== */
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    min-width: 150px;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.2s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-item h3 {
    margin: 12px 0 8px;
    font-size: 1.1rem;
    color: var(--navy);
}

.contact-link {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.85rem;
    word-break: break-word;
    transition: 0.2s;
}

.contact-link:hover {
    color: var(--gold);
}

/* ========== SOCIAL MEDIA ICONS ========== */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    transition: 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-icons a i {
    font-size: 1.8rem;
    transition: 0.2s;
}

.social-icons a.instagram {
    background: radial-gradient(circle at 30% 110%, #ffdb70, #f9ce34, #e4405f, #833ab4, #5851db);
}
.social-icons a.instagram i { color: white; }
.social-icons a.instagram:hover { transform: scale(1.1); }

.social-icons a.tiktok {
    background: #010101;
}
.social-icons a.tiktok i {
    color: #00f2ea;
    text-shadow: 2px 2px 0 #ff004f;
}
.social-icons a.tiktok:hover { transform: scale(1.1); }

.social-icons a.email {
    background: #EA4335;
}
.social-icons a.email i { color: white; }
.social-icons a.email:hover { transform: scale(1.1); }

.social-icons a.whatsapp {
    background: #25D366;
}
.social-icons a.whatsapp i { color: white; }
.social-icons a.whatsapp:hover { transform: scale(1.1); }

.social-icons a:hover i { transform: scale(1.05); }

/* Footer */
footer {
    background: #0B1A33;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* ========== LEGAL BASIS SECTION ========== */
.legal-section {
    background: #ffffff;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.legal-card {
    background: var(--gray-bg);
    border-radius: 24px;
    padding: 32px;
    border-left: 5px solid var(--gold);
    transition: 0.2s;
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.legal-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.legal-card h3 i {
    color: var(--gold);
    margin-right: 12px;
}

.legal-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 12px;
}

.legal-card ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-card li {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 8px;
}

.legal-card.references {
    background: var(--navy);
    color: white;
}

.legal-card.references h3 {
    color: var(--gold);
}

.legal-card.references li {
    color: #dddddd;
}

/* ========== RESEARCH DATA SECTION ========== */
.research-section {
    background: #F8F9FC;
}

.research-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.research-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.2s;
}

.research-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.research-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--navy);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 12px;
    display: inline-block;
}

.research-card h3 i {
    color: var(--gold);
    margin-right: 12px;
}

.research-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 16px;
}

.research-card ul {
    margin: 16px 0;
    padding-left: 24px;
}

.research-card li {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Highlight Cards */
.research-card.highlight {
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
    border-left: 5px solid #e74c3c;
}

.research-card.highlight-green {
    background: linear-gradient(135deg, #e8f8f5 0%, #ffffff 100%);
    border-left: 5px solid #27ae60;
}

.research-card.warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
    border-left: 5px solid #f39c12;
}

/* Stat Badges */
.stat-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 24px 0;
    justify-content: center;
}

.stat-badge {
    text-align: center;
    padding: 20px 30px;
    border-radius: 20px;
    min-width: 180px;
}

.stat-badge.danger {
    background: #e74c3c;
    color: white;
}

.stat-badge.success {
    background: #27ae60;
    color: white;
}

.stat-badge.primary {
    background: var(--navy);
    color: white;
}

.stat-badge.secondary {
    background: #95a5a6;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.photo-slot {
    background: var(--gray-bg);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 2px dashed var(--gold);
    transition: 0.2s;
}

.photo-slot i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.photo-slot p {
    font-weight: 600;
    margin-bottom: 8px;
}

.photo-slot small {
    color: var(--gray-text);
    font-size: 0.7rem;
}

.photo-slot:hover {
    background: var(--gold);
    border-color: var(--navy);
}

.photo-slot:hover i,
.photo-slot:hover p,
.photo-slot:hover small {
    color: var(--navy);
}

.photo-note {
    margin-top: 16px;
    font-size: 0.8rem;
    background: var(--gray-bg);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

/* ========== SUPER RESPONSIVE - ALL DEVICES ========== */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .org-level-2 {
        gap: 20px;
    }
}

/* Mobile Landscape & Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header */
    .header-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-area {
        justify-content: center;
    }
    
    nav {
        justify-content: center;
        gap: 12px;
    }
    
    nav a {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Sembunyikan tooltip di HP */
    nav a::before {
        display: none;
    }
    
    /* Hero */
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero-text p {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .badge {
        display: inline-block;
    }
    
    .hero-grid {
        justify-content: center;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .section-sub {
        font-size: 0.9rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card {
        padding: 24px 20px;
        text-align: center;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    /* Price Card */
    .price-card {
        padding: 24px 20px;
    }
    
    .price-card .price {
        font-size: 2.5rem;
    }
    
    .price-card ul li {
        font-size: 0.85rem;
    }
    
    /* Bagan Organisasi */
    .org-level-2 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .org-division {
        width: 100%;
        max-width: 280px;
    }
    
    .org-line::before,
    .org-line::after {
        display: none;
    }
    
    .org-line {
        height: 30px;
        margin-bottom: 20px;
    }
    
    .managing-partner {
        min-width: auto;
        width: 280px;
    }
    
    .photo-frame {
        width: 80px;
        height: 80px;
    }
    
    .small-photo {
        width: 60px;
        height: 60px;
    }
    
    .team-name {
        font-size: 0.9rem;
    }
    
    /* Profile Section */
    #profile > div > div {
        flex-direction: column;
    }
    
    /* Contact Grid */
    .contact-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .contact-item {
        width: 100%;
        max-width: 280px;
        padding: 15px;
    }
    
    .contact-item h3 {
        font-size: 1rem;
    }
    
    .contact-link {
        font-size: 0.75rem;
        word-break: break-all;
    }
    
    /* Legal & Research Cards */
    .legal-card, .research-card {
        padding: 20px;
    }
    
    .legal-card h3, .research-card h3 {
        font-size: 1.2rem;
    }
    
    /* Stat Badges */
    .stat-highlight {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-badge {
        width: 100%;
        max-width: 250px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Photo Grid */
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    /* Social Icons */
    .social-icons {
        gap: 20px;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
    }
    
    .social-icons a i {
        font-size: 1.5rem;
    }
    
    /* Watermark */
    .legal-watermark i {
        font-size: 100px;
        opacity: 0.06;
    }
    
    /* Buttons */
    .btn-solid, .btn-gold, .btn-wa, .btn-location {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .logo-area img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    nav {
        gap: 8px;
    }
    
    nav a {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .btn-solid, .btn-gold {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .price-card .price {
        font-size: 2rem;
    }
    
    .contact-item {
        max-width: 260px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
    }
    
    .social-icons a i {
        font-size: 1.3rem;
    }
    
    .legal-watermark i {
        font-size: 70px;
        opacity: 0.05;
    }
    
    footer {
        font-size: 0.75rem;
    }
}

/* Desktop Large (min-width: 1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}