/* ============================================================
   LAW.or.id — Komunitas Profesi Hukum Indonesia
   Lawyer · Jaksa · Hakim · Polisi · Tenaga Hukum
   ============================================================ */

:root {
    --navy: #0f1c2e;
    --navy-2: #16263c;
    --gold: #c9a227;
    --gold-light: #e6c55c;
    --gold-dark: #a8841d;
    --cream: #f7f3e9;
    --white: #ffffff;
    --ink: #1d2a3b;
    --muted: #5b6b7e;
    --line: #e6e0d2;
    --shadow-sm: 0 2px 10px rgba(15, 28, 46, 0.08);
    --shadow-md: 0 10px 30px rgba(15, 28, 46, 0.12);
    --shadow-lg: 0 24px 60px rgba(15, 28, 46, 0.18);
    --radius: 14px;
    --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-sans: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--gold);
}

ul {
    list-style: none;
}

.container {
    width: min(1160px, 92%);
    margin-inline: auto;
}

section {
    padding: 96px 0;
}

.section-head {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.section-tag::before,
.section-tag::after {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.22;
    margin-top: 14px;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-sub {
    margin-top: 14px;
    color: var(--muted);
    font-size: 16.5px;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(15, 28, 46, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 28, 46, 0.98);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
}

.brand-text {
    line-height: 1.1;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
}

.brand-sub {
    display: block;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-cta {
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy) !important;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(201, 162, 39, 0.45);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    color: #fff;
    background-color: var(--navy);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg .grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
}

.hero-bg .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
}

.hero-bg .glow.g1 {
    width: 460px;
    height: 460px;
    background: var(--gold);
    top: -120px;
    right: -80px;
}

.hero-bg .glow.g2 {
    width: 380px;
    height: 380px;
    background: #21375a;
    bottom: -140px;
    left: -100px;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(201, 162, 39, 0.45);
    border-radius: 999px;
    padding: 8px 18px;
    margin-bottom: 26px;
}

.hero-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.25);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(201, 162, 39, 0.08); }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(34px, 5.2vw, 58px);
    font-weight: 800;
    line-height: 1.15;
}

.hero-title .gold {
    color: var(--gold);
    font-style: italic;
}

.hero-desc {
    margin-top: 22px;
    font-size: 17.5px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: 0;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy);
    box-shadow: 0 10px 26px rgba(201, 162, 39, 0.45);
}

.btn-gold:hover {
    box-shadow: 0 14px 34px rgba(201, 162, 39, 0.6);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

.hero-stats .stat h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
}

.hero-stats .stat p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 6px;
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
}

.scale-card {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        linear-gradient(160deg, #1c3050, #0d1826);
    border: 1px solid rgba(201, 162, 39, 0.4);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-lg), inset 0 0 80px rgba(201, 162, 39, 0.07);
    position: relative;
}

.scale-card svg {
    width: 210px;
    height: auto;
}

.float-chip {
    position: absolute;
    background: rgba(15, 28, 46, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    animation: floaty 5s ease-in-out infinite;
}

.float-chip .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
}

.float-chip.c1 { top: 30px; left: -30px; animation-delay: 0.2s; }
.float-chip.c2 { bottom: 55px; right: -40px; animation-delay: 1.2s; }
.float-chip.c3 { top: 55%; left: -70px; animation-delay: 2.1s; }

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============ PILAR / PROFESI ============ */
.profesi {
    background: var(--white);
}

.pilar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.pilar-card {
    text-align: center;
    padding: 30px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.pilar-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.pilar-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #eef3f9, #dfe8f3);
    color: var(--navy);
}

.pilar-icon svg {
    width: 34px;
    height: 34px;
}

.pilar-card h3 {
    font-family: var(--font-serif);
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 8px;
}

.pilar-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
}

/* ============ TENTANG ============ */
.tentang {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.tentang .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.tentang-copy .section-title {
    margin-top: 14px;
}

.tentang-copy p {
    margin-top: 18px;
    color: var(--muted);
}

.tentang-copy p strong {
    color: var(--navy);
}

.tentang-list {
    margin-top: 26px;
    display: grid;
    gap: 14px;
}

.tentang-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--ink);
    font-size: 15.5px;
}

.tentang-list .check {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
    margin-top: 2px;
}

.tentang-visual {
    position: relative;
}

.tentang-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid #fff;
    aspect-ratio: 4 / 3.4;
    display: grid;
    place-items: center;
    background: linear-gradient(150deg, #1c3050, #0d1826);
}

.tentang-photo svg {
    width: 96%;
    height: 96%;
}

.tenaga-badge {
    position: absolute;
    right: -18px;
    bottom: -20px;
    background: var(--navy);
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.4);
}

.tenaga-badge strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 30px;
    color: var(--gold);
    line-height: 1;
}

.tenaga-badge span {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

/* ============ KEGIATAN ============ */
.kegiatan {
    background: var(--white);
}

.kegiatan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kegiatan-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.kegiatan-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.kegiatan-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 39, 0.45);
}

.kegiatan-card:hover::after {
    transform: scaleX(1);
}

.kegiatan-num {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 800;
    color: rgba(201, 162, 39, 0.3);
    line-height: 1;
    position: absolute;
    top: 18px;
    right: 22px;
}

.kegiatan-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(160deg, #fdf6e0, #f6e7b8);
    color: var(--gold-dark);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.kegiatan-icon svg {
    width: 28px;
    height: 28px;
}

.kegiatan-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
}

.kegiatan-card p {
    font-size: 14.5px;
    color: var(--muted);
}

/* ============ MANFAAT ============ */
.manfaat {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.manfaat::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
}

.manfaat .container {
    position: relative;
    z-index: 2;
}

.manfaat .section-tag {
    color: var(--gold-light);
}

.manfaat .section-tag::before,
.manfaat .section-tag::after {
    background: var(--gold);
}

.manfaat .section-title {
    color: #fff;
}

.manfaat .section-sub {
    color: rgba(255, 255, 255, 0.7);
}

.manfaat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.manfaat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 26px 22px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.manfaat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(201, 162, 39, 0.5);
}

.manfaat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.manfaat-icon svg {
    width: 25px;
    height: 25px;
}

.manfaat-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
}

.manfaat-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

/* ============ GABUNG / CTA ============ */
.gabung {
    background: var(--white);
    padding: 90px 0;
}

.gabung-card {
    background: linear-gradient(150deg, var(--navy-2), var(--navy));
    border-radius: 24px;
    padding: 64px 48px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.gabung-card::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.35), transparent 70%);
}

.gabung-copy {
    position: relative;
    z-index: 2;
}

.gabung-copy h2 {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3.4vw, 36px);
    line-height: 1.25;
}

.gabung-copy h2 span {
    color: var(--gold);
    font-style: italic;
}

.gabung-copy p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.gabung-form {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}

.gabung-form input,
.gabung-form select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.gabung-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.gabung-form input:focus,
.gabung-form select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
}

.gabung-form select option {
    color: var(--ink);
    background: #fff;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-note {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.form-success {
    display: none;
    text-align: center;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 12px;
    padding: 18px;
    color: var(--gold-light);
    font-size: 14.5px;
}

/* ============ VISI MISI ============ */
.visi {
    background: var(--cream);
}

.visi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.visi-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px 34px;
    box-shadow: var(--shadow-sm);
}

.visi-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.visi-card h3 .badge {
    font-size: 12px;
    font-family: var(--font-sans);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: #fdf6e0;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 999px;
    padding: 4px 12px;
}

.visi-card p {
    color: var(--muted);
}

.visi-card ol {
    counter-reset: misi;
    display: grid;
    gap: 12px;
    margin-top: 6px;
}

.visi-card ol li {
    counter-increment: misi;
    color: var(--muted);
    font-size: 15px;
    padding-left: 40px;
    position: relative;
}

.visi-card ol li::before {
    content: counter(misi);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
    display: grid;
    place-items: center;
}

/* ============ KOMUNITAS LAIN ============ */
.komunitas-lain {
    background: var(--white);
}

.komunitas-lain .section-head {
    margin-bottom: 40px;
}

.komunitas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.komunitas-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.komunitas-chip:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.komunitas-chip .chip-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #eef3f9, #dfe8f3);
    color: var(--navy);
}

.komunitas-chip .chip-icon svg {
    width: 15px;
    height: 15px;
}

/* ============ FOOTER ============ */
.footer {
    background: #0a1420;
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 44px;
}

.footer .brand-name {
    color: #fff;
}

.footer-about p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer ul {
    display: grid;
    gap: 10px;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer ul a:hover {
    color: var(--gold-light);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact .ico {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
    color: var(--gold-light);
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .pilar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .manfaat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-actions,
    .hero-stats {
        justify-content: center;
    }
    .hero-desc {
        margin-inline: auto;
    }
    .tentang .container {
        grid-template-columns: 1fr;
    }
    .tenaga-badge {
        right: 20px;
    }
    .gabung-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 68px 0;
    }
    .nav-links {
        position: fixed;
        inset: 76px 0 auto 0;
        flex-direction: column;
        gap: 0;
        background: rgba(15, 28, 46, 0.98);
        padding: 12px 24px 24px;
        border-bottom: 1px solid rgba(201, 162, 39, 0.25);
        transform: translateY(-110%);
        transition: transform 0.35s ease;
    }
    .nav-links.open {
        transform: translateY(0);
    }
    .nav-links a {
        padding: 14px 8px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
    .nav-links .nav-cta {
        margin-top: 16px;
        text-align: center;
        border-bottom: 0;
    }
    .nav-toggle {
        display: flex;
    }
    .hero {
        min-height: auto;
        padding-top: 150px;
    }
    .scale-card {
        width: 260px;
        height: 260px;
    }
    .scale-card svg {
        width: 160px;
    }
    .float-chip.c2 { right: 0; }
    .float-chip.c3 { left: 0; }
    .pilar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .kegiatan-grid {
        grid-template-columns: 1fr 1fr;
    }
    .visi-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .pilar-grid,
    .kegiatan-grid,
    .manfaat-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        gap: 24px;
    }
    .float-chip {
        display: none;
    }
}