
/* =========================================================
   ADVISCO — PREMIUM LEGAL LANDING PAGE
   Theme: Navy / Gold / White
   ========================================================= */

:root {
    --navy: #071b31;
    --navy-deep: #051524;
    --navy-soft: #0d2944;
    --gold: #c7a56a;
    --gold-light: #d8bd89;

    --white: #ffffff;
    --light: #f3f7f9;
    --light-blue: #eaf3f7;

    --text: #172532;
    --muted: #71808b;
    --muted-light: #93a7b5;

    --line: #dce4e9;
    --line-dark: rgba(255, 255, 255, .12);

    --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --container: 1160px;
    --header-height: 78px;

    --ease: cubic-bezier(.22, 1, .36, 1);
}

/* =========================================================
   RESET
   ========================================================= */

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

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

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

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

::selection {
    background: var(--gold);
    color: var(--navy);
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);

    background: rgba(7, 27, 49, .92);
    border-bottom: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        background .3s ease,
        box-shadow .3s ease,
        height .3s ease;
}

.header.scrolled {
    background: rgba(5, 21, 36, .98);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
}

.logo-circle {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;

    font-family: var(--font-main);
    font-size: 25px;
    font-style: italic;

    transition:
        border-color .3s ease,
        transform .3s var(--ease);
}

.logo:hover .logo-circle {
    border-color: var(--gold);
    transform: rotate(-8deg);
}

.logo-text strong {
    display: block;
    font-size: 21px;
    line-height: 1;
    letter-spacing: -.3px;
}

.logo-text small {
    display: block;
    margin-top: 4px;

    font-size: 8px;
    line-height: 1;
    letter-spacing: 1.5px;

    color: rgba(255, 255, 255, .62);
}

/* =========================================================
   NAVIGATION
   ========================================================= */

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

    color: #d9e4eb;
    font-size: 13px;
    font-weight: 600;
}

nav > a:not(.nav-button) {
    position: relative;
    padding: 8px 0;
    color: #d9e4eb;
}

nav > a:not(.nav-button)::after {
    content: "";

    position: absolute;
    left: 0;
    right: 100%;
    bottom: 1px;

    height: 1px;
    background: var(--gold);

    transition: right .3s var(--ease);
}

nav > a:not(.nav-button):hover {
    color: var(--white);
}

nav > a:not(.nav-button):hover::after {
    right: 0;
}

.nav-button {
    padding: 11px 18px;

    background: var(--white);
    color: var(--navy);

    font-weight: 700;

    transition:
        transform .25s var(--ease),
        background .25s ease;
}

.nav-button:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-toggle {
    position: relative;

    display: none;
    width: 42px;
    height: 42px;
    padding: 0;

    border: 1px solid rgba(255, 255, 255, .18);
    background: transparent;

    color: var(--white);
    cursor: pointer;
}

.menu-toggle::before {
    content: "";

    position: absolute;
    left: 8px;
    top: 12px;

    width: 24px;
    height: 2px;

    background: currentColor;
    box-shadow:
        0 8px 0 currentColor,
        0 16px 0 currentColor;

    transition:
        transform .25s ease,
        top .25s ease,
        box-shadow .25s ease;
}

.menu-toggle.active::before {
    top: 19px;
    transform: rotate(45deg);
    box-shadow: none;
}

.menu-toggle.active::after {
    content: "";

    position: absolute;
    left: 8px;
    top: 19px;

    width: 24px;
    height: 2px;

    background: currentColor;
    transform: rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 760px;

    overflow: hidden;

    background: var(--navy);
    color: var(--white);
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(28, 108, 150, .30),
            transparent 34%
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255, 255, 255, .035) 1px,
            transparent 1px
        );

    background-size:
        auto,
        80px 80px,
        80px 80px;
}

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;

    top: 120px;
    right: -150px;

    border-radius: 50%;

    background: rgba(199, 165, 106, .06);
    filter: blur(20px);
}

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

    min-height: 760px;

    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;

    gap: 60px;

    padding-top: 78px;
}

.hero-text {
    max-width: 680px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--gold);

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2.2px;
}

.eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;
    flex: 0 0 28px;

    background: currentColor;
}

.hero h1 {
    max-width: 700px;

    margin: 24px 0;

    font-family: var(--font-main);
    font-size: clamp(45px, 5vw, 70px);
    line-height: 1.08;
    letter-spacing: -.8px;
}

.hero h1 em,
h2 em {
    color: var(--gold);
    font-style: normal;
}

.hero-text > p {
    max-width: 620px;
    margin: 0;

    color: #b9c8d2;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 13px 20px;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform .25s var(--ease),
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}

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

.primary {
    background: var(--white);
    color: var(--navy);
}

.primary:hover {
    background: var(--gold);
}

.secondary {
    border: 1px solid rgba(255, 255, 255, .28);
    color: var(--white);
}

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

.secondary span {
    margin-left: 6px;
}

.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;

    margin-top: 35px;
    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, .15);
}

.trust div {
    display: flex;
    flex-direction: column;

    min-width: 90px;

    font-size: 12px;
}

.trust strong {
    color: var(--white);
}

.trust span {
    color: #8296a6;
}

/* =========================================================
   HERO CARD
   ========================================================= */

.hero-card-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: relative;

    width: min(390px, 100%);
    height: 450px;

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            #173d5c,
            #071a2d
        );

    border: 1px solid rgba(255, 255, 255, .15);

    box-shadow:
        30px 30px 80px rgba(0, 0, 0, .30);

    transform: rotate(4deg);

    transition:
        transform .5s var(--ease),
        box-shadow .5s ease;
}

.hero-card:hover {
    transform: rotate(1deg) translateY(-7px);
    box-shadow:
        25px 35px 80px rgba(0, 0, 0, .38);
}

.card-top,
.card-bottom {
    display: flex;
    justify-content: space-between;

    color: #8da6b8;

    font-size: 8px;
    line-height: 1.4;
    letter-spacing: 2px;
}

.card-bottom {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;

    align-items: end;
}

.card-bottom strong {
    color: var(--white);

    font-family: var(--font-main);
    font-size: 18px;
    line-height: 1.2;
    text-align: right;
}

.card-stamp {
    position: absolute;
    top: 74px;
    right: 28px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    color: rgba(255, 255, 255, .45);

    font-size: 7px;
    letter-spacing: 2px;
}

.card-stamp strong {
    color: var(--gold);

    font-family: var(--font-main);
    font-size: 13px;
}

/* =========================================================
   PREMIUM LEGAL BALANCE
   ========================================================= */

.scale {
    position: absolute;
    inset: 75px 40px;
}

/* ---------------------------------------------------------
   MAIN BEAM
   --------------------------------------------------------- */

.scale-beam {
    position: absolute;

    top: 105px;
    left: 28px;
    right: 28px;

    height: 5px;

    background: var(--gold);
    border-radius: 3px;

    z-index: 3;
}

/* ---------------------------------------------------------
   CENTER COLUMN
   --------------------------------------------------------- */

.scale-pole {
    position: absolute;

    top: 102px;
    left: 50%;

    width: 5px;
    height: 215px;

    background: var(--gold);

    border-radius: 0 0 3px 3px;

    transform: translateX(-50%);

    z-index: 4;
}

/* TITIK SAMBUNG TENGAH */
.scale-pole::before {
    content: "";

    position: absolute;

    top: -3px;
    left: 50%;

    width: 13px;
    height: 13px;

    background: var(--gold);

    border-radius: 50%;

    transform: translateX(-50%);
}

/* ---------------------------------------------------------
   HANGING CABLES
   --------------------------------------------------------- */

.scale-line {
    position: absolute;

    top: 108px;

    width: 1px;
    height: 112px;

    background: var(--gold);

    opacity: .9;

    z-index: 2;
}

/* LEFT */
.scale-line.left {
    left: 55px;

    transform: rotate(5deg);
    transform-origin: top center;
}

/* RIGHT */
.scale-line.right {
    right: 55px;

    transform: rotate(-5deg);
    transform-origin: top center;
}

/* ---------------------------------------------------------
   BALANCE PANS
   --------------------------------------------------------- */

.scale-pan {
    position: absolute;

    top: 217px;

    width: 108px;
    height: 25px;

    border: 1.5px solid var(--gold);
    border-top: none;

    border-radius: 0 0 60px 60px;

    background: rgba(199, 165, 106, .035);

    z-index: 1;
}

/* PAN TOP EDGE */
.scale-pan::before {
    content: "";

    position: absolute;

    left: -2px;
    right: -2px;
    top: -1px;

    height: 2px;

    background: var(--gold);

    border-radius: 50%;
}

/* LEFT PAN */
.pan-left {
    left: 0;
}

/* RIGHT PAN */
.pan-right {
    right: 0;
}

.hero-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    height: 1px;

    background: rgba(255, 255, 255, .10);
}

/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 120px 0;
}

.section-label {
    color: var(--gold);

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-label-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-index {
    color: var(--muted);
    font-size: 10px;
}

h2 {
    margin: 0;

    font-family: var(--font-main);
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.12;
    letter-spacing: -.5px;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 80px;
}

.about h2 {
    margin-bottom: 25px;
}

.about h2 span {
    color: #89959d;
}

.about p {
    max-width: 700px;
    margin: 0 0 14px;

    color: var(--muted);
}

.text-link {
    display: inline-flex;
    align-items: center;

    margin-top: 15px;
    padding-bottom: 3px;

    font-size: 13px;
    font-weight: 700;

    transition:
        color .25s ease,
        border-color .25s ease;
}

.text-link:hover {
    color: var(--gold);
}

/* =========================================================
   SERVICES
   ========================================================= */

.services {
    background: var(--light);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}

.section-heading h2 {
    margin-top: 10px;
}

.section-heading > p {
    max-width: 410px;
    margin: 0;

    color: var(--muted);
    font-size: 14px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    position: relative;

    min-height: 310px;
    padding: 34px;

    background: var(--white);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    transition:
        transform .35s var(--ease),
        box-shadow .35s ease,
        background .35s ease;
}

.service-card:hover {
    z-index: 2;
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(7, 27, 49, .12);
}

.service-card.dark {
    background: var(--navy);
    color: var(--white);
}

.number {
    position: absolute;
    top: 25px;
    right: 25px;

    color: #9daab2;
    font-size: 11px;
}

.service-card.dark .number {
    color: #7890a1;
}

.icon {
    margin-bottom: 20px;

    color: var(--gold);

    font-family: var(--font-main);
    font-size: 35px;
    line-height: 1;
}

.service-card h3 {
    margin: 0 0 12px;

    font-family: var(--font-main);
    font-size: 23px;
    line-height: 1.25;
}

.service-card p {
    max-width: 360px;
    margin: 0;

    color: var(--muted);
    font-size: 13px;
}

.service-card.dark p {
    color: #9db0bc;
}

.service-card a {
    position: absolute;
    bottom: 25px;
    left: 34px;

    color: var(--text);

    font-size: 11px;
    font-weight: 700;

    transition: color .25s ease;
}

.service-card.dark a {
    color: var(--white);
}

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

/* =========================================================
   DARK SECTION / PROCESS
   ========================================================= */

.dark-section {
    background: var(--navy);
    color: var(--white);
}

.section-heading.light h2 {
    color: var(--white);
}

.section-heading.light > p {
    color: var(--muted-light);
}

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, .15);
}

.process > div {
    min-height: 220px;

    margin-right: 25px;
    padding: 30px 25px 20px 0;

    border-right: 1px solid rgba(255, 255, 255, .13);
}

.process > div:last-child {
    border-right: 0;
}

.process span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
}

.process h3 {
    margin: 22px 0 8px;

    font-family: var(--font-main);
    font-size: 24px;
    line-height: 1.2;
}

.process p {
    margin: 0;

    color: #92a7b5;
    font-size: 13px;
}

/* =========================================================
   INSIGHT
   ========================================================= */

.insight-section {
    background: var(--white);
}

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

.insight-grid article {
    padding: 25px 15px 24px 0;

    border-top: 2px solid var(--navy);

    transition:
        transform .3s var(--ease),
        border-color .3s ease;
}

.insight-grid article:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.insight-meta span {
    color: #788791;

    font-size: 9px;
    line-height: 1.4;
    letter-spacing: 2px;
    font-weight: 700;
}

.insight-meta span:last-child {
    color: var(--gold);
}

.insight-grid h3 {
    margin: 17px 0 10px;

    font-family: var(--font-main);
    font-size: 23px;
    line-height: 1.3;
}

.insight-grid p {
    margin: 0;

    color: var(--muted);
    font-size: 13px;
}

.insight-grid a {
    display: inline-block;
    margin-top: 16px;

    font-size: 11px;
    font-weight: 700;
}

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

/* =========================================================
   CTA
   ========================================================= */

.cta {
    padding: 100px 0;

    background: var(--light-blue);
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;

    gap: 80px;
}

.cta h2 {
    margin-top: 20px;

    font-size: clamp(40px, 4.5vw, 60px);
}

.cta-action {
    max-width: 450px;
}

.cta p {
    margin: 0 0 25px;

    color: #687a86;
    font-size: 14px;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 70px 0 25px;

    background: var(--navy-deep);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr .9fr 1fr;
    gap: 50px;
}

.footer-description {
    margin-top: 18px;
}

.footer-grid p,
.footer-grid a {
    color: #8fa3b0;
    font-size: 12px;
}

.footer-grid h4 {
    margin: 0 0 15px;

    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-grid > div:not(:first-child) a {
    display: block;
    margin: 8px 0;

    transition: color .25s ease;
}

.footer-grid > div:not(:first-child) a:hover {
    color: var(--gold);
}

.footer-button {
    display: inline-flex !important;

    margin-top: 10px !important;
    padding: 10px 14px;

    border: 1px solid #526a79;

    color: var(--white) !important;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}

.footer-button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy) !important;
}

.copyright {
    display: flex;
    justify-content: space-between;
    gap: 25px;

    margin-top: 50px;
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, .1);

    color: #617684;
    font-size: 10px;
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(24px);

    transition:
        opacity .7s ease,
        transform .7s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: none;
}

/* =========================================================
   FOCUS / ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .hero-content {
        grid-template-columns: 1fr .8fr;
        gap: 35px;
    }

    .hero-card {
        width: 340px;
        height: 410px;
    }

    nav {
        gap: 20px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   RESPONSIVE — MOBILE NAV
   ========================================================= */

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;

        padding: 18px 20px 22px;

        background: rgba(5, 21, 36, .98);
        border-bottom: 1px solid rgba(255, 255, 255, .08);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);

        pointer-events: none;

        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s var(--ease);
    }

    nav.open {
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    nav > a:not(.nav-button) {
        width: 100%;
        padding: 12px 0;
    }

    nav > a:not(.nav-button)::after {
        display: none;
    }

    .nav-button {
        margin-top: 7px;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;

        min-height: auto;

        padding-top: 130px;
        padding-bottom: 90px;
    }

    .hero-card-wrap {
        display: none;
    }

    .about,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 25px;
    }

    .process {
        grid-template-columns: repeat(2, 1fr);
    }

    .process > div:nth-child(2) {
        border-right: 0;
    }

    .process > div:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, .13);
    }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 32px);
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-top: 125px;
        padding-bottom: 70px;
    }

    .hero h1 {
        margin: 20px 0;

        font-size: 42px;
        line-height: 1.08;
    }

    .hero-text > p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .trust {
        gap: 18px;
    }

    .section {
        padding: 80px 0;
    }

    h2 {
        font-size: 38px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .service-grid,
    .process,
    .insight-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 300px;
    }

    .process > div {
        min-height: auto;
        margin-right: 0;
        padding-right: 0;
        border-right: 0;
    }

    .process > div:nth-child(2) {
        border-top: 1px solid rgba(255, 255, 255, .13);
    }

    .process > div:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, .13);
    }

    .cta {
        padding: 80px 0;
    }

    .cta-content {
        gap: 30px;
    }

    .cta h2 {
        font-size: 40px;
    }

    footer {
        padding-top: 55px;
    }

    .copyright {
        display: block;
    }

    .copyright span {
        display: block;
        margin: 7px 0;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   ADVISCO — PROFESSIONAL UI V2
   Visual refinement layer
   Theme preserved: Navy / Gold / White
   ========================================================= */

/* ---------------------------------------------------------
   HERO REFINEMENT
   --------------------------------------------------------- */

.hero {
    min-height: 720px;
}

.hero-content {
    min-height: 720px;
    gap: clamp(40px, 5vw, 80px);
}

.hero-text {
    position: relative;
    z-index: 3;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(46px, 5.2vw, 72px);
    letter-spacing: -1.2px;
}

.hero h1 em {
    position: relative;
    display: inline-block;
}

.hero-text > p {
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 32px;
}

.btn {
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 2px;
    letter-spacing: .1px;
}

.primary {
    box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.primary:hover {
    box-shadow: 0 16px 35px rgba(0, 0, 0, .22);
}

.secondary {
    background: rgba(255, 255, 255, .025);
    backdrop-filter: blur(5px);
}

.trust {
    max-width: 620px;
    gap: 0;
}

.trust div {
    position: relative;
    min-width: 150px;
    padding-right: 28px;
}

.trust div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3px;
    right: 12px;
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, .12);
}

.trust strong {
    font-size: 12px;
    letter-spacing: .2px;
}

.trust span {
    margin-top: 2px;
    font-size: 11px;
}


/* ---------------------------------------------------------
   HERO VISUAL
   --------------------------------------------------------- */

.hero-card-wrap {
    position: relative;
    min-height: 500px;
}

.hero-card-wrap::before {
    content: "";
    position: absolute;

    width: 360px;
    height: 360px;

    border: 1px solid rgba(199, 165, 106, .10);
    border-radius: 50%;

    transform: translate(15px, 10px);
}

.hero-card-wrap::after {
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 50%;

    transform: translate(15px, 10px);
}

.hero-card {
    z-index: 2;

    width: min(390px, 88%);
    height: 455px;

    border-radius: 2px;

    box-shadow:
        24px 30px 70px rgba(0, 0, 0, .32),
        0 0 0 1px rgba(255, 255, 255, .025);

    transform: rotate(3deg);
}

.hero-card:hover {
    transform: rotate(1deg) translateY(-8px);
}

.hero-card::before {
    content: "";

    position: absolute;
    inset: 12px;

    border: 1px solid rgba(255, 255, 255, .055);

    pointer-events: none;
}

.card-stamp {
    opacity: .85;
}


/* ---------------------------------------------------------
   BACKGROUND DETAIL
   --------------------------------------------------------- */

.hero-background {
    opacity: .9;
}

.hero-glow {
    opacity: .9;
    pointer-events: none;
}

.hero-bottom-line {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(199, 165, 106, .22),
        transparent
    );
}


/* ---------------------------------------------------------
   SECTION TYPOGRAPHY
   --------------------------------------------------------- */

.section {
    padding: clamp(90px, 9vw, 125px) 0;
}

.section-label {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.section-label::after {
    content: "";

    width: 24px;
    height: 1px;

    margin-left: 10px;

    background: currentColor;
    opacity: .5;
}

h2 {
    letter-spacing: -.7px;
}

.about h2 {
    max-width: 850px;
}

.about p {
    line-height: 1.85;
}


/* ---------------------------------------------------------
   SERVICE CARDS
   --------------------------------------------------------- */

.service-grid {
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.service-card {
    border: none;
    min-height: 320px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.service-card:hover {
    position: relative;
    z-index: 2;
    transform: translateY(-6px);
}

.service-card::after {
    content: "";

    position: absolute;
    left: 34px;
    bottom: 25px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width .3s ease;
}

.service-card:hover::after {
    width: 34px;
}

.service-card h3 {
    letter-spacing: -.2px;
}

.service-card p {
    line-height: 1.75;
}


/* ---------------------------------------------------------
   PROCESS
   --------------------------------------------------------- */

.process > div {
    position: relative;
    padding-top: 34px;
}

.process span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid rgba(199, 165, 106, .35);
    border-radius: 50%;
}

.process h3 {
    margin-top: 20px;
}

.process p {
    line-height: 1.75;
}


/* ---------------------------------------------------------
   INSIGHT
   --------------------------------------------------------- */

.insight-grid {
    gap: 0;
    border-top: 1px solid var(--line);
}

.insight-grid article {
    min-height: 260px;
    padding: 30px 30px 30px 0;

    border-top: none;
    border-bottom: 1px solid var(--line);

    transition:
        transform .3s ease,
        padding-left .3s ease;
}

.insight-grid article + article {
    padding-left: 30px;
    border-left: 1px solid var(--line);
}

.insight-grid article:hover {
    transform: translateY(-4px);
}

.insight-grid h3 {
    max-width: 360px;
    line-height: 1.35;
}

.insight-grid p {
    max-width: 380px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.cta {
    position: relative;
    overflow: hidden;
}

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

.cta h2 {
    max-width: 700px;
}

.cta p {
    line-height: 1.8;
}


/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

footer {
    position: relative;
}

.footer-grid {
    padding-bottom: 15px;
}

.footer-grid > div {
    min-width: 0;
}

.footer-description {
    max-width: 280px;
    margin-top: 18px;
    line-height: 1.8;
}

.footer-grid h4 {
    color: var(--white);
}

.footer-grid a {
    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-grid > div:not(:first-child) a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.footer-button {
    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}

.footer-button:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy) !important;
}


/* ---------------------------------------------------------
   ACCESSIBILITY
   --------------------------------------------------------- */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1100px) {

    .hero-content {
        grid-template-columns: 1fr .85fr;
        gap: 35px;
    }

    .hero h1 {
        font-size: clamp(44px, 5.5vw, 62px);
    }

    .hero-card {
        width: min(350px, 100%);
        height: 430px;
    }

    .trust div {
        min-width: 125px;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .hero {
        min-height: auto;
    }

    .hero-content {
        min-height: auto;
        padding-top: 125px;
        padding-bottom: 80px;
    }

    .hero-card-wrap {
        display: none;
    }

    .hero h1 {
        max-width: 650px;
    }

    .trust {
        max-width: none;
    }

}


@media (max-width: 600px) {

    .hero-content {
        padding-top: 115px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: clamp(40px, 11vw, 48px);
        line-height: 1.08;
        letter-spacing: -.8px;
    }

    .hero-text > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 0;
    }

    .trust div {
        min-width: 0;
        padding-right: 12px;
    }

    .trust div:not(:last-child)::after {
        display: none;
    }

    .trust strong {
        font-size: 11px;
    }

    .trust span {
        font-size: 10px;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .service-card {
        min-height: 300px;
    }

    .insight-grid article,
    .insight-grid article + article {
        padding: 25px 0;
        border-left: none;
    }

    .cta {
        padding: 80px 0;
    }

}

/* =========================================================
   ADVISCO — MOBILE UI V2.1
   Mobile-first visual refinement
   Theme preserved
   ========================================================= */

@media (max-width: 900px) {

    /* HEADER */

    .header {
        background: rgba(7, 27, 49, .98);
    }

    .nav {
        height: 70px;
    }

    .logo-circle {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .logo-text strong {
        font-size: 19px;
    }

    .logo-text small {
        font-size: 7px;
        letter-spacing: 1.3px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 2px;

        background: rgba(255, 255, 255, .035);

        position: relative;
        z-index: 20;
    }

    .menu-toggle.active {
        border-color: rgba(199, 165, 106, .5);
    }

    nav {
        top: 70px;

        padding: 14px 16px 18px;

        gap: 2px;

        border-top: 1px solid rgba(255, 255, 255, .08);
        border-bottom: 1px solid rgba(255, 255, 255, .08);

        box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
    }

    nav > a:not(.nav-button) {
        width: 100%;
        padding: 13px 10px;

        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    nav > a:not(.nav-button)::after {
        display: none;
    }

    .nav-button {
        width: 100%;
        margin-top: 8px;

        padding: 13px 16px;

        text-align: center;
    }


    /* HERO */

    .hero-content {
        width: min(100% - 32px, 600px);

        padding-top: 112px;
        padding-bottom: 58px;

        margin: 0 auto;
    }

    .hero-text {
        width: 100%;
        max-width: none;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .eyebrow::before {
        width: 20px;
        flex-basis: 20px;
    }

    .hero h1 {
        margin: 20px 0 18px;

        font-size: clamp(39px, 10.8vw, 50px);
        line-height: 1.06;
        letter-spacing: -.9px;
    }

    .hero-text > p {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.75;

        color: #b9c8d2;
    }


    /* HERO BUTTONS */

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;

        width: 100%;

        gap: 9px;

        margin-top: 25px;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 51px;

        padding: 14px 18px;

        text-align: center;
    }


    /* TRUST */

    .trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);

        width: 100%;

        margin-top: 30px;
        padding-top: 20px;

        gap: 0;
    }

    .trust div {
        min-width: 0;
        padding: 0 10px;

        text-align: center;
    }

    .trust div:first-child {
        padding-left: 0;
    }

    .trust div:last-child {
        padding-right: 0;
    }

    .trust div:not(:last-child)::after {
        display: block;

        top: 0;
        right: 0;

        height: 30px;
    }

    .trust strong {
        font-size: 10px;
        line-height: 1.35;
    }

    .trust span {
        margin-top: 3px;

        font-size: 9px;
        line-height: 1.35;
    }


    /* GENERAL SECTIONS */

    .section {
        padding: 72px 0;
    }

    .about,
    .cta-content {
        gap: 30px;
    }

    .section-label {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    h2 {
        font-size: clamp(34px, 9vw, 43px);
        line-height: 1.1;
        letter-spacing: -.5px;
    }


    /* SERVICES */

    .service-grid {
        display: grid;
        grid-template-columns: 1fr;

        gap: 1px;
    }

    .service-card {
        min-height: 285px;

        padding: 28px 25px;
    }

    .service-card h3 {
        max-width: 270px;

        font-size: 22px;
        line-height: 1.25;
    }

    .service-card p {
        max-width: 330px;

        font-size: 13px;
        line-height: 1.7;
    }

    .service-card::after {
        left: 25px;
        bottom: 24px;
    }


    /* PROCESS */

    .process {
        display: grid;
        grid-template-columns: 1fr;

        border-top: 1px solid rgba(255, 255, 255, .15);
    }

    .process > div {
        margin: 0;
        padding: 26px 0;

        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .process > div:last-child {
        border-bottom: none;
    }

    .process span {
        width: 32px;
        height: 32px;

        font-size: 10px;
    }

    .process h3 {
        margin: 15px 0 7px;

        font-size: 22px;
    }

    .process p {
        max-width: 330px;

        font-size: 13px;
        line-height: 1.7;
    }


    /* INSIGHT */

    .insight-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .insight-grid article,
    .insight-grid article + article {
        min-height: auto;

        padding: 27px 0;

        border-left: none;
        border-bottom: 1px solid var(--line);
    }

    .insight-grid article:last-child {
        border-bottom: none;
    }

    .insight-grid h3 {
        max-width: 100%;

        font-size: 22px;
        line-height: 1.3;
    }

    .insight-grid p {
        max-width: 100%;

        font-size: 13px;
        line-height: 1.7;
    }


    /* CTA */

    .cta {
        padding: 72px 0;
    }

    .cta h2 {
        font-size: clamp(35px, 9.5vw, 46px);
    }

    .cta p {
        font-size: 13px;
        line-height: 1.75;
    }

    .cta .btn {
        width: 100%;
        text-align: center;
    }


    /* FOOTER */

    footer {
        padding: 58px 0 22px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .footer-description {
        max-width: 320px;
    }

    .footer-grid h4 {
        margin-bottom: 11px;
    }

    .footer-grid > div:not(:first-child) a {
        margin: 7px 0;
    }

    .footer-button {
        margin-top: 8px !important;
    }

    .copyright {
        margin-top: 38px;
        padding-top: 18px;

        line-height: 1.6;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .container {
        width: calc(100% - 28px);
    }

    .hero-content {
        width: calc(100% - 28px);

        padding-top: 105px;
        padding-bottom: 52px;
    }

    .hero h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .hero-text > p {
        font-size: 13px;
    }

    .trust strong {
        font-size: 9px;
    }

    .trust span {
        font-size: 8px;
    }

    .section {
        padding: 64px 0;
    }

    h2 {
        font-size: 33px;
    }

    .service-card {
        min-height: 275px;
        padding: 26px 22px;
    }

    .service-card h3 {
        font-size: 21px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    .hero h1 {
        font-size: 35px;
    }

    .trust {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust div,
    .trust div:first-child,
    .trust div:last-child {
        padding: 0;
        text-align: left;
    }

    .trust div:not(:last-child)::after {
        display: none;
    }

    .trust div:not(:last-child) {
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

}


/* =========================================================
   MOBILE POLISH — FINAL OVERRIDES
   ========================================================= */

@media (max-width: 900px) {

    .header {
        background: rgba(7, 27, 49, .98);
    }

    .nav {
        height: 70px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        padding: 0;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 10px;
    }

    .menu-toggle::before,
    .menu-toggle::after {
        left: 10px;
        width: 22px;
    }

    nav {
        top: 70px;
        left: 12px;
        right: 12px;

        padding: 12px;

        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 14px;

        box-shadow: 0 20px 50px rgba(0, 0, 0, .30);
    }

    nav > a:not(.nav-button) {
        width: 100%;
        padding: 13px 14px;
        border-radius: 8px;
    }

    nav > a:not(.nav-button)::after {
        display: none;
    }

    nav > a:not(.nav-button):hover {
        background: rgba(255, 255, 255, .06);
    }

    .nav-button {
        width: 100%;
        margin-top: 4px;
        padding: 13px 16px;
        text-align: center;
        border-radius: 8px;
    }

    /* HERO */

    .hero {
        min-height: auto;
    }

    .hero-content {
        min-height: auto;
        display: block;
        padding-top: 125px;
        padding-bottom: 65px;
    }

    .hero-text {
        max-width: none;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: 1.7px;
    }

    .hero h1 {
        max-width: none;
        margin: 20px 0;
        font-size: clamp(40px, 11vw, 52px);
        line-height: 1.08;
        letter-spacing: -.5px;
    }

    .hero-text > p {
        max-width: none;
        font-size: 14px;
        line-height: 1.75;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 25px;
    }

    .btn {
        width: 100%;
        min-height: 50px;
        padding: 14px 18px;
    }

    .trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;

        margin-top: 30px;
        padding-top: 20px;
    }

    .trust div {
        min-width: 0;
        font-size: 10px;
        line-height: 1.45;
    }

    .trust strong,
    .trust span {
        display: block;
    }

    /* Hide decorative card on tablet/mobile.
       Content remains focused on the CTA. */

    .hero-card-wrap,
    .hero-card {
        display: none;
    }

    /* SECTIONS */

    .section {
        padding: 78px 0;
    }

    .section-label {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    h2 {
        font-size: clamp(34px, 9vw, 44px);
        line-height: 1.12;
    }

    .about {
        display: block;
    }

    .about > .section-label {
        margin-bottom: 25px;
    }

    .about h2 {
        margin-bottom: 20px;
    }

    .about p {
        font-size: 14px;
        line-height: 1.8;
    }

    /* SERVICES */

    .section-heading {
        display: block;
        margin-bottom: 35px;
    }

    .section-heading > p {
        max-width: none;
        margin-top: 20px;
        font-size: 13px;
        line-height: 1.75;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        min-height: 0;
        padding: 28px 25px 70px;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.7;
    }

    .service-card a {
        bottom: 24px;
    }

    /* PROCESS */

    .process {
        grid-template-columns: 1fr;
    }

    .process > div {
        margin-right: 0;
        padding: 25px 0;
    }

    .process > div:last-child {
        border-bottom: 0;
    }

    .process h3 {
        margin: 14px 0 7px;
        font-size: 22px;
    }

    .process p {
        font-size: 13px;
        line-height: 1.7;
    }

    /* INSIGHT */

    .insight-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .insight-grid article {
        padding: 22px 0;
    }

    .insight-grid h3 {
        font-size: 21px;
    }

    /* CTA */

    .cta {
        padding: 75px 0;
    }

    .cta-content {
        display: block;
    }

    .cta h2 {
        font-size: clamp(35px, 9vw, 46px);
        margin-top: 18px;
    }

    .cta-action {
        margin-top: 30px;
    }

    .cta p {
        font-size: 13px;
        line-height: 1.75;
    }

    /* FOOTER */

    footer {
        padding: 55px 0 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-description {
        max-width: 290px;
    }

    .copyright {
        display: block;
        margin-top: 35px;
        line-height: 1.7;
    }

    .copyright span {
        display: block;
        margin: 6px 0;
    }
}


/* SMALL PHONES */

@media (max-width: 480px) {

    .container {
        width: min(100% - 28px, 1160px);
    }

    .nav {
        height: 66px;
    }

    .logo-circle {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .logo-text strong {
        font-size: 19px;
    }

    .hero-content {
        padding-top: 112px;
        padding-bottom: 55px;
    }

    .hero h1 {
        font-size: clamp(38px, 11.5vw, 46px);
    }

    .hero-text > p {
        font-size: 13px;
    }

    .trust {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trust div {
        display: block;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .trust div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 65px 0;
    }

    .service-card {
        padding: 25px 22px 66px;
    }

    .service-card h3 {
        font-size: 20px;
        padding-right: 35px;
    }

    .cta {
        padding: 65px 0;
    }

    .footer-grid {
        gap: 30px;
    }
}


/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* =========================================================
   MOBILE TRUST CARDS — HORIZONTAL
   ========================================================= */

@media (max-width: 600px) {

    .trust {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
    }

    .trust > div {
        min-width: 0;
        padding: 10px 4px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .trust strong,
    .trust span {
        display: block;
        white-space: nowrap;
    }

    .trust strong {
        font-size: 10px;
        line-height: 1.25;
    }

    .trust span {
        font-size: 8px;
        line-height: 1.25;
    }
}

@media (max-width: 380px) {

    .trust {
        gap: 4px;
    }

    .trust > div {
        padding: 9px 3px;
    }

    .trust strong {
        font-size: 9px;
    }

    .trust span {
        font-size: 7px;
    }
}

/* =========================================================
   ADVISCO — SERVICE SVG ICONS
   Icon-only styling. Layout untouched.
   ========================================================= */

.service-card .icon svg {
    display: block;
    width: 42px;
    height: 42px;

    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* FINAL — rapikan jarak label section dengan heading */
.section-heading h2 {
    margin-top: 4px;
}

/* =========================================================
   FINAL — LOGO TYPOGRAPHY
   Logo utama + sub-brand alignment
   ========================================================= */

.logo-text strong {
    font-size: 25px;
    line-height: .95;
    letter-spacing: -.6px;
}

.logo-text small {
    display: block;

    margin-top: 5px;
    margin-left: 13px;

    font-size: 9px;
    line-height: 1;
    letter-spacing: 1.4px;

    color: rgba(255, 255, 255, .62);
}

@media (max-width: 900px) {

    .logo-text strong {
        font-size: 25px;
    }

    .logo-text small {
        margin-left: 13px;
        font-size: 9px;
    }

}

/* FINAL — posisi sub-brand logo */
.logo-text small {
    margin-left: 30px;
}

@media (max-width: 900px) {
    .logo-text small {
        margin-left: 30px;
    }
}

/* FINAL — alignment sub-brand terhadap logo */
.logo-text small {
    margin-left: 17px;
}

@media (max-width: 900px) {
    .logo-text small {
        margin-left: 17px;
    }
}

/* =========================================================
   FOOTER — CONTACT ICONS
   Hanya mengatur area Kontak
   ========================================================= */

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 12px;

    white-space: nowrap;
}

.footer-contact .contact-icon {
    width: 20px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);

    flex: 0 0 20px;
}

.footer-contact .contact-icon svg {
    width: 19px;
    height: 19px;

    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact .contact-divider {
    color: rgba(255, 255, 255, .28);
    font-size: 13px;
}

.footer-contact .contact-item > span:last-child {
    transition: color .25s ease;
}

.footer-contact .contact-item:hover > span:last-child {
    color: var(--gold);
}

@media (max-width: 600px) {

    .footer-contact .contact-item {
        gap: 10px;
        margin-bottom: 11px;
    }

}

/* =========================================================
   FINAL — FOOTER CONTACT ALIGNMENT
   Hanya merapikan ikon dan teks pada Kontak
   ========================================================= */

.footer-contact .contact-item {
    display: grid;
    grid-template-columns: 22px 10px auto;
    align-items: center;
    column-gap: 8px;

    min-height: 24px;
    margin-bottom: 12px;

    white-space: nowrap;
}

.footer-contact .contact-icon {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);
}

.footer-contact .contact-icon svg {
    width: 19px;
    height: 19px;

    display: block;

    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact .contact-divider {
    width: 10px;

    text-align: center;

    color: rgba(255, 255, 255, .28);
    font-size: 13px;
    line-height: 1;
}

.footer-contact .contact-item > span:last-child {
    line-height: 1.4;
}

@media (max-width: 600px) {

    .footer-contact .contact-item {
        grid-template-columns: 22px 10px auto;
        column-gap: 8px;
        margin-bottom: 11px;
    }

}

/* =========================================================
   FINAL — CONTACT ICON INLINE
   Ikon, divider, dan teks selalu satu baris
   ========================================================= */

.footer-contact .contact-item {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    gap: 8px !important;

    min-height: 24px;
    margin-bottom: 12px;

    white-space: nowrap;
}

.footer-contact .contact-icon {
    width: 22px !important;
    height: 22px !important;

    flex: 0 0 22px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.footer-contact .contact-divider {
    width: auto !important;

    flex: 0 0 auto !important;

    display: inline-block !important;

    font-size: 13px;
    line-height: 1;
}

.footer-contact .contact-item > span:last-child {
    display: inline-block !important;
    flex: 0 0 auto !important;
    line-height: 1.4;
}

/* =========================================================
   LOGO SVG — HEADER & FOOTER
   ========================================================= */

.logo-image {
    display: block;
    width: auto;
    height: 42px;
    max-width: 180px;
    object-fit: contain;
}

@media (max-width: 600px) {

    .logo-image {
        height: 38px;
        max-width: 165px;
    }

}

/* =========================================================
   COPYRIGHT — MIKATECH
   ========================================================= */

.copyright .mikatech-link {
    color: var(--gold) !important;
    font-weight: 600;
    text-decoration: none;
    transition: color .25s ease;
}

.copyright .mikatech-link:hover {
    color: var(--gold-light) !important;
}
