/* ================= TYPOGRAPHY SYSTEM (Professional Scale) ================= */ :root { --font-base: 16px; --font-xs: 0.875rem; --font-sm: 0.9375rem; --font-base: 1rem; --font-md: 1.125rem; --font-lg: 1.25rem; --font-xl: 1.5rem; --font-2xl: 1.875rem; --font-3xl: 2.25rem; --font-4xl: 2.75rem; --leading-tight: 1.25; --leading-snug: 1.375; --leading-normal: 1.5; --leading-relaxed: 1.625; --leading-loose: 1.75; --font-normal: 400; --font-medium: 500; --font-semibold: 600; --font-bold: 700; --font-extrabold: 800; --font-black: 900; --radius-xl: 22px; --radius-lg: 18px; --radius-md: 14px; --radius-sm: 10px; --max-width: 1440px; --bg: #0a0a14; --bg-elevated: #0f1020; --bg-soft: #151530; --bg-chip: rgba(6, 182, 212, 0.08); --accent: #06b6d4; --accent-soft: #67e8f9; --accent-strong: #22d3ee; --text: #f7f7f7; --muted: #a0a8c0; --border-soft: rgba(6, 182, 212, 0.30); --border-strong: #06b6d4; } * { box-sizing: border-box; } body { margin: 0; font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: var(--font-base); line-height: var(--leading-normal); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; background: radial-gradient(circle at top, #151530 0%, #0a0a14 52%, #050508 100%); color: var(--text); } h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: var(--font-bold); line-height: var(--leading-tight); } h1 { font-size: var(--font-3xl); } h2 { font-size: var(--font-2xl); } h3 { font-size: var(--font-xl); } h4 { font-size: var(--font-lg); } p { margin: 0; line-height: var(--leading-relaxed); } a { color: var(--accent-soft); text-decoration: none; transition: color .15s ease, opacity .15s ease, text-shadow .15s ease; } a:hover { opacity: .95; text-shadow: 0 0 8px rgba(6, 182, 212, 0.55); } img { max-width: 100%; display: block; } /* ================= SKIP TO CONTENT (Accessibility) ================= */ .skip-to-content { position: absolute; left: -9999px; top: 0; z-index: 9999; padding: 12px 24px; background: var(--accent); color: #0a0a12; font-weight: var(--font-bold); font-size: var(--font-sm); border-radius: 0 0 8px 8px; text-decoration: none; } .skip-to-content:focus { left: 50%; transform: translateX(-50%); } /* ================= PAGE WRAPPER ================= */ .page-wrapper { min-height: 100vh; max-width: var(--max-width); width: 95%; margin: 0 auto; padding: 0; } @media (min-width:1600px) { .page-wrapper { max-width: 1560px; width: 92%; } } @media (min-width:1920px) { .page-wrapper { max-width: 1760px; width: 90%; } } /* ================= HEADER ================= */ header { margin-bottom: 20px; } .header-shell { border-radius: var(--radius-xl); padding: 0; border: 1px solid rgba(6, 182, 212, 0.20); background: linear-gradient(135deg, #0d1033 0%, #1a1a3e 30%, #12122a 70%, #0a0a1a 100%); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05); position: relative; overflow: hidden; } .header-shell::before { content: ""; position: absolute; inset: -40%; background: radial-gradient(ellipse at top left, rgba(6, 182, 212, 0.12) 0%, transparent 50%), radial-gradient(ellipse at bottom right, rgba(6, 182, 212, 0.08) 0%, transparent 50%); opacity: .6; mix-blend-mode: screen; pointer-events: none; } .header-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 16px 10px; backdrop-filter: blur(10px); } .brand-left { display: flex; align-items: center; gap: 14px; min-width: 0; } .brand-logo img { height: 46px; width: auto; filter: drop-shadow(0 12px 26px rgba(10, 10, 20, 0.98)) drop-shadow(0 0 12px rgba(6, 182, 212, 0.60)) drop-shadow(0 0 25px rgba(34, 211, 238, 0.40)); } .header-cta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; } .header-cta a { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 8px 20px; font-size: var(--font-sm); font-weight: var(--font-semibold); white-space: nowrap; position: relative; overflow: hidden; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, filter .2s ease; } .header-cta .cta-login { background: linear-gradient(180deg, #67e8f9 0%, #22d3ee 30%, #06b6d4 70%, #0891b2 100%); color: #0a0a12; border: 1px solid rgba(103, 232, 249, 0.5); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(6, 182, 212, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3); } .header-cta .cta-register { background: linear-gradient(180deg, #f472b6 0%, #ec4899 30%, #db2777 70%, #be185d 100%); color: #ffffff; border: 1px solid rgba(244, 114, 182, 0.5); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(236, 72, 153, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3); } .header-cta .cta-login:hover, .header-cta .cta-login:active { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 0 6px 20px rgba(6, 182, 212, 0.5), 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(103, 232, 249, 0.3); } .header-cta .cta-register:hover, .header-cta .cta-register:active { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 0 6px 20px rgba(236, 72, 153, 0.5), 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(244, 114, 182, 0.3); } @media (min-width: 1024px) { .header-cta .cta-login span, .header-cta .cta-register span { display: none; } .header-cta .cta-login::after { content: "Login BURSASLOT"; } .header-cta .cta-register::after { content: "Daftar BURSASLOT"; } } /* ================= NAVIGATION ================= */ .header-nav { padding: 8px 10px; background: linear-gradient(to right, rgba(6, 182, 212, 0.08), rgba(10, 10, 26, 0.95)); } .header-nav-inner { display: flex; flex-direction: column; gap: 6px; } .nav-menu { display: flex; flex-wrap: wrap; gap: 7px; } .nav-pill { padding: 7px 16px; border-radius: 999px; border: 1px solid transparent; font-size: var(--font-sm); font-weight: var(--font-medium); background: rgba(6, 182, 212, 0.08); color: var(--text); transition: all .2s ease; } .nav-pill:hover { background: rgba(6, 182, 212, 0.18); border-color: rgba(6, 182, 212, 0.4); color: var(--accent-soft); transform: translateY(-1px); } .nav-pill.active { background: rgba(6, 182, 212, 0.15); border-color: rgba(6, 182, 212, 0.5); color: var(--accent-soft); } .nav-crumb { font-size: var(--font-xs); padding: 1px 2px 0; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); } /* ================= HERO SECTION ================= */ main { margin-top: 12px; } .hero-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1.05fr); gap: 20px; margin-bottom: 24px; } .hero-left, .hero-right { border-radius: var(--radius-xl); border: 1px solid var(--border-soft); padding: 32px 28px 36px; position: relative; overflow: hidden; background: linear-gradient(135deg, #151535 0%, #0c0c1a 46%, #0a0a14 100%); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 22px 60px rgba(0, 0, 0, 0.6); } .hero-left::before, .hero-right::before { content: ""; position: absolute; inset: -45%; background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.15) 0%, transparent 55%); opacity: .8; mix-blend-mode: screen; pointer-events: none; } .hero-left::after, .hero-right::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.65) 65%, transparent 100%); pointer-events: none; } .hero-left > *, .hero-right > * { position: relative; z-index: 1; } .hero-badge-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; } .hero-pill-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(6, 182, 212, 0.06) 100%); border: 1px solid rgba(6, 182, 212, 0.35); font-size: var(--font-sm); font-weight: var(--font-semibold); color: var(--accent-soft); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08); } .hero-pill-badge .emoji { font-size: 1.1em; filter: drop-shadow(0 2px 8px rgba(6, 182, 212, 0.4)); } .hero-title { font-size: var(--font-4xl); font-weight: var(--font-black); line-height: var(--leading-tight); margin: 0 0 18px; color: #ffffff; text-shadow: 0 2px 12px rgba(6, 182, 212, 0.3), 0 4px 24px rgba(0, 0, 0, 0.5); letter-spacing: -0.02em; } .brand-crimson { background: linear-gradient(135deg, #67e8f9 0%, #06b6d4 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.4)); } .hero-subtitle { font-size: var(--font-md); line-height: var(--leading-relaxed); color: rgba(247, 247, 247, 0.92); margin: 0 0 16px; font-weight: var(--font-normal); } .hero-subtitle strong { color: var(--accent-soft); font-weight: var(--font-semibold); } /* ================= HERO CTA ================= */ .hero-cta-row { margin: 24px 0 20px; display: flex; gap: 12px; flex-wrap: wrap; } .hero-cta-main { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 999px; background: linear-gradient(135deg, #67e8f9 0%, #22d3ee 50%, #06b6d4 100%); color: #0a0a12; font-size: var(--font-base); font-weight: var(--font-bold); border: 1px solid rgba(103, 232, 249, 0.5); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 0 6px 20px rgba(6, 182, 212, 0.5), 0 12px 40px rgba(0, 0, 0, 0.4); transition: all .2s ease; text-transform: uppercase; letter-spacing: 0.05em; } .hero-cta-main:hover { transform: translateY(-3px); filter: brightness(1.15); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 0 8px 25px rgba(6, 182, 212, 0.6), 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(103, 232, 249, 0.4); } .hero-trust-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: var(--font-sm); color: var(--muted); padding-top: 20px; border-top: 1px solid rgba(6, 182, 212, 0.15); } .hero-trust-row strong { color: var(--accent-soft); font-weight: var(--font-semibold); } /* ================= HERO LIST ================= */ .hero-list { margin: 20px 0 24px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; } .hero-list li { position: relative; padding-left: 32px; font-size: var(--font-base); line-height: var(--leading-relaxed); color: rgba(247, 247, 247, 0.88); } .hero-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #06b6d4, #0891b2); border-radius: 6px; color: #fff; font-size: var(--font-xs); font-weight: var(--font-bold); box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); } .hero-list li strong { color: var(--accent-soft); font-weight: var(--font-semibold); } .hero-note { margin-top: 16px; padding: 14px 18px; background: rgba(6, 182, 212, 0.08); border-left: 3px solid var(--accent); border-radius: 8px; font-size: var(--font-sm); line-height: var(--leading-relaxed); color: rgba(247, 247, 247, 0.85); } .hero-note strong { color: var(--accent-soft); font-weight: var(--font-semibold); } /* ================= HERO RIGHT PANEL ================= */ .hero-panel-header { margin-bottom: 20px; } .hero-panel-title { font-size: var(--font-xl); font-weight: var(--font-bold); color: #ffffff; margin-bottom: 6px; text-shadow: 0 2px 8px rgba(6, 182, 212, 0.2); } .hero-panel-tag { font-size: var(--font-sm); color: var(--accent-soft); font-weight: var(--font-medium); } .hero-tabs { display: flex; gap: 8px; margin-bottom: 20px; overflow-x: auto; } .hero-tab { padding: 8px 16px; border-radius: 999px; font-size: var(--font-sm); font-weight: var(--font-semibold); color: var(--muted); background: rgba(6, 182, 212, 0.06); border: 1px solid transparent; cursor: pointer; transition: all .2s ease; white-space: nowrap; } .hero-tab.active { background: rgba(6, 182, 212, 0.15); border-color: rgba(6, 182, 212, 0.4); color: var(--accent-soft); box-shadow: 0 2px 8px rgba(6, 182, 212, 0.2); } .hero-tab:hover:not(.active) { background: rgba(6, 182, 212, 0.10); color: var(--text); } .hero-info-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; font-size: var(--font-sm); } .hero-info-table th { text-align: left; padding: 10px 14px; font-weight: var(--font-semibold); color: var(--muted); background: rgba(6, 182, 212, 0.05); border-radius: 8px 0 0 8px; width: 35%; vertical-align: top; } .hero-info-table td { padding: 10px 14px; color: var(--text); background: rgba(6, 182, 212, 0.05); border-radius: 0 8px 8px 0; line-height: var(--leading-relaxed); } .hero-info-table td a { color: var(--accent-soft); font-weight: var(--font-semibold); } .chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: rgba(6, 182, 212, 0.10); border: 1px solid rgba(6, 182, 212, 0.3); font-size: var(--font-sm); font-weight: var(--font-semibold); color: var(--text); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); } .chip-emoji { font-size: 1.1em; } .chip.rtp { background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(6, 182, 212, 0.06)); } .tab-content { display: none; } .tab-content.active { display: block; animation: fadeIn 0.3s ease; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } /* ================= KEUNGGULAN ================= */ .keunggulan-list { display: flex; flex-direction: column; gap: 12px; } .keunggulan-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px; background: rgba(6, 182, 212, 0.05); border-left: 3px solid var(--accent); border-radius: 8px; transition: all 0.2s ease; } .keunggulan-item:hover { background: rgba(6, 182, 212, 0.10); transform: translateX(4px); } .keunggulan-icon { font-size: var(--font-xl); flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1)); border-radius: 8px; } .keunggulan-content { flex: 1; } .keunggulan-content h4 { margin: 0 0 4px; font-size: var(--font-base); font-weight: var(--font-semibold); color: var(--accent-soft); } .keunggulan-content p { margin: 0; font-size: var(--font-sm); line-height: var(--leading-normal); color: var(--muted); } /* ================= AKSES CEPAT ================= */ .akses-cepat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; } .akses-card { display: flex; align-items: center; gap: 12px; padding: 14px; background: rgba(6, 182, 212, 0.05); border: 1px solid rgba(6, 182, 212, 0.2); border-radius: 10px; transition: all 0.2s ease; text-decoration: none; } .akses-card:hover { background: rgba(6, 182, 212, 0.12); border-color: rgba(6, 182, 212, 0.5); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2); } .akses-card.akses-primary { background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.08)); border-color: rgba(6, 182, 212, 0.4); } .akses-card.akses-primary:hover { background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(6, 182, 212, 0.15)); border-color: rgba(6, 182, 212, 0.6); } .akses-icon { font-size: var(--font-xl); flex-shrink: 0; } .akses-text { display: flex; flex-direction: column; gap: 2px; } .akses-text strong { font-size: var(--font-sm); font-weight: var(--font-semibold); color: var(--text); } .akses-text span { font-size: var(--font-xs); color: var(--muted); } /* ================= SECTIONS ================= */ .section, .section-articles, .section-faq { border-radius: var(--radius-xl); border: 1px solid var(--border-soft); padding: 28px 24px 28px; position: relative; overflow: hidden; margin-bottom: 24px; background: linear-gradient(135deg, #151535 0%, #0c0c1a 46%, #0a0a14 100%); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 22px 60px rgba(0, 0, 0, 0.6); } .section::before, .section-articles::before, .section-faq::before { content: ""; position: absolute; inset: -45%; background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.18), transparent 58%); opacity: .52; pointer-events: none; mix-blend-mode: screen; } .section > *, .section-articles > *, .section-faq > * { position: relative; z-index: 1; } .section-title { font-size: var(--font-lg); font-weight: var(--font-bold); margin-bottom: 8px; color: var(--accent-soft); } .section-badge { font-size: var(--font-xs); color: var(--muted); } .highlight-box { margin-top: 12px; border-radius: var(--radius-md); padding: 14px 18px; border: 1px solid rgba(6, 182, 212, 0.50); font-size: var(--font-sm); background: rgba(6, 182, 212, 0.08); color: var(--accent-soft); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 14px 34px rgba(0, 0, 0, 0.5); } /* ================= SECTION GRID ================= */ .section-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 22px; } .section-column { border-radius: var(--radius-xl); border: 1px solid var(--border-soft); padding: 24px 20px; font-size: var(--font-sm); position: relative; overflow: hidden; background: linear-gradient(135deg, #141430 0%, #0a0a18 48%, #0a0a14 100%); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 20px 54px rgba(0, 0, 0, 0.6); } .section-column::before { content: ""; position: absolute; inset: -40%; background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.15), transparent 60%); opacity: .55; pointer-events: none; mix-blend-mode: screen; } .section-column > * { position: relative; z-index: 1; } .section-subtitle { font-size: var(--font-base); font-weight: var(--font-semibold); margin-bottom: 6px; color: var(--accent-soft); } .badge-soft { display: inline-flex; align-items: center; padding: 3px 8px; border-radius: 999px; font-size: var(--font-xs); border: 1px solid rgba(6, 182, 212, 0.7); margin-bottom: 10px; color: var(--accent-soft); background: var(--bg-chip); } .bullet-list { margin: 0 0 10px 1.1rem; padding: 0; font-size: var(--font-sm); color: var(--muted); } .bullet-list li { margin-bottom: 6px; } /* ================= ARTICLES ================= */ .section-articles-header { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 12px; } .section-articles-header h2 { margin: 0; font-size: var(--font-lg); color: var(--accent-soft); } .section-articles-header a { font-size: var(--font-sm); text-decoration: underline; } .section-articles p { font-size: var(--font-sm); color: var(--muted); } .article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; } .article-card { border-radius: var(--radius-md); padding: 14px; border: 1px solid var(--border-soft); display: flex; flex-direction: column; gap: 6px; background: linear-gradient(135deg, #151535 0%, #0a0a18 55%, #080812 100%); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 16px 40px rgba(0, 0, 0, 0.5); } .article-card h3 { font-size: var(--font-base); margin: 0; color: var(--accent-soft); } .article-card p { margin: 0; font-size: var(--font-sm); color: var(--muted); } .article-card a { margin-top: 6px; font-size: var(--font-sm); text-decoration: underline; } .article-card img { border-radius: 10px; margin-bottom: 8px; } .home-blog-cta { margin-top: 16px; display: flex; justify-content: center; } .btn-outline { border-radius: 999px; padding: 8px 20px; border: 1px solid var(--border-soft); font-size: var(--font-sm); background: rgba(10, 10, 20, 0.9); color: var(--accent-soft); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 12px 34px rgba(0, 0, 0, 0.5); transition: background .15s ease, transform .1s ease, box-shadow .18s ease, border-color .15s ease; } .btn-outline:hover { background: rgba(6, 182, 212, 0.18); border-color: rgba(6, 182, 212, 0.8); box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.6), 0 18px 46px rgba(0, 0, 0, 0.5), 0 0 15px rgba(6, 182, 212, 0.15); transform: translateY(-1px); } /* ================= FAQ ================= */ .faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; } .faq-item { border-radius: var(--radius-md); padding: 16px 18px; border: 1px solid var(--border-soft); background: linear-gradient(135deg, #151535 0%, #0a0a18 55%, #080812 100%); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 16px 40px rgba(0, 0, 0, 0.5); } .faq-item h3 { margin: 0 0 6px; font-size: var(--font-base); color: var(--accent-soft); } .faq-item p { margin: 0; font-size: var(--font-sm); color: var(--muted); } /* ================= START HERE ================= */ .start-here-card { margin-top: 16px; padding: 20px; background: rgba(6, 182, 212, 0.05); border-left: 3px solid var(--accent); border-radius: var(--radius-md); } .start-here-label { display: inline-block; padding: 4px 12px; background: var(--accent); color: #0a0a12; font-size: var(--font-xs); font-weight: var(--font-bold); border-radius: 999px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; } .start-here-card h3 { font-size: var(--font-lg); font-weight: var(--font-bold); color: var(--accent-soft); margin: 0 0 12px; } .start-here-card p { font-size: var(--font-sm); line-height: var(--leading-relaxed); color: var(--muted); margin-bottom: 12px; } .start-here-card ul { margin: 12px 0 12px 1.5rem; padding: 0; font-size: var(--font-sm); } .start-here-card ul li { margin-bottom: 8px; line-height: var(--leading-relaxed); } .start-here-note { margin-top: 12px; padding: 14px; background: rgba(6, 182, 212, 0.08); border-radius: 8px; font-size: var(--font-sm); line-height: var(--leading-relaxed); color: rgba(247, 247, 247, 0.85); } .start-here-footer { margin-top: 20px; padding: 18px; background: rgba(6, 182, 212, 0.10); border: 1px solid rgba(6, 182, 212, 0.3); border-radius: var(--radius-md); font-size: var(--font-sm); line-height: var(--leading-relaxed); color: var(--text); } /* ================= HEALTH SECTION ================= */ .health-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 16px; } .health-card { padding: 18px; background: rgba(6, 182, 212, 0.05); border: 1px solid rgba(6, 182, 212, 0.2); border-radius: var(--radius-md); transition: all 0.2s ease; } .health-card:hover { background: rgba(6, 182, 212, 0.10); border-color: rgba(6, 182, 212, 0.4); transform: translateY(-2px); } .health-card h3 { margin: 0 0 8px; font-size: var(--font-md); font-weight: var(--font-semibold); } .health-card h3 a { color: var(--accent-soft); } .health-card p { margin: 0 0 12px; font-size: var(--font-sm); line-height: var(--leading-relaxed); color: var(--muted); } .health-meta { font-size: var(--font-xs); color: var(--accent); font-weight: var(--font-medium); text-transform: uppercase; letter-spacing: 0.05em; } .health-footer { margin-top: 20px; padding: 18px; background: rgba(6, 182, 212, 0.08); border-left: 3px solid var(--accent); border-radius: 8px; font-size: var(--font-sm); line-height: var(--leading-relaxed); color: rgba(247, 247, 247, 0.85); } /* ================= FOOTER ================= */ footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-soft); font-size: var(--font-sm); } .footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; margin-bottom: 24px; } .footer-brand { font-weight: var(--font-bold); letter-spacing: .16em; text-transform: uppercase; font-size: var(--font-sm); color: var(--accent-soft); text-shadow: 0 0 10px rgba(6, 182, 212, 0.6), 0 0 26px rgba(0, 0, 0, 1); } .footer-tagline { font-size: var(--font-xs); color: var(--muted); } .footer-links { display: flex; flex-wrap: wrap; gap: 6px 12px; border-top: 1px dashed rgba(6, 182, 212, 0.35); border-bottom: 1px dashed rgba(6, 182, 212, 0.35); padding: 12px 0; margin-bottom: 24px; justify-content: center; } .footer-links a { font-size: var(--font-xs); position: relative; color: var(--accent-soft); } .footer-links a::after { content: "•"; margin-left: 10px; color: rgba(6, 182, 212, 0.6); } .footer-links a:last-child::after { content: ""; margin: 0; } .footer-warning { display: flex; align-items: flex-start; gap: 14px; padding: 18px; margin-bottom: 24px; background: rgba(236, 72, 153, 0.08); border: 1px solid rgba(236, 72, 153, 0.3); border-radius: var(--radius-md); font-size: var(--font-sm); line-height: var(--leading-relaxed); color: var(--muted); } .age-pill { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--radius-sm); background: linear-gradient(135deg, #f472b6, #ec4899); color: #ffffff; font-weight: var(--font-bold); font-size: var(--font-base); box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3); } .footer-warning a { color: #f472b6; font-weight: var(--font-semibold); } .footer-bottom { font-size: var(--font-xs); text-align: center; padding: 6px 0 12px; color: var(--muted); } /* ================= FULL WIDTH HEADER ================= */ .full-width-header { position: relative; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; } .full-width-header .header-shell { border-radius: 0; border-left: none; border-right: none; } .full-width-header .header-top { max-width: 100%; width: 100%; padding-left: 24px; padding-right: 24px; margin: 0; } .full-width-header .header-nav { max-width: 100%; width: 100%; padding-left: 24px; padding-right: 24px; margin: 0; border-top: 1px solid rgba(6, 182, 212, 0.20); } @media (min-width:1600px) { .full-width-header .header-top, .full-width-header .header-nav { padding-left: 40px; padding-right: 40px; } } @media (min-width:1920px) { .full-width-header .header-top, .full-width-header .header-nav { padding-left: 60px; padding-right: 60px; } } /* ================= RESPONSIVE ================= */ @media (max-width:900px) { .hero-grid { grid-template-columns: minmax(0, 1fr); } .hero-title { font-size: var(--font-2xl); } } @media (max-width:768px) { :root { --font-4xl: 2rem; --font-3xl: 1.75rem; --font-2xl: 1.5rem; --font-xl: 1.25rem; } .page-wrapper { padding: 0 10px 32px !important; } .header-top { flex-direction: row !important; align-items: center !important; justify-content: space-between !important; gap: 8px; flex-wrap: nowrap; } .brand-left { flex-direction: row !important; align-items: center !important; gap: 8px; } .brand-logo img { height: 32px; } .header-cta { flex-direction: row !important; flex-wrap: nowrap; gap: 6px; } .header-cta a { width: auto; flex: 0 0 auto; padding: 6px 14px; font-size: var(--font-xs); } .nav-menu { display: flex; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 6px; padding-bottom: 4px; scrollbar-width: none; } .nav-menu::-webkit-scrollbar { display: none; } .nav-pill { padding: 6px 14px; font-size: var(--font-xs); white-space: nowrap; } .hero-left, .hero-right { padding: 20px 16px 22px; } .hero-title { font-size: var(--font-2xl); line-height: var(--leading-snug); } .hero-cta-row { flex-direction: column; align-items: flex-start; } .hero-cta-main { width: 100%; justify-content: center; } .section-grid-2 { grid-template-columns: minmax(0, 1fr); } .article-grid { grid-template-columns: minmax(0, 1fr); } .akses-cepat-grid { grid-template-columns: 1fr; } .section, .section-articles, .section-faq { padding: 22px 18px; } .section-column { padding: 20px 16px; } .full-width-header .header-top, .full-width-header .header-nav { padding-left: 12px; padding-right: 12px; } } @media (max-width:480px) { :root { --font-4xl: 1.75rem; --font-3xl: 1.5rem; --font-2xl: 1.25rem; } .hero-title { font-size: var(--font-2xl); line-height: var(--leading-snug); } .hero-left, .hero-right { padding: 16px 14px 18px; } .section, .section-articles, .section-faq { padding: 18px 14px; } } /* ================= E-E-A-T: EDITORIAL & TRUST ================= */ .page-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; /* ← TAMBAHKAN INI */ gap: 8px 20px; padding: 12px 0; margin-bottom: 24px; border-bottom: 1px solid rgba(6, 182, 212, 0.15); font-size: var(--font-xs); color: var(--muted); } .page-meta time { color: var(--accent-soft); font-weight: var(--font-medium); } .page-meta .meta-divider { color: rgba(6, 182, 212, 0.4); } .trust-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; /* ← Ini yang membuat center */ gap: 20px; padding: 16px 20px; margin-bottom: 24px; background: rgba(6, 182, 212, 0.04); border: 1px solid rgba(6, 182, 212, 0.15); border-radius: var(--radius-lg); font-size: var(--font-sm); } .trust-item { display: flex; align-items: center; gap: 8px; color: var(--muted); } .trust-item strong { color: var(--accent-soft); } .editorial-box { margin-top: 20px; padding: 18px 20px; background: rgba(6, 182, 212, 0.04); border: 1px solid rgba(6, 182, 212, 0.18); border-radius: var(--radius-md); font-size: var(--font-sm); line-height: var(--leading-relaxed); color: var(--muted); margin-bottom: 24px; } .editorial-box strong { color: var(--accent-soft); } .footer-contact-info { text-align: center; padding: 12px 0; margin-bottom: 12px; font-size: var(--font-xs); color: var(--muted); line-height: var(--leading-relaxed); } .footer-contact-info a { color: var(--accent-soft); } @media (max-width:768px) { .trust-strip { gap: 12px; padding: 14px 16px; font-size: var(--font-xs); } .page-meta { font-size: 0.75rem; } }