:root {
    --gold: #C9A84C;
    --gold-lt: #E2C173;
    --gold-dk: #9B7A2C;
    --gold-fade: rgba(201, 168, 76, .1);
    --gold-fade2: rgba(201, 168, 76, .04);
    --ink: #0A0A0A;
    --void: #050505;
    --onyx: #111111;
    --charcoal: #1A1A1A;
    --graphite: #242424;
    --steel: #404040;
    --chrome: #888888;
    --chrome-lt: #AAAAAA;
    --parchment: #F5EED8;
    --cream: #FAF5E9;
    --border-g: rgba(201, 168, 76, .18);
    --border-dim: rgba(255, 255, 255, .06);
    --green: #25D366;
    --green-dk: #128C7E;
    --font-h: 'Crimson Pro', Georgia, serif;
    --font-b: 'Rajdhani', 'Trebuchet MS', sans-serif;
    --r: 2px;
    --r-md: 4px;
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-b);
    background: var(--onyx);
    color: var(--parchment);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
}

/* parchment texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.55' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* gold rule left */
body::after {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold-dk) 20%, var(--gold) 50%, var(--gold-dk) 80%, transparent);
    z-index: 1000;
    pointer-events: none;
}

/* ═══════════════════════════
NAVBAR
═══════════════════════════ */
.nav-law {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    transition: var(--transition);
}

.nav-law.scrolled {
    background: rgba(5, 5, 5, .97);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-g);
    box-shadow: 0 4px 40px rgba(0, 0, 0, .6);
}

.nav-inner-law {
    display: flex;
    align-items: center;
    height: 72px;
}

.nav-logo-law {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--parchment);
    letter-spacing: .04em;
    margin-right: auto;
    line-height: 1.2;
}

.nav-logo-law em {
    font-style: italic;
    color: var(--gold);
}

.nav-logo-law small {
    display: block;
    font-family: var(--font-b);
    font-size: .58rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--chrome);
    margin-top: 2px;
}

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

.nav-a-law {
    font-size: .7rem;
    font-weight: 600;
    color: rgba(245, 238, 216, .5);
    padding: 8px 14px;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: color .2s;
    position: relative;
}

.nav-a-law::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .2s;
}

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

.nav-a-law:hover::after {
    transform: scaleX(1);
}

.nav-a-law.active {
    color: var(--gold);
}

.nav-a-law.active::after {
    transform: scaleX(1);
}

.btn-konsul-law {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, .35);
    padding: 8px 20px;
    transition: var(--transition);
    margin-left: 12px;
}

.btn-konsul-law:hover {
    background: var(--gold);
    color: var(--void);
}

.ham-law {
    display: none;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, .3);
    padding: 6px 9px;
    cursor: pointer;
}

@media(max-width:991px) {

    .nav-links-law,
    .btn-konsul-law {
        display: none;
    }

    .ham-law {
        display: flex;
    }
}

.mob-law {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 899;
    background: rgba(5, 5, 5, .98);
    border-bottom: 1px solid var(--border-g);
    padding: 20px 28px 26px;
    backdrop-filter: blur(20px);
}

.mob-law.open {
    display: block;
}

.mob-law a {
    display: block;
    padding: 11px 0;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(245, 238, 216, .5);
    letter-spacing: .14em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-dim);
    transition: color .2s;
}

.mob-law a:last-child {
    border: none;
}

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

/* ═══════════════════════════
HERO
═══════════════════════════ */
.hero-law {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: var(--void);
}

.hero-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(20%) contrast(1.08) brightness(.9);
}

.hero-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--void) 0%, rgba(5, 5, 5, .65) 42%, rgba(5, 5, 5, .15) 100%);
    z-index: 1;
}

.hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--void) 0%, transparent 28%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(201, 168, 76, .06) 0%, transparent 65%);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: 0;
    left: 30%;
    background: radial-gradient(circle, rgba(201, 168, 76, .04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content-law {
    position: relative;
    z-index: 2;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.8rem;
}

.hero-kicker-line {
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.hero-kicker-text {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-law h1 {
    font-family: var(--font-h);
    font-size: clamp(2.8rem, 6.5vw, 6rem);
    font-weight: 300;
    line-height: 1;
    color: var(--parchment);
    letter-spacing: -.01em;
    margin-bottom: .3rem;
}

.hero-law h1 em {
    font-style: italic;
    color: var(--gold-lt);
}

.hero-law h1 .title-line {
    display: block;
    font-size: .4em;
    font-weight: 300;
    color: var(--chrome);
    letter-spacing: .09em;
    margin-top: .6rem;
    font-style: normal;
    line-height: 1.6;
}

.hero-tagline {
    font-family: var(--font-h);
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(245, 238, 216, .5);
    line-height: 1.8;
    max-width: 460px;
    margin: 1.4rem 0 2.2rem;
}

.cred-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 2.2rem;
}

.cred-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(201, 168, 76, .06);
    border: 1px solid rgba(201, 168, 76, .18);
    color: rgba(245, 238, 216, .65);
    font-size: .65rem;
    font-weight: 600;
    padding: 5px 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.cred-chip:hover {
    border-color: rgba(201, 168, 76, .4);
    color: var(--parchment);
}

.cred-chip i {
    color: var(--gold);
    font-size: .7rem;
}

.btn-wa-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--void);
    border: none;
    padding: 13px 32px;
    font-family: var(--font-b);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 6px 30px rgba(201, 168, 76, .22);
}

.btn-wa-hero:hover {
    background: var(--gold-lt);
    color: var(--void);
    transform: translateY(-2px);
    box-shadow: 0 12px 44px rgba(201, 168, 76, .38);
}

.hero-stats-law {
    display: flex;
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(201, 168, 76, .1);
    padding-top: 2rem;
    flex-wrap: wrap;
}

.hsl {
    padding: 0 32px 0 0;
}

.hsl:first-child {
    padding-left: 0;
}

.hsl+.hsl {
    border-left: 1px solid rgba(201, 168, 76, .1);
    padding-left: 32px;
}

.hsl-n {
    font-family: var(--font-h);
    font-size: 2.4rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
}

.hsl-l {
    font-size: .6rem;
    font-weight: 700;
    color: var(--chrome);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-top: 4px;
}

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-hint span {
    font-size: .58rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(245, 238, 216, .25);
}

.scroll-hint-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, .35), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .35
    }

    50% {
        opacity: 1
    }
}

/* ═══════════════════════════
SECTION SHARED
═══════════════════════════ */
.section-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: .5rem;
}

.sk-line {
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.sk-text {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
}

.sec-heading {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--parchment);
}

.sec-heading em {
    font-style: italic;
    color: var(--gold-lt);
}

.divider-gold {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dk) 30%, var(--gold) 50%, var(--gold-dk) 70%, transparent);
}

/* ═══════════════════════════
SLICK SHARED STYLES
═══════════════════════════ */
.slick-slider {
    position: relative;
}

/* Arrow buttons */
.slick-custom-arrows {
    display: flex;
    gap: 8px;
}

.slick-arr {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, .25);
    background: transparent;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: .9rem;
    flex-shrink: 0;
}

.slick-arr:hover {
    background: var(--gold);
    color: var(--void);
    border-color: var(--gold);
}

/* Dots */
.slick-dots {
    position: static !important;
    bottom: auto !important;
    margin-top: 24px;
}

.slick-dots li {
    margin: 0 3px;
}

.slick-dots li button:before {
    content: '' !important;
    width: 20px !important;
    height: 2px !important;
    background: rgba(201, 168, 76, .2) !important;
    opacity: 1 !important;
    top: 50% !important;
    left: 0 !important;
    transform: translateY(-50%);
    transition: var(--transition);
}

.slick-dots li.slick-active button:before {
    background: var(--gold) !important;
}

.slick-dots li button {
    width: 20px !important;
    height: 20px !important;
    padding: 0 !important;
}

/* slide padding */
.slick-slide {
    padding: 0 8px;
}

.slick-list {
    margin: 0 -8px;
    overflow: hidden;
}

/* ═══════════════════════════
PROFIL
═══════════════════════════ */
.profile-sec {
    padding: 110px 0;
    background: var(--onyx);
    position: relative;
}

.profile-photo-wrap {
    position: relative;
}

.profile-photo {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: contrast(1.06);
    transition: filter .5s;
}

.profile-photo-wrap:hover .profile-photo img {
    filter: contrast(1.1) brightness(1.03);
}

.profile-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(201, 168, 76, .15);
}

.profile-frame {
    position: absolute;
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    border: 1px solid rgba(201, 168, 76, .1);
    pointer-events: none;
}

.profile-gold-tl {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.profile-gold-br {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 44px;
    height: 44px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.profile-credential {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--border-dim);
    padding: 16px 18px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.profile-credential:hover {
    border-color: var(--border-g);
    background: var(--gold-fade2);
}

.pc-ico {
    font-size: 1.3rem;
}

.pc-title {
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--chrome);
    margin-bottom: 2px;
}

.pc-val {
    font-family: var(--font-h);
    font-size: 1rem;
    color: var(--parchment);
    font-style: italic;
}

.bio-text {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(245, 238, 216, .5);
    line-height: 1.8;
    border-left: 2px solid rgba(201, 168, 76, .28);
    padding-left: 18px;
    margin: 1.4rem 0;
}

.bio-body {
    font-size: .88rem;
    color: var(--chrome);
    line-height: 1.9;
    font-weight: 400;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 1.6rem;
}

.exp-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border: 1px solid var(--border-dim);
    background: rgba(201, 168, 76, .02);
    font-size: .75rem;
    font-weight: 600;
    color: rgba(245, 238, 216, .65);
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: var(--transition);
}

.exp-item:hover {
    border-color: rgba(201, 168, 76, .28);
    color: var(--gold);
    background: var(--gold-fade2);
}

.exp-item::before {
    content: '◆';
    color: var(--gold);
    font-size: .4rem;
    flex-shrink: 0;
}

/* ═══════════════════════════
PORTFOLIO SECTION — SLICK
═══════════════════════════ */
.porto-law {
    padding: 110px 0;
    background: var(--void);
    position: relative;
}

.case-card {
    border: 1px solid var(--border-dim);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    background: transparent;
    height: 100%;
    min-height: 280px;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(to right, rgba(201, 168, 76, .07), transparent);
    transition: width .4s;
}

.case-card:hover {
    border-color: rgba(201, 168, 76, .32);
}

.case-card:hover::before {
    width: 100%;
}

.case-num {
    font-family: var(--font-h);
    font-size: 3.5rem;
    font-weight: 200;
    font-style: italic;
    color: rgba(201, 168, 76, .05);
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 16px;
    transition: color .4s;
    pointer-events: none;
}

.case-card:hover .case-num {
    color: rgba(201, 168, 76, .1);
}

.case-tag {
    display: inline-block;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, .22);
    padding: 3px 9px;
    margin-bottom: .9rem;
}

.case-title {
    font-family: var(--font-h);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--parchment);
    line-height: 1.3;
    margin-bottom: .7rem;
}

.case-desc {
    font-size: .82rem;
    color: var(--chrome);
    line-height: 1.7;
}

.case-outcome {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.1rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}

.case-outcome::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--gold);
}

/* ═══════════════════════════
BOOKS SECTION — SLICK
═══════════════════════════ */
.books-law {
    padding: 110px 0;
    background: var(--charcoal);
    position: relative;
}

.book-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border-dim);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    min-height: 220px;
}

.book-card:hover {
    border-color: rgba(201, 168, 76, .28);
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, .4);
}

.book-spine {
    width: 6px;
    background: linear-gradient(to bottom, var(--gold-dk), var(--gold));
    flex-shrink: 0;
}

.book-cover {
    width: 90px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.6);
    transition: filter .3s;
}

.book-card:hover .book-cover img {
    filter: saturate(1);
}

.book-cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--graphite), var(--steel));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.bcp-icon {
    font-size: 1.8rem;
    margin-bottom: .4rem;
    color: var(--gold-lt);
}

.bcp-text {
    font-size: .5rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, .45);
    text-align: center;
}

.book-body {
    padding: 20px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.book-tag {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}

.book-title {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--parchment);
    line-height: 1.3;
    margin-bottom: .4rem;
}

.book-author {
    font-size: .75rem;
    color: var(--chrome);
    margin-bottom: .7rem;
    font-style: italic;
    font-family: var(--font-h);
}

.book-desc {
    font-size: .78rem;
    color: var(--chrome);
    line-height: 1.65;
    flex: 1;
}

.btn-baca {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: .9rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap .2s;
}

.btn-baca:hover {
    gap: 11px;
}

/* ═══════════════════════════
BLOG SECTION — SLICK
═══════════════════════════ */
.blog-law {
    padding: 110px 0;
    background: var(--onyx);
    position: relative;
}

.blog-card-slick {
    border: 1px solid var(--border-dim);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.blog-card-slick:hover {
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .45);
}

.blog-img-slick {
    overflow: hidden;
    height: 180px;
}

.blog-img-slick img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(35%);
    transition: all .5s;
}

.blog-card-slick:hover .blog-img-slick img {
    filter: grayscale(0);
    transform: scale(1.04);
}

.blog-img-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--graphite), var(--charcoal));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-body-slick {
    padding: 24px 22px;
}

.blog-cat-slick {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}

.blog-title-slick {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--parchment);
    line-height: 1.25;
    margin-bottom: .6rem;
    transition: color .2s;
}

.blog-card-slick:hover .blog-title-slick {
    color: var(--gold-lt);
}

.blog-excerpt-slick {
    font-size: .8rem;
    color: var(--chrome);
    line-height: 1.65;
    margin-bottom: .8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta-slick {
    font-size: .65rem;
    color: var(--steel);
    display: flex;
    gap: 14px;
    font-weight: 600;
}

.blog-meta-slick i {
    color: var(--gold);
}

/* gold accent bottom on hover */
.blog-card-slick::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    transition: width .4s;
}

.blog-card-slick:hover::after {
    width: 100%;
}

/* ═══════════════════════════
CLIENTS — SLICK
═══════════════════════════ */
.clients-law {
    padding: 110px 0;
    background: var(--void);
    position: relative;
}

.client-card {
    border: 1px solid var(--border-dim);
    padding: 32px 24px;
    text-align: center;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    transition: var(--transition);
    background: transparent;
    color: rgba(245, 238, 216, .75);
}

.client-card:hover {
    background: var(--gold-fade2);
    border-color: rgba(201, 168, 76, .2);
}

.client-logo {
    font-size: 1rem;
    font-weight: 600;
    /* color: rgba(245, 238, 216, .28); */
    letter-spacing: .04em;
    font-family: var(--font-h);
    font-style: italic;
    transition: color .3s;
    line-height: 1.3;
    color: rgba(245, 238, 216, .75);
}

.client-card:hover .client-logo {
    color: rgba(245, 238, 216, .75);
}

.client-type {
    font-size: .56rem;
    /* color: rgba(201, 168, 76, .35); */
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
    transition: color .3s;
    color: rgba(245, 238, 216, .75);
}

.client-card:hover .client-type {
    color: rgba(201, 168, 76, .7);
}

/* Testimonial */
.testimonial-law {
    border: 1px solid rgba(201, 168, 76, .1);
    padding: 48px;
    position: relative;
    margin-top: 56px;
    background: rgba(201, 168, 76, .02);
    overflow: hidden;
}

.testimonial-law::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dk) 30%, var(--gold) 50%, var(--gold-dk) 70%, transparent);
}

.tq-big {
    font-family: var(--font-h);
    font-size: 7rem;
    font-style: italic;
    font-weight: 200;
    color: rgba(201, 168, 76, .06);
    line-height: .8;
    position: absolute;
    top: -10px;
    left: 24px;
    pointer-events: none;
}

.tq-text {
    font-family: var(--font-h);
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(245, 238, 216, .65);
    line-height: 1.65;
    max-width: 680px;
    position: relative;
    z-index: 1;
}

.tq-author {
    margin-top: 1rem;
    font-size: .7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* ═══════════════════════════
ECOSYSTEM
═══════════════════════════ */
.ecosystem-law {
    padding: 110px 0;
    background: var(--charcoal);
    position: relative;
}

.eco-card {
    border: 1px solid rgba(201, 168, 76, .18);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.eco-card:hover {
    border-color: rgba(201, 168, 76, .5);
    transform: translateY(-5px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, .5);
}

.eco-header {
    background: linear-gradient(135deg, var(--void), var(--charcoal));
    padding: 40px 36px 28px;
    position: relative;
    overflow: hidden;
}

.eco-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .22), transparent);
}

.eco-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    top: -90px;
    right: -70px;
    background: radial-gradient(circle, rgba(201, 168, 76, .07), transparent 65%);
}

.eco-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.eco-label {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem;
    position: relative;
    z-index: 1;
}

.eco-domain {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 600;
    color: var(--parchment);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.eco-domain em {
    font-style: italic;
    color: var(--gold-lt);
}

.eco-body {
    padding: 28px 36px;
}

.eco-desc {
    font-size: .86rem;
    color: var(--chrome);
    line-height: 1.7;
    margin-bottom: 1.6rem;
}

.eco-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.6rem;
}

.eco-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .78rem;
    color: rgba(245, 238, 216, .55);
    padding: 7px 0;
    border-bottom: 1px solid var(--border-dim);
    font-weight: 500;
    letter-spacing: .03em;
}

.eco-features li:last-child {
    border: none;
}

.eco-features li::before {
    content: '◆';
    color: var(--gold);
    font-size: .38rem;
    flex-shrink: 0;
}

.btn-eco {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, .28);
    color: var(--gold);
    padding: 12px 18px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-eco:hover {
    background: var(--gold);
    color: var(--void);
    border-color: var(--gold);
}

/* ═══════════════════════════
CONTACT
═══════════════════════════ */
.contact-law {
    padding: 110px 0;
    background: var(--void);
    position: relative;
    overflow: hidden;
}

.contact-law .contact-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, .04), transparent 65%);
    pointer-events: none;
}

.contact-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 56px;
    border: 1px solid var(--border-dim);
}

.contact-info-cell {
    flex: 1;
    min-width: 180px;
    padding: 28px 24px;
    border-right: 1px solid var(--border-dim);
    transition: background .3s;
}

.contact-info-cell:last-child {
    border-right: none;
}

.contact-info-cell:hover {
    background: var(--gold-fade2);
}

.cic-icon {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: .6rem;
}

.cic-label {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--chrome);
    margin-bottom: .25rem;
}

.cic-val {
    font-family: var(--font-h);
    font-size: 1rem;
    color: var(--parchment);
    font-style: italic;
}

.cic-val a {
    color: var(--parchment);
    transition: color .2s;
}

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

.contact-form {
    border: 1px solid var(--border-dim);
    padding: 44px 40px;
}

.form-label-law {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--chrome);
    display: block;
    margin-bottom: .45rem;
}

.form-input-law {
    width: 100%;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(201, 168, 76, .12);
    color: var(--parchment);
    padding: 12px 14px;
    font-family: var(--font-b);
    font-size: .88rem;
    transition: border-color .2s;
    border-radius: 0;
    outline: none;
}

.form-input-law:focus {
    border-color: rgba(201, 168, 76, .45);
    background: rgba(201, 168, 76, .025);
}

.form-input-law::placeholder {
    color: rgba(245, 238, 216, .18);
}

.form-group-law {
    margin-bottom: 1.2rem;
}

.btn-send-law {
    background: var(--gold);
    color: var(--void);
    border: none;
    padding: 13px 40px;
    font-family: var(--font-b);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.btn-send-law:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, .25);
}

/* ═══════════════════════════
FOOTER
═══════════════════════════ */
footer {
    background: var(--void);
    border-top: 1px solid rgba(201, 168, 76, .12);
    padding: 52px 0 24px;
}

.footer-name {
    font-family: var(--font-h);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--parchment);
    margin-bottom: .25rem;
}

.footer-title {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--chrome);
    margin-bottom: 1.2rem;
}

.footer-bar {
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin: 0 0 1.2rem;
}

.footer-desc {
    font-size: .8rem;
    color: rgba(245, 238, 216, .28);
    line-height: 1.7;
    max-width: 280px;
}

footer h6 {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(245, 238, 216, .35);
    margin-bottom: .9rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid var(--border-dim);
}

.fl {
    list-style: none;
    padding: 0;
}

.fl li {
    margin-bottom: .45rem;
}

.fl a {
    font-size: .8rem;
    color: rgba(245, 238, 216, .28);
    transition: color .2s;
}

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

.soc-law {
    display: flex;
    gap: 7px;
}

.soc-l {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 168, 76, .12);
    display: grid;
    place-items: center;
    color: rgba(245, 238, 216, .28);
    font-size: .82rem;
    transition: var(--transition);
}

.soc-l:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-dim);
    margin-top: 36px;
    padding-top: 18px;
    font-size: .65rem;
    color: rgba(245, 238, 216, .16);
}

/* floating WA */
.wa-float-law {
    position: fixed;
    bottom: 24px;
    right: 18px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.wa-float-btn {
    width: 52px;
    height: 52px;
    background: var(--green);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .38);
    animation: wap 2.5s ease-in-out infinite;
    transition: transform .2s;
}

.wa-float-btn:hover {
    color: #fff;
    transform: scale(1.08);
}

@keyframes wap {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .38)
    }

    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, .65), 0 0 0 9px rgba(37, 211, 102, .07)
    }
}

.wa-label-float {
    font-size: .52rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(245, 238, 216, .22);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

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

.reveal-l {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-l.in {
    opacity: 1;
    transform: translateX(0);
}

.reveal-r {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-r.in {
    opacity: 1;
    transform: translateX(0);
}

html, body {
max-width: 100%;
overflow-x: hidden;
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:991px) {
    .hero-photo {
        width: 100%;
        opacity: .15;
    }

    .hero-content-law {
        z-index: 2;
    }

    .hsl {
        padding: 0 18px 0 0;
    }

    .hsl+.hsl {
        padding-left: 18px;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .testimonial-law {
        padding: 32px 24px;
    }
}

@media(max-width:767px) {
    .hero-law h1 {
        font-size: 2.6rem;
    }

    .hero-stats-law {
        flex-direction: column;
        gap: 18px;
    }

    .hsl+.hsl {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(201, 168, 76, .08);
        padding-top: 14px;
    }

    .contact-info-row {
        flex-direction: column;
    }

    .contact-info-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-dim);
    }

    .contact-info-cell:last-child {
        border-bottom: none;
    }

    .eco-body {
        padding: 22px 24px;
    }

    .eco-header {
        padding: 28px 24px 20px;
    }
}

@media(max-width:576px) {
    .testimonial-law {
        padding: 24px 20px;
    }

    .tq-text {
        font-size: 1.1rem;
    }
}

/* Section heading area */
.section-head {
    margin-bottom: 40px;
}

.section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Progress counter for sliders */
.slider-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--chrome);
}

.slider-progress .current {
    color: var(--gold);
    font-family: var(--font-h);
    font-size: 1rem;
    font-style: italic;
}

.slider-progress .sep {
    color: rgba(201, 168, 76, .25);
}

/* Client slider auto-width */
.clients-law .slick-slide {
    padding: 0 5px;
}

.clients-law .slick-list {
    margin: 0 -5px;
}

.eco-icon img {
/* Lapis drop-shadow putih tebal mengikuti bentuk logo */
filter:
drop-shadow(0 0 3px #fff)
drop-shadow(0 0 3px #fff)
drop-shadow(0 0 3px #fff)
drop-shadow(0 0 3px #fff)
drop-shadow(0 0 3px #fff)
drop-shadow(0 0 3px #fff);
}