:root {
    --primary: #0071e3; /* Warna Biru Apple */
    --bg-light: #f5f5f7;
    --text-dark: #1d1d1f;
    --text-gray: #86868b;
    --glass: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
}

/* --- Navigation (Glassmorphism) --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    height: 60px;
    background: var(--glass);
    backdrop-filter: blur(20px); /* Efek Blur iOS */
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 400;
    transition: opacity 0.3s;
}

nav ul li a:hover {
    opacity: 0.6;
}

/* --- Hero Section (Minimalist) --- */
.hero {
    padding: 0px 10% 80px;
    text-align: center;
    background: #fff;
}

.hero h1 {
    font-size: 3.5rem; /* Besar tapi tipis/elegan */
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.btn-main {
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 980px; /* Rounded pill khas Apple */
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-main:hover {
    background: #0077ed;
    transform: scale(1.02);
}

/* --- Grid & Cards (Modern Card) --- */
.section { padding: 80px 10%; }
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-body {
    padding: 24px;
}

.badge {
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
    letter-spacing: 1px;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* --- Form Minimalis --- */
.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    max-width: 500px;
    margin: 50px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-size: 1rem;
    background: #fbfbfd;
}

input:focus {
    border-color: var(--primary);
    outline: none;
}

/* --- Footer --- */
footer {
    padding: 80px 10% 40px;
    background: #fff;
    border-top: 1px solid #d2d2d7;
    margin-top: 50px;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-top: 40px;
    text-align: center;
}
/* --- EDITORIAL DETAIL PAGE --- */
.editorial-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #fff;
}

.breadcrumb-nav {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.breadcrumb-nav a { color: var(--primary); text-decoration: none; }

.post-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
}

.post-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Meta Info Grid */
.post-meta {
    display: flex;
    gap: 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin-bottom: 60px;
}

.meta-item .label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-gray);
}
.meta-item .value {
    font-size: 1rem;
    font-weight: 600;
}

/* Featured Image */
.post-cover {
    margin: 0 -100px 60px; /* Keluar dari container untuk kesan luas */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.post-cover img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

/* Layout Content + Sidebar */
.post-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.post-content h3 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    letter-spacing: -0.5px;
}

.post-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* Sidebar Cards */
.sidebar-card {
    background: #f5f5f7;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    position: sticky;
    top: 100px;
}

.sidebar-card.dark {
    background: #1d1d1f;
    color: #fff;
}

.sidebar-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.btn-sidebar {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.status-indicator .dot {
    height: 10px;
    width: 10px;
    background-color: #34c759; /* Hijau iOS */
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 1000px) {
    .post-cover { margin: 0 0 40px; }
    .post-container { grid-template-columns: 1fr; }
    .post-title { font-size: 2.5rem; }
}

/* === HERO PODCAST STYLE (SDA EDITION) === */
.hero-podcast-style {
    position: relative;
    background-color: #0d1a2f; /* Biru Sangat Gelap (Malam/Dalam) */
    background-image: 
        radial-gradient(at 10% 20%, rgba(0,113,227,0.15) 0px, transparent 50%), /* Cahaya Biru Apple di kiri */
        radial-gradient(at 90% 80%, rgba(52,199,89,0.05) 0px, transparent 50%); /* Sedikit cahaya hijau di kanan */
    color: #fff;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr; /* Kiri sedikit lebih lebar */
    padding: 100px 10% 120px; /* Padding luas */
    align-items: center;
    gap: 50px;
    flex-grow: 1;
}

/* Kolom Teks (Kiri) */
.hero-left-text {
    max-width: 650px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00aaff; /* Biru Muda Terang */
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: 3.5rem; /* Besar & Berwibawa */
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

/* Highlight (Gaya Warna di Gambar Contoh) */
.hero-title span.highlight {
    background: linear-gradient(120deg, #0071e3 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 45px;
    font-weight: 300;
}

/* Tombol (Gaya iOS) */
.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary-ios {
    background: #0071e3;
    color: #fff;
    padding: 14px 30px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
}
.btn-primary-ios:hover { background: #0066cd; }

.btn-secondary-ios {
    background: rgba(255,255,255,0.08); /* Semi Transparan */
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 14px 30px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}
.btn-secondary-ios:hover { background: rgba(255,255,255,0.15); }
.btn-secondary-ios .arrow { font-size: 1.2rem; line-height: 0; }

/* Kolom Gambar (Kanan) */
.hero-right-image {
    height: 100%;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* === FOOTER HERO (PLATFORMS BAR BARU) === */
.hero-platforms-bar {
    background: #fff; /* Bar Putih di bawah */
    padding: 20px 10%;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.platforms-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

.platforms-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1d1d1f;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-group img {
    height: 35px; /* Tinggi logo seragam */
    width: auto;
    filter: grayscale(1); /* Logo dibuat abu-abu agar minimalis */
    opacity: 0.5;
    transition: all 0.3s;
}

.logo-group img:hover {
    filter: grayscale(0); /* Jadi berwarna saat hover */
    opacity: 1;
}

/* Responsif untuk Mobile */
@media (max-width: 1000px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        padding: 60px 5% 80px;
        text-align: center;
    }
    .hero-title { font-size: 2.5rem; }
    .hero-btns { justify-content: center; }
    .hero-right-image { display: none; } /* Sembunyikan gambar di HP */
    .platforms-content { flex-direction: column; gap: 15px; }
    .logo-group { gap: 15px; flex-wrap: wrap; justify-content: center; }
}
/* === SECTION ABOUT MODERN === */
.about-modern {
    padding: 100px 10%;
    background: #fff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Gambar kiri, Teks kanan */
    gap: 80px;
    align-items: center;
}

/* Gambar dengan sudut membulat ekstrim khas iOS */
.about-image-wrapper .img-profile {
    width: 100%;
    height: auto;
    border-radius: 60px; /* Sudut sangat bulat sesuai gambar */
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.about-desc {
    font-size: 1.1rem;
    color: #86868b;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Gaya Fitur dengan Bar Vertikal di Samping */
.feature-grid-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon-bar {
    width: 4px;
    background: #0071e3; /* Warna biru */
    border-radius: 10px;
    flex-shrink: 0;
}

.feature-icon-bar.alt {
    background: #5e5ce6; /* Warna ungu/biru lain */
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #86868b;
    line-height: 1.4;
}

/* Footer Section About (Avatar & Button) */
.about-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f2f2f2;
    padding-top: 30px;
}

.profile-mini {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-info strong {
    display: block;
    font-size: 0.95rem;
    color: #1d1d1f;
}

.avatar-info span {
    font-size: 0.85rem;
    color: #86868b;
}

/* Responsif */
@media (max-width: 900px) {
    .about-container { grid-template-columns: 1fr; gap: 40px; }
    .about-title { font-size: 2rem; }
    .feature-grid-about { grid-template-columns: 1fr; }
    .about-footer { flex-direction: column; align-items: flex-start; gap: 20px; }
}