        :root {
            --ink: #223415;
            --paper: #FEFAEE;
            --accent: #D3BA88;
            --accent-dark: #b69769;
            --sage: #9fb4a3;
            --sky: #e6eef3;
            --soft: #FEFAEE;
            --surface: #f7f2e8;
            --border: #cdc6b9;
            --white: #ffffff;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: "Plus Jakarta Sans", sans-serif;
            color: var(--ink);
            background-color: var(--paper);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, .display-title {
            font-family: "Instrument Serif", serif;
            letter-spacing: 0;
            font-weight: 400;
        }

        /* Heading 2 — 56px/64px desktop, 36px/48px mobile */
        h2 {
            font-size: 56px;
            line-height: 64px;
        }

        /* Heading 3 — 36px/48px desktop, 28px/32px mobile */
        h3 {
            font-size: 36px;
            line-height: 48px;
        }

        /* Heading 4 — 22px/28px */
        h4 {
            font-size: 22px;
            line-height: 28px;
        }
        
        .site-header {
            /* position: sticky; */
            top: 0;
            z-index: 1000;
            background: transparent;
            border-bottom: none;
            padding-top: 16px;
            overflow: visible;
        }

        .site-header .container {
            max-width: 1680px;
            padding-left: 12px;
            padding-right: 12px;
            overflow: visible;
        }

        .site-header .navbar {
            background: var(--ink);
            border-radius: 999px;
            padding: 8px 16px;
            box-shadow: 0 10px 24px rgba(34, 52, 21, 0.16);
            /* width: calc(100% - 40px); */
            /* max-width: 1680px; */
            margin: 0 auto;
            overflow: visible;
            z-index: 100;
        }

        .nav-load {
            opacity: 0;
            transform: translateY(-12px);
            animation: navDrop 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        
        section[id] {
            scroll-margin-top: 110px;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
        }

        .navbar-brand .brand-logo {
            height: 30px;
        }

        .navbar-brand .brand-logo-mobile {
            display: none;
        }
        
        .navbar .nav-link {
            color: #f7f1eb;
            transition: color 0.35s ease;
            padding: 0.35rem 0.7rem;
        }

        .nav-lang {
            display: flex;
            align-items: center;
            position: relative;
        }

        .nav-lang .btn-lang,
        .nav-lang .lang-toggle {
            color: #f7f1eb;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 999px;
            padding: 4px 10px;
            font-size: 0.75rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            box-shadow: none;
        }

        .nav-lang .lang-toggle::after {
            margin-left: 6px;
        }

        .nav-lang .lang-flag {
            width: 16px;
            height: 12px;
            display: inline-block;
            object-fit: cover;
            border-radius: 2px;
        }

        .nav-lang .lang-code {
            letter-spacing: 0.08em;
        }

        .navbar .nav-lang .dropdown-menu {
            min-width: 120px;
            border-radius: 10px;
            padding: 6px 0;
            margin-top: 8px;
            z-index: 2000;
            position: absolute !important;
            top: 100%;
            right: 0;
            left: auto;
            background: #ffffff;
            border: 1px solid rgba(34, 52, 21, 0.12);
            box-shadow: 0 12px 24px rgba(34, 52, 21, 0.18);
        }

        .navbar .nav-lang.dropdown,
        .navbar .nav-lang.dropdown.nav-item {
            position: relative;
        }

        .navbar-collapse {
            overflow: visible;
        }

        .nav-lang .dropdown-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--ink);
        }

        .nav-lang .dropdown-item:hover,
        .nav-lang .dropdown-item:focus {
            background: #f3eee5;
            color: var(--ink);
        }

        .navbar-nav {
            gap: 20px;
            overflow: visible;
        }
        
        .navbar .nav-link:hover,
        .navbar .nav-link:focus,
        .navbar .nav-link.active,
        .navbar .nav-link[aria-current="page"] {
            color: var(--accent);
        }

        .nav-actions {
            gap: 12px;
        }

        .nav-cta {
            font-weight: 400;
            color: #f7f1eb;
            padding: 0.35rem 0.4rem;
            text-decoration: none;
        }

        .nav-cta:hover,
        .nav-cta:focus {
            color: var(--accent);
        }
        
        .btn-primary {
            background: var(--accent);
            border-color: var(--accent);
            color: #1b1612;
            font-weight: 400;
        }
        
        .btn-primary:hover,
        .btn-primary:focus {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
        }
        
        .btn-outline-paper {
            background: #ffffff;
            border-color: #ffffff;
            color: var(--ink);
            font-weight: 400;
        }

        .btn-outline-paper:hover,
        .btn-outline-paper:focus {
            background: #f3eee5;
            border-color: #f3eee5;
            color: var(--ink);
        }
        
        .btn-pill {
            border-radius: 999px !important;
            padding-inline: 18px;
            min-height: 36px;
        }

        .btn-lg.btn-pill {
            padding-inline: 22px;
            min-height: 40px;
        }
        
        .btn-ink {
            background: var(--ink);
            border-color: var(--ink);
            color: #f7f2e8;
            font-weight: 400;
        }
        
        .btn-ink:hover,
        .btn-ink:focus {
            background: #1a2a10;
            border-color: #1a2a10;
            color: #ffffff;
        }
        
        .btn-outline-dark {
            border-color: #f7f1eb;
            color: #f7f1eb;
        }
        
        .btn-outline-dark:hover,
        .btn-outline-dark:focus {
            border-color: var(--accent);
            color: var(--accent);
        }
        
        .btn-outline-ink {
            border-color: var(--ink);
            color: var(--ink);
        }
        
        .btn-outline-ink:hover,
        .btn-outline-ink:focus {
            color: var(--accent);
            background: var(--ink);
            border-color: var(--ink);
        }
        
        .btn-outline-light {
            border-color: #f7f2e8;
            color: #f7f2e8;
        }
        
        .btn-outline-light:hover,
        .btn-outline-light:focus {
            background: #f7f2e8;
            border-color: #f7f2e8;
            color: var(--ink);
        }
        
        .btn-nav {
            padding: 7px 16px;
            font-weight: 400;
            font-size: 0.9rem;
            border-radius: 999px !important;
            line-height: 1.1;
            border-width: 1px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 34px;
        }

        .site-header .btn {
            border-radius: 999px !important;
        }
        
        .btn-nav + .btn-nav {
            margin-left: 4px;
        }
        
        .btn-nav:hover,
        .btn-nav:focus {
            text-decoration: none;
        }
        
        .btn-with-icon {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding-right: 10px;
        }

        .btn-icon-circle {
            display: inline-grid;
            place-items: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 1.25px solid var(--ink);
            font-size: 16px;
            line-height: 1;
            transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

        .btn-with-icon .btn-icon-circle {
            margin-left: 2px;
        }

        .btn-icon-arrow {
            width: 12px;
            height: 12px;
            display: block;
        }

        .btn-icon-arrow path {
            fill: none;
            stroke: currentColor;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .btn-icon-paper {
            background: var(--paper);
            color: var(--ink);
            border-color: var(--paper);
        }

        .btn-with-icon:hover .btn-icon-circle,
        .btn-with-icon:focus .btn-icon-circle {
            transform: none;
        }

        /* Button text roll animation — only text rolls, circle stays fixed */
        .btn-roll-wrap {
            overflow: hidden;
            display: inline-block;
            height: 1.35em;
            vertical-align: middle;
        }

        .btn-roll-track {
            display: flex;
            flex-direction: column;
            transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .btn-roll-track > span {
            display: flex;
            align-items: center;
            height: 1.35em;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .btn-roll:hover .btn-roll-track,
        .btn-roll:focus-visible .btn-roll-track {
            transform: translateY(-50%);
        }

        /* Arrow diagonal roll inside circle (exits top-right, enters bottom-left) */
        .btn-icon-circle.has-arrow-roll {
            position: relative;
            overflow: hidden;
        }

        .btn-icon-arrow-track {
            position: absolute;
            inset: 0;
        }

        .btn-icon-arrow-row {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Second arrow starts at bottom-left, hidden */
        .btn-icon-arrow-row:last-child {
            transform: translate(-110%, 110%);
        }

        /* On hover: first arrow exits top-right, second enters from bottom-left */
        .btn-roll:hover .btn-icon-arrow-row:first-child,
        .btn-roll:focus-visible .btn-icon-arrow-row:first-child {
            transform: translate(110%, -110%);
        }

        .btn-roll:hover .btn-icon-arrow-row:last-child,
        .btn-roll:focus-visible .btn-icon-arrow-row:last-child {
            transform: translate(0, 0);
        }
        
        .hero {
            position: relative;
            padding: 5.5rem 0 3.5rem;
            overflow: hidden;
            background: var(--paper);
            text-align: center;
        }
        
        .hero-intro {
            padding-top: 6rem;
        }
        
        .hero .eyebrow {
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.75rem;
            color: #6c5f55;
            font-weight: 400;
        }
        
        .hero-kicker {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 0;
            font-size: 16px;
            line-height: 24px;
            color: #5b5f4f;
            font-weight: 500;
            margin-bottom: 16px;
        }
        
        .hero-title {
            font-size: 56px;
            line-height: 64px;
            margin-bottom: 1.25rem;
        }
        
        .hero-content {
            max-width: 640px;
            margin: 0 auto 2.25rem;
        }
        
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 1.1rem;
        }

        .hero-actions .btn {
            font-size: 0.95rem;
            padding: 9px 20px;
        }

        .hero-actions .btn-ink:hover,
        .hero-actions .btn-ink:focus {
            background: #1f3113;
            border-color: #1f3113;
        }

        .hero-actions .btn-ink {
            color: #f9f4ea;
            padding-right: 10px;
        }

        .hero-actions .btn-raise:hover,
        .hero-actions .btn-raise:focus {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(34, 52, 21, 0.18);
        }

        .hero-actions .btn-with-icon:hover .btn-icon-circle,
        .hero-actions .btn-with-icon:focus .btn-icon-circle {
            transform: none;
        }

        .hero-actions .btn-with-icon {
            padding-left: 18px;
        }

        .hero-actions .btn-icon-circle {
            width: 24px;
            height: 24px;
            font-size: 16px;
        }

        .hero-actions .btn-outline-ink {
            border-width: 1.25px;
            border-color: rgba(34, 52, 21, 0.35);
            color: #2b3a1d;
        }

        .hero-actions .btn-outline-ink:hover,
        .hero-actions .btn-outline-ink:focus {
            background: var(--ink);
            border-color: var(--ink);
            color: #ffffff;
        }
        
        .hero-lead {
            font-size: 1.1rem;
            color: #4d463f;
            max-width: 520px;
        }
        
        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .hero-badge {
            border: 1px solid rgba(34, 52, 21, 0.16);
            background: #ffffff;
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 400;
        }
        
        .hero-collage {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
            align-items: end;
            /* margin: 0 auto 2.75rem; */
            /* max-width: 980px; */
        }
        
        .hero-collage-wide {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            margin-bottom: 0;
        }
        
        .hero-photo {
            border-radius: 24px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: 0 18px 36px rgba(34, 52, 21, 0.16);
            min-height: 240px;
            aspect-ratio: 3 / 4;
        }

        .hero-photo.hero-roll {
            opacity: 0;
            transform: translateY(40px);
            animation: heroRollIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: var(--delay, 0s);
            will-change: transform, opacity;
        }

        .hero-photo.hero-crop {
            min-height: 0;
            max-height: 50px;
            opacity: 0.95;
            transform: translateY(10px);
            transition: max-height 2s ease-out, transform 2s ease-out, opacity 2s ease-out;
            transition-delay: 0ms;
            aspect-ratio: unset;
            height: auto;
            will-change: max-height, transform, opacity;
        }

        .hero-collage.is-revealed .hero-photo.hero-crop {
            max-height: 520px;
            opacity: 1;
            transform: translateY(0);
            transition-delay: var(--delay, 0ms);
        }

        .hero-photo img {
            width: 100%;
            height: auto;
            object-fit: cover;
            object-position: top center;
            display: block;
            transform: scale(1.06);
            transition: transform 0.6s ease;
        }

        .hero-photo.hero-pos-1 img {
            transform: translateY(-18%) scale(1.06);
        }

        .hero-photo.hero-pos-2 img {
            transform: translateY(-12%) scale(1.06);
        }

        .hero-photo.hero-pos-center img {
            transform: translateY(-25%) scale(1.06);
        }

        .hero-photo:hover img {
            transform: scale(1.13);
        }

        .hero-photo.hero-pos-1:hover img {
            transform: translateY(-18%) scale(1.13);
        }

        .hero-photo.hero-pos-2:hover img {
            transform: translateY(-12%) scale(1.13);
        }

        .hero-photo.hero-pos-center:hover img {
            transform: translateY(-25%) scale(1.13);
        }

        
        .partner-section {
            display: none;
        }

        .partner-divider {
            margin: 50px auto 0;
            height: 2px;
            /* width: min(100%, 920px); */
            background: transparent;
            position: relative;
            overflow: hidden;
        }

        .partner-divider::after {
            content: "";
            position: absolute;
            inset: 0;
            background: #CDC6B9;
            transform: translateX(-100%);
        }

        .partner-divider.is-drawn::after {
            animation: dividerDraw 2s ease forwards;
        }

        @keyframes dividerDraw {
            from { transform: translateX(-100%); }
            to   { transform: translateX(0); }
        }

        @media (prefers-reduced-motion: reduce) {
            .partner-divider::after {
                transform: none;
                animation: none;
            }
        }
        
        .trusted-caption {
            color: #6e645a;
            font-weight: 400;
            letter-spacing: 0.2px;
            font-size: 16px;
            margin-bottom: 50px;
        }

        .trusted-caption {
            text-transform: none;
        }
        
        .partner-marquee {
            overflow: hidden;
            position: relative;
            margin: 0 auto;
            --logo-width: 140px;
        }

        .partner-track {
            display: flex;
            align-items: center;
            gap: 42px;
            width: max-content;
            animation: partnerMarquee 36s linear infinite;
            will-change: transform;
        }

        .partner-item {
            flex: 0 0 var(--logo-width);
            display: flex;
            justify-content: center;
        }

        .partner-item img {
            max-height: 35px;
            max-width: 100%;
            /* opacity: 0.4; */
            /* filter: grayscale(100%); */
            transition: opacity 0.3s ease, filter 0.3s ease;
        }

        .partner-marquee:hover .partner-track {
            animation-play-state: paused;
        }

        .partner-item img:hover {
            opacity: 0.8;
            filter: grayscale(0%);
        }

        .features-section {
            background: var(--paper);
            padding: 2rem 0 5.5rem;
        }

        /* Ensure feature cards stay visible even if JS reveal fails */
        .features-section .reveal {
            opacity: 1;
            transform: none;
        }

        .features-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 36px;
        }

        .features-header .section-title {
            max-width: 520px;
        }

        .features-header .section-title em {
            font-style: italic;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
            align-items: stretch;
        }

        .features-col {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .feature-tile {
            flex: 1;
            background: #ffffff;
            border: 1px solid rgba(34, 52, 21, 0.12);
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 18px 36px rgba(34, 52, 21, 0.08);
        }

        .feature-tile.hover-lift:hover {
            border-color: rgba(34, 52, 21, 0.2);
            box-shadow: 0 22px 42px rgba(34, 52, 21, 0.14);
        }

        .feature-tile h4 {
            margin-bottom: 8px;
            font-size: 1.05rem;
        }

        .feature-tile p {
            margin: 0;
            color: #5a524a;
        }

        .feature-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: var(--ink);
            display: grid;
            place-items: center;
            margin-bottom: 16px;
        }

        .feature-icon img {
            width: 20px;
            height: 20px;
        }

        .feature-media {
            display: flex;
            align-items: stretch;
            justify-content: center;
            align-self: stretch;
        }

        .feature-media-card {
            background: #f2e7d6;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 18px 36px rgba(34, 52, 21, 0.12);
            overflow: hidden;
            width: 100%;
        }

        /* Fitur section — unified entrance animations */
        .fitur-anim {
            opacity: 0;
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: var(--fitur-delay, 0s);
            will-change: transform, opacity;
        }

        .fitur-fade-up   { transform: translateY(32px); }
        .fitur-slide-left  { transform: translateX(-32px); }
        .fitur-slide-right { transform: translateX(32px); }

        .features-section.is-revealed .fitur-anim {
            opacity: 1;
            transform: none;
        }

        .feature-media-card.fitur-crop {
            min-height: 0;
            max-height: 60px;
            transition: max-height 2.2s ease-out;
            transition-delay: 120ms;
            will-change: max-height;
        }

        .features-section.is-revealed .feature-media-card.fitur-crop {
            max-height: 700px;
        }

        .reveal.media-roll {
            opacity: 0;
            transform: translateY(-24px) scale(0.92);
        }

        .reveal.media-roll.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .feature-media-card.hover-lift:hover {
            box-shadow: 0 24px 48px rgba(34, 52, 21, 0.16);
        }

        .feature-media-card img {
            width: 100%;
            display: block;
            border-radius: 18px;
            transform: scale(1.06);
            transition: transform 0.6s ease;
        }

        .feature-media-card:hover img {
            transform: scale(1);
        }

        .fitur-slideshow {
            position: relative;
            width: 100%;
            border-radius: 18px;
            overflow: hidden;
        }

        .fitur-slide {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            opacity: 0;
            transition: opacity 0.7s ease;
            pointer-events: none;
        }

        .fitur-slide.active {
            position: relative;
            opacity: 1;
            pointer-events: auto;
        }

        .fitur-slide img,
        .fitur-slide video {
            width: 100%;
            display: block;
            border-radius: 18px;
        }

        .fitur-slide video {
            object-fit: cover;
        }

        .steps-section.treatment-process {
            background: var(--ink);
            padding: 5.5rem 0;
            color: var(--white);
        }

        .steps-section.treatment-process.process-scroll {
            position: relative;
            padding: 0;
            min-height: 100vh;
        }

        .steps-section.treatment-process.process-scroll .process-pin {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 32px;
            padding: 5.5rem 0;
        }

        .steps-section.treatment-process .steps-header {
            margin-bottom: 2.5rem;
        }

        .steps-section.treatment-process .steps-kicker {
            text-transform: uppercase;
            letter-spacing: 0;
            font-size: 16px;
            line-height: 24px;
            font-weight: 500;
            color: rgba(247, 241, 235, 0.7);
            font-weight: 400;
        }

        .steps-section.treatment-process .steps-title {
            color: #f7f1eb;
            margin-top: 10px;
        }

        .steps-section.treatment-process .steps-title em {
            font-style: italic;
        }

        .process-tabs {
            --dot-size: 36px;
            --dot-gap: 26px;
            display: flex;
            justify-content: center;
            gap: var(--dot-gap);
            margin-bottom: 32px;
            position: relative;
            top: auto;
            z-index: 2;
            padding: 14px 0;
            background: var(--ink);
            --line-width: calc((var(--dot-size) * 3) + (var(--dot-gap) * 2));
            --progress: 0;
        }

        .process-tabs::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            width: var(--line-width);
            height: 1px;
            background: rgba(247, 241, 235, 0.35);
            transform: translate(-50%, -50%);
        }

        .process-tabs::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            width: var(--line-width);
            height: 2px;
            background: #f7f1eb;
            transform: translate(-50%, -50%) scaleX(var(--progress));
            transform-origin: left;
            transition: transform 0.45s ease;
        }

        .process-tab {
            width: var(--dot-size);
            height: var(--dot-size);
            border-radius: 50%;
            border: 1px solid rgba(247, 241, 235, 0.65);
            background: #f7f1eb;
            color: #2b3a1d;
            font-weight: 600;
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
            position: relative;
            z-index: 1;
        }

        .process-tab.active {
            background: #f7f1eb;
            color: #2b3a1d;
            box-shadow: 0 12px 24px rgba(34, 52, 21, 0.22);
        }

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

        .process-tab:focus-visible {
            outline: 2px solid rgba(34, 52, 21, 0.45);
            outline-offset: 3px;
        }

        .process-view {
            max-width: 980px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) auto minmax(0, 1fr);
            gap: 36px;
            align-items: center;
            min-height: 380px;
        }

        .process-count {
            font-size: 0.78rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(247, 241, 235, 0.7);
            margin-bottom: 12px;
        }

        .process-text h3 {
            margin: 0 0 12px;
            font-size: 1.6rem;
        }

        .process-text p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(247, 241, 235, 0.7);
        }

        .process-text,
        .process-media {
            will-change: transform, opacity;
        }

        .process-media {
            background: #f2e7d6;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 18px 36px rgba(34, 52, 21, 0.12);
        }

        .process-media img {
            width: 100%;
            display: block;
            border-radius: 16px;
        }

        /* Static steps fallback */
        .static-steps {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            max-width: 960px;
            margin: 0 auto;
            position: relative;
        }

        .static-step {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 28px;
            align-items: center;
        }

        .static-media {
            background: #f2e7d6;
            border-radius: 18px;
            padding: 18px;
            box-shadow: 0 18px 36px rgba(34, 52, 21, 0.12);
        }

        .static-media img {
            width: 100%;
            display: block;
            border-radius: 12px;
        }

        .static-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .static-dot {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f7f1eb;
            color: #2b3a1d;
            display: grid;
            place-items: center;
            font-weight: 600;
            box-shadow: 0 12px 24px rgba(34, 52, 21, 0.18);
        }

        .static-line {
            /* top, left, height set by JS — spans from current dot to next dot */
            position: absolute;
            width: 2px;
            background: rgba(247, 241, 235, 0.18);
        }

        .static-line::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            background: #f7f1eb;
            height: calc(var(--line-progress, 0) * 100%);
        }

        .static-text h3 {
            margin: 0 0 8px;
        }

        .static-text p {
            margin: 0;
            color: rgba(247, 241, 235, 0.78);
        }

        .static-count {
            font-size: 0.78rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(247, 241, 235, 0.65);
            margin-bottom: 6px;
        }

        @media (prefers-reduced-motion: reduce) {
            .static-line::after {
                height: 100%;
            }
        }

        /* Vertical step indicator between media and text */
        .process-tabs {
            --dot-size: 36px;
            --dot-gap: 26px;
            display: none;
        }

        .features-orbit {
            position: relative;
            display: grid;
            place-items: center;
            min-height: 420px;
            margin: 0 auto;
            max-width: 680px;
        }
        
        .features-center {
            width: min(360px, 70vw);
            border-radius: 26px;
            box-shadow: 0 24px 60px rgba(34, 52, 21, 0.18);
        }
        
        .feature-petal {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            width: 140px;
            text-align: center;
            font-weight: 400;
            color: var(--ink);
        }
        
        .feature-petal img {
            width: 56px;
            height: 56px;
        }
        
        .feature-petal span {
            font-size: 16px;
        }
        
        .petal-top-left {
            top: 6%;
            left: 4%;
        }
        
        .petal-top-right {
            top: 6%;
            right: 4%;
        }
        
        .petal-bottom-left {
            bottom: 6%;
            left: 6%;
        }
        
        .petal-bottom-right {
            bottom: 6%;
            right: 6%;
        }
        
        .hero-media {
            position: relative;
            min-height: 420px;
        }
        
        .hero-device {
            width: 100%;
            max-width: 420px;
            margin: 0 auto;
            display: block;
            filter: drop-shadow(0 20px 40px rgba(34, 52, 21, 0.22));
        }
        
        .floating-card {
            position: absolute;
            background: #ffffff;
            border-radius: 16px;
            padding: 14px 16px;
            box-shadow: 0 16px 40px rgba(34, 52, 21, 0.18);
            border: 1px solid rgba(34, 52, 21, 0.08);
            width: 190px;
        }
        
        .floating-card small {
            color: #7a6f66;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .floating-card strong {
            display: block;
            font-size: 1rem;
        }
        
        .float-a {
            top: 30px;
            left: 0;
            animation: float 6s ease-in-out infinite;
        }
        
        .float-b {
            bottom: 40px;
            right: 10%;
            animation: float 7s ease-in-out infinite reverse;
        }
        
        .hero-shape {
            position: absolute;
            border-radius: 999px;
            opacity: 0.6;
            filter: blur(0);
            animation: drift 16s linear infinite;
        }
        
        .shape-a {
            width: 220px;
            height: 220px;
            background: rgba(211, 186, 136, 0.25);
            top: -70px;
            right: 20%;
        }
        
        .shape-b {
            width: 140px;
            height: 140px;
            background: rgba(159, 180, 163, 0.22);
            bottom: 20px;
            left: 10%;
            animation-delay: -4s;
        }
        
        .section-title {
            font-size: 56px;
            line-height: 64px;
            margin-bottom: 2rem;
        }
        
        .section-subtitle {
            color: #5a524a;
            max-width: 640px;
        }
        
        .feature-card {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 24px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(34, 52, 21, 0.14);
        }
        
        .feature-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: var(--ink);
            display: grid;
            place-items: center;
            margin-bottom: 16px;
        }
        
        .marquee-section {
            background: var(--ink);
            color: #f7f1eb;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .marquee-track {
            display: flex;
            gap: 32px;
            white-space: nowrap;
            animation: marquee 18s linear infinite;
            padding: 14px 0;
            align-items: center;
        }

        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #f7f1eb;
        }

        .marquee-icon {
            height: 18px;
            width: 18px;
            display: block;
            filter: brightness(0) invert(1);
            object-fit: cover;
            object-position: left center;
        }
        
        .process-card {
            border-radius: 18px;
            border: 1px solid var(--border);
            padding: 24px;
            background: rgba(255, 255, 255, 0.85);
        }
        
        .process-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--ink);
            color: #ffffff;
            display: grid;
            place-items: center;
            font-weight: 700;
            margin-bottom: 16px;
        }
        
        .theme-section {
            background: var(--soft);
        }

        .theme-section.theme-series {
            padding: 84px 0;
        }

        .theme-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 44px;
            flex-wrap: wrap;
        }

        .theme-header .section-title {
            max-width: 520px;
        }

        .theme-series-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 44px 64px;
        }

        .theme-series-card {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .theme-series-card.hover-lift:hover {
            box-shadow: none;
        }

        .theme-series-card.hover-lift:hover .theme-series-media {
            box-shadow: 0 18px 36px rgba(34, 52, 21, 0.12);
            transform: translateY(-2px);
        }

        .theme-series-media {
            background: #efe6d7;
            border-radius: 22px;
            padding: 22px 26px;
            min-height: 230px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .theme-series-media img {
            width: 100%;
            max-width: 340px;
            height: auto;
            object-fit: contain;
        }

        .theme-series-body {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .theme-series-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .theme-series-meta {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .theme-series-title {
            margin: 0;
        }

        .theme-series-price {
            font-family: "Instrument Serif", serif;
            font-size: 22px;
            line-height: 28px;
            font-weight: 400;
            letter-spacing: 0;
            color: #6b6258;
        }

        .theme-series-link {
            width: 100%;
            justify-content: center;
        }

        .btn-theme-ghost {
            /* border: 1px solid var(--border); */
            color: var(--ink);
            background: var(--surface);
            background: rgba(211, 186, 136, 0.2);
            border-radius: 10px;
            padding: 12px 18px;
            font-size: 16px;
            line-height: 24px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            font-family: "Plus Jakarta Sans", sans-serif;
        }

        .btn-theme-ghost::before {
            content: "";
            width: 15px;
            height: 15px;
            display: inline-block;
            background: url("/landing-new/images/play-icon.png") center / contain no-repeat;
        }

        .btn-theme-ghost:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(34, 52, 21, 0.12);
        }

        .btn-theme-ghost.is-disabled {
            opacity: 0.55;
            pointer-events: none;
            gap: 0;
        }

        .btn-theme-ghost.is-disabled::before {
            content: "";
            display: none;
            width: 0;
            height: 0;
            background: none;
        }

        .theme-series-palette {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 6px;
            margin-left: auto;
        }

        .theme-dots {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            width: calc(5 * 18px + 4 * 6px);
            justify-content: flex-end;
            align-content: flex-start;
        }

        .theme-dot {
            width: 18px;
            height: 18px;
            border-radius: 999px;
            border: 1px solid rgba(34, 52, 21, 0.18);
            background: linear-gradient(135deg, var(--dot, #2f4a32) 0 50%, var(--dot2, var(--dot, #2f4a32)) 50% 100%);
            padding: 0;
            cursor: pointer;
        }

        .theme-dot.active {
            box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--ink);
        }

        .theme-dot:focus-visible {
            outline: 2px solid var(--ink);
            outline-offset: 2px;
        }

        .theme-dot-label {
            font-size: 0.7rem;
            letter-spacing: 0.08em;
            text-transform: capitalize;
            color: #6b6258;
        }
        
        .theme-group + .theme-group {
            margin-top: 32px;
        }
        
        .theme-card {
            border-radius: 18px;
            border: 1px solid var(--border);
            background: #ffffff;
            overflow: hidden;
            height: 100%;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        
        .theme-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(34, 52, 21, 0.16);
        }
        
        .theme-thumb {
            min-height: 180px;
            background-color: #f4efe7;
            background-size: cover;
            background-position: center;
        }
        
        .theme-body {
            padding: 16px 18px 20px;
        }
        
        .theme-links a {
            font-size: 0.9rem;
            text-decoration: none;
            color: #3a312b;
        }
        
        .theme-links a:hover {
            color: #000000;
        }
        
        .theme-links .btn {
            font-size: 16px;
            padding: 6px 12px;
        }
        
        .tab-pill {
            border-radius: 999px;
            border: 1px solid var(--border);
            color: var(--ink);
            padding: 8px 18px;
            background: transparent;
            font-weight: 400;
        }
        
        .tab-pill.active {
            background: var(--ink);
            color: #ffffff;
        }
        
        .coming-soon-card {
            border-radius: 24px;
            border: 1px dashed rgba(34, 52, 21, 0.25);
            padding: 40px;
            text-align: center;
            background: rgba(255, 255, 255, 0.8);
        }
        
        .orbit {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 1px solid rgba(34, 52, 21, 0.2);
            margin: 0 auto 20px;
            position: relative;
        }
        
        .orbit-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--accent-dark);
            position: absolute;
            top: -6px;
            left: calc(50% - 6px);
            animation: orbit 6s linear infinite;
        }
        
        .cta-section {
            background:
            url('../images/bg_mulai_sekarang_v2.webp') center/cover no-repeat;
            background-attachment: fixed;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .cta-hero {
            padding: 170px 0;
            position: relative;
        }
        
        .cta-card {
            border-radius: 26px;
            border: 1px solid rgba(34, 52, 21, 0.16);
            padding: 90px 45px;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 24px 60px rgba(34, 52, 21, 0.18);
        }

        .cta-card-centered {
            max-width: 680px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        
        .footer {
            background: #223415;
            color: #eae2da;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .footer a {
            color: inherit;
            text-decoration: none;
        }

        .footer-modern {
            padding: 64px 0 40px;
        }

        .footer-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-bottom: 36px;
            margin-bottom: 0;
        }

        .footer-hash {
            font-family: "Instrument Serif", serif;
            /* font-size: clamp(1.6rem, 2.2vw, 2.2rem); */
            color: #f7f1eb;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0;
            position: relative;
        }

        .footer-grid::before,
        .footer-grid::after {
            content: '';
            position: absolute;
            left: calc(50% - 50vw);
            right: calc(50% - 50vw);
            border-top: 1px dashed #7F6C4A;
        }

        .footer-grid::before {
            top: 0;
        }

        .footer-grid::after {
            bottom: 0;
        }

        .footer-grid-6 {
            --footer-edge: clamp(12px, 2.2vw, 0px);
            grid-template-columns: var(--footer-edge) 1fr 1fr 1fr 1fr var(--footer-edge);
        }

        .footer-col {
            padding: 30px 30px 30px;
            min-height: 265px;
        }

        .footer-col-empty {
            padding: 0;
            min-height: 265px;
        }

        .footer-grid-6 > .footer-col-empty:first-child {
            border-right: 1px dashed #7F6C4A;
        }

        .footer-grid-6 > .footer-col-empty:last-child {
            border-left: 1px dashed #7F6C4A;
        }

        .footer-brand {
            display: flex;
            align-items: flex-start;
        }

        .footer-brand-logo {
            height: 28px;
            width: auto;
            /* filter: brightness(0) invert(1); */
        }

        .footer-meta-title {
            font-size: 16px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 1);
            margin-bottom: 12px;
            font-weight: 400;
        }

        .footer-text {
            font-size: 0.8rem;
            line-height: 1.6;
            /* color: rgba(234, 226, 218, 0.88); */
            color: rgba(255, 255, 255, 1);
        }

        .footer-links a {
            display: block;
            margin-bottom: 6px;
            /* color: rgba(234, 226, 218, 0.85); */
            color: rgba(255, 255, 255, 1);
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-social-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            margin-bottom: 14px;
        }

        .footer-social-links a:last-child {
            margin-bottom: 0;
        }

        .footer-social-icon {
            width: 16px;
            height: 16px;
            filter: brightness(0) invert(1);
            opacity: 0.85;
        }

        .footer-bottom {
            margin-top: 18px;
            font-size: 0.75rem;
            color: rgba(234, 226, 218, 0.6);
        }
        
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: opacity, transform;
        }
        
        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Keep feature cards visible even if reveal JS is interrupted */
        .features-section .reveal {
            opacity: 1 !important;
            transform: none !important;
        }


        .reveal.logo-reveal {
            transform: translateY(16px) scale(0.96);
        }

        .reveal.logo-reveal.is-visible {
            transform: translateY(0) scale(1);
        }
        
        .hero-fade {
            opacity: 0;
            animation: heroFadeIn 0.9s ease-out forwards;
            animation-delay: var(--delay, 0s);
        }

        .page-load {
            opacity: 0;
            transform: translateY(18px);
            animation: loadIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: var(--delay, 0s);
        }
        
        .btn-raise {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .btn-raise:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(34, 52, 21, 0.18);
        }

        .hover-lift {
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            will-change: transform, box-shadow;
        }

        .hover-lift:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 36px rgba(34, 52, 21, 0.12);
        }
        
        .about-section {
            background: var(--paper);
            border-top: none;
            padding: 2rem 0 2.6rem;
        }
        
        .about-label {
            text-transform: uppercase;
            letter-spacing: 0;
            font-size: 16px;
            line-height: 24px;
            color: #5b5f4f;
            font-weight: 500;
            margin-bottom: 16px !important;
        }

        .about-section .about-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .about-section .about-label::before {
            content: "•";
            font-size: 0.9rem;
            color: var(--ink);
            display: inline-block;
            transform: translateY(-1px);
        }

        .about-section .section-subtitle {
            font-family: "Instrument Serif", serif;
            font-size: 36px;
            line-height: 48px;
            letter-spacing: 0;
            color: #4d5a3f;
            max-width: 640px;
        }
        
        .about-card {
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px;
            background: #ffffff;
        }
        
        .about-media img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 18px 40px rgba(34, 52, 21, 0.18);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
        }
        
        .stats-simple {
            border-top: none;
            padding-top: 24px;
            margin-top: 24px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0;
        }
        
        .stat-card {
            border: 1px solid var(--border);
            /* border-radius: 16px; */
            padding: 16px;
            text-align: center;
            background: #ffffff;
        }
        
        .stat-card-plain {
            border: none;
            background: transparent;
            padding: 12px 16px;
        }

        .stats-simple .stat-card-plain:not(:last-child) {
            border-right: 1px solid rgba(34, 52, 21, 0.18);
        }
        
        .stat-number {
            font-size: clamp(2.5rem, 5.4vw, 3.7rem);
            font-family: "Instrument Serif", serif;
            display: inline-flex;
            align-items: baseline;
            gap: 4px;
            color: var(--ink);
        }
        
        .stat-number .stat-suffix {
            font-size: 1.2rem;
            color: #6c5f55;
        }
        
        .stat-label {
            font-size: 0.82rem;
            color: #5a524a;
        }
        
        .packages-section {
            background: var(--soft);
        }

        .packages-section.packages-dark {
            background: #223415;
            padding: 84px 0 96px;
            color: #f7f1eb;
        }

        .packages-header {
            max-width: 760px;
            margin: 0 auto 48px;
        }

        .packages-section.packages-dark .about-label {
            color: rgba(247, 241, 235, 0.7);
        }

        .packages-section.packages-dark .section-title {
            color: #f7f1eb;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 28px;
            align-items: start;
        }

        .package-card {
            border-radius: 26px;
            padding: 26px;
        }

        .package-card.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .package-card-primary {
            background: #ffffff;
            color: var(--ink);
            box-shadow: 0 18px 50px rgba(10, 20, 8, 0.35);
        }

        .package-card-primary.hover-lift:hover {
            box-shadow: 0 26px 60px rgba(10, 20, 8, 0.42);
        }

        .package-card-outline {
            border: 1px dashed rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.02);
            color: #f7f1eb;
        }

        .package-card-outline.hover-lift:hover {
            box-shadow: 0 22px 46px rgba(10, 20, 8, 0.28);
        }

        .package-mini-label {
            font-size: 0.72rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            margin-bottom: 8px;
            color: #6f675d;
        }

        .package-card-outline .package-mini-label {
            color: rgba(247, 241, 235, 0.65);
        }

        .package-title {
            font-family: "Instrument Serif", serif;
            font-weight: 400;
            margin-bottom: 6px;
        }

        .package-price {
            margin-bottom: 18px;
            color: inherit;
            font-weight: 400;
            font-size: 20px;
            line-height: 28px;
            font-family: "Plus Jakarta Sans", sans-serif;
        }

        .package-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
        }

        .package-divider {
            border-top: 1px dashed rgba(34, 52, 21, 0.22);
            margin: 20px 0;
        }

        .package-card-outline .package-divider {
            border-top-color: rgba(255, 255, 255, 0.25);
        }

        .package-media {
            border-radius: 18px;
            overflow: hidden;
            margin: 14px 0 18px;
            background: rgba(255, 255, 255, 0.08);
            min-height: 190px; /* reserve space to avoid layout collapse */
            display: flex;
            align-items: stretch;
        }

        .package-media img {
            width: 100%;
            display: block;
            object-fit: cover;
            height: 190px;
            flex: 1 1 auto;
        }


        .package-feature-list {
            list-style: none;
            padding-left: 0;
            margin: 0 0 12px;
            display: grid;
            gap: 8px;
        }

        .package-feature-list li {
            position: relative;
            padding-left: 18px;
            font-size: 16px;
            line-height: 1.5;
        }

        .package-feature-list li::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--ink);
            position: absolute;
            left: 0;
            top: 0.35rem;
        }

        .package-card-outline .package-feature-list li::before {
            background: #f7f1eb;
        }

        .package-subtitle {
            font-size: 0.75rem;
            text-transform: uppercase;
            /* letter-spacing: 0.12em; */
            margin: 30px 0 15px;
            color: #223415;
            font-weight: 600;
        }

        .package-card-outline .package-subtitle {
            color: rgba(247, 241, 235, 0.7);
        }

        @media (prefers-reduced-motion: reduce) {
            .package-card {
                opacity: 1;
                transform: none;
                transition: none;
            }
            .package-media,
            .feature-media-card,
            .package-media img {
                opacity: 1;
                transform: none;
                transition: none;
            }
            .feature-media-card.fitur-crop {
                max-height: none;
                transition: none;
            }
            .fitur-anim {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        .package-footnote {
            font-size: 0.7rem;
            color: rgba(247, 241, 235, 0.6);
            margin-top: 8px;
        }

        .btn-cream {
            background: #ffffff;
            color: var(--ink) !important;
            border: 1px solid #ffffff;
            font-weight: 400;
        }

        .btn-cream .btn-icon-circle {
            background: var(--ink);
            color: #ffffff;
        }

        .btn-cream:hover,
        .btn-cream:focus,
        .btn-cream:focus-visible,
        .btn-cream:active {
            background: #ffffff;
            border-color: #ffffff;
            color: var(--ink);
            box-shadow: none;
        }

        .btn-outline-cream {
            background: transparent;
            border: 1px solid rgba(247, 241, 235, 0.65);
            color: #f7f1eb;
            font-weight: 400;
        }

        .btn-outline-cream:hover,
        .btn-outline-cream:focus,
        .btn-outline-cream:focus-visible,
        .btn-outline-cream:active {
            background: #f7f1eb;
            color: var(--ink);
            border-color: #f7f1eb;
            box-shadow: none;
        }
        
        .testimonials-section {
            background: var(--paper);
            padding: 84px 0 96px;
        }

        .testimonial-carousel {
            padding-bottom: 36px;
            padding-top: 36px;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
        }

        .testimonial-card-alt {
            background: #f2e9d8;
            border-radius: 16px;
            padding: 18px 18px 16px;
            color: #3f372f;
            min-height: 240px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .testimonial-card-alt.hover-lift:hover {
            background: #efe3cf;
        }

        .testimonial-card-alt p {
            margin: 0;
            font-weight: 400;
            font-size: 20px;
            line-height: 28px;
            font-family: "Plus Jakarta Sans", sans-serif;
        }

        .testimonial-stars {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .testimonial-stars img {
            width: 30px;
            height: 30px;
            display: block;
        }

        .testimonial-stars .star-empty {
            opacity: 0.25;
            filter: grayscale(100%);
        }

        .testimonial-divider {
            border-top: 1px dashed rgba(34, 52, 21, 0.18);
            margin-top: auto;
            padding-top: 12px;
        }

        .testimonial-footer {
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .testimonial-name {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-weight: 400;
            font-size: 20px;
            line-height: 28px;
        }

        .testimonial-role {
            font-size: 0.68rem;
            color: rgba(63, 55, 47, 0.7);
        }

        .testimonial-indicators {
            position: static;
            margin-top: 18px;
            gap: 8px;
        }

        .testimonial-indicators [data-bs-target] {
            width: 36px;
            height: 4px;
            border-radius: 999px;
            background-color: rgba(34, 52, 21, 0.25);
            border: none;
        }

        .testimonial-indicators .active {
            background-color: var(--ink);
        }

        .testimonial-grid-all {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
        }

        .testimonial-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-section {
            background: var(--paper);
            padding: 90px 0;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
            gap: 48px;
            align-items: start;
        }

        .faq-intro .section-title {
            max-width: 280px;
            /* margin-bottom: 16px; */
        }

        .faq-accordion .accordion-item {
            border: 1px dashed rgba(34, 52, 21, 0.22);
            border-radius: 28px;
            background: transparent;
            margin-bottom: 14px;
            overflow: hidden;
        }

        .faq-accordion .accordion-item.hover-lift:hover {
            border-color: rgba(34, 52, 21, 0.35);
            box-shadow: 0 18px 36px rgba(34, 52, 21, 0.08);
        }

        .faq-accordion .accordion-button {
            background: transparent;
            border: none;
            border-radius: 28px;
            padding: 18px 24px;
            font-weight: 400;
            font-size: 20px;
            line-height: 28px;
            font-family: "Plus Jakarta Sans", sans-serif;
            color: #4a3a2b;
            box-shadow: none;
            display: flex;
            align-items: center;
        }

        .faq-accordion .accordion-button:focus {
            box-shadow: none;
        }

        .faq-accordion .accordion-button::after {
            background-image: none;
            content: "+";
            font-size: 1.3rem;
            color: #6b5a4b;
            transform: none;
            margin-left: auto;
            width: auto;
            height: auto;
            line-height: 1;
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            color: var(--ink);
            background: transparent;
        }

        .faq-accordion .accordion-button:not(.collapsed)::after {
            content: "×";
            font-size: 1.1rem;
        }

        .faq-accordion .accordion-body {
            padding: 0 24px 18px;
            color: #6b6258;
        }
        
        .follow-section {
            background: var(--paper);
            padding: 84px 0;
        }

        .follow-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .instagram-embed {
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            background: #ffffff;
            position: relative;
            padding: 12px;
        }

        .instagram-embed iframe {
            width: 100%;
            height: 550px;
            border: 0;
            border-radius: 14px;
            background: #ffffff;
        }

        .instagram-fallback {
            position: absolute;
            right: 24px;
            bottom: 24px;
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 6px 12px;
            font-size: 0.75rem;
            font-weight: 400;
            color: var(--ink);
            text-decoration: none;
        }
        
        .social-pill {
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid var(--border);
            text-decoration: none;
            color: var(--ink);
            font-weight: 400;
            background: #ffffff;
        }
        
        @keyframes loadIn {
            0% { opacity: 0; transform: translateY(18px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes heroFadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        @keyframes heroRollIn {
            0% { opacity: 0; transform: translateY(40px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-14px); }
        }
        
        @keyframes drift {
            0% { transform: translateX(0) translateY(0); }
            50% { transform: translateX(12px) translateY(10px); }
            100% { transform: translateX(0) translateY(0); }
        }

        @keyframes partnerMarquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        @keyframes orbit {
            0% { transform: rotate(0deg) translateX(55px) rotate(0deg); }
            100% { transform: rotate(360deg) translateX(55px) rotate(-360deg); }
        }

        @keyframes navDrop {
            0% { opacity: 0; transform: translateY(-12px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        .tb_onsite_upload_btn {
            display: none !important;
        }
        
        @media (max-width: 991px) {
            /* Mobile typography overrides */
            h2 { font-size: 36px; line-height: 48px; }
            h3 { font-size: 28px; line-height: 32px; }
            h4 { font-size: 22px; line-height: 28px; }
            .hero-title { font-size: 36px; line-height: 48px; }
            .section-title { font-size: 36px; line-height: 48px; margin-bottom: 0; }
            .about-label { font-size: 14px; line-height: 20px; }
            .faq-intro .about-label { margin-bottom: 0px !important; }
            .hero-kicker { font-size: 14px; line-height: 20px; }
            .steps-section.treatment-process .steps-kicker { font-size: 14px; line-height: 20px; }
            /* .theme-series-title { font-size: 22px; line-height: 28px; } */
            /* .static-text h3 { font-size: 22px; line-height: 28px; } */
            /* .package-title { font-size: 28px; line-height: 32px; } */
            .testimonial-carousel { padding-top: 18px }
            .package-price {font-size:18px; line-height: 24px}
            .testimonial-card-alt p {font-size:18px; line-height: 24px}
            .testimonial-name {font-size:18px; line-height: 24px}
            .faq-accordion .accordion-button {font-size:18px; line-height: 24px}

            .footer-cta {
                margin-bottom: 15px;
            }

            .testimonials-section {
                padding: 4rem 0 2.6rem;

            }
            .hero-photo {
                aspect-ratio: 10 / 18;
            }
            .hero-collage {
                gap: 5px;
            }
            .about-section .section-subtitle {
                font-size: 28px;
                line-height: 32px;
            }
            .stats-simple .stat-card-plain:not(:last-child) {
                border-right: none;
            }
            .stats-simple .stat-card-plain {
                text-align: left;
                padding-left: 0;
            }
            .stats-simple {
                border-top: none;
            }
            .stat-number {
                font-size: clamp(2rem, 8vw, 3rem);
            }
            .hero {
                padding: 4.5rem 0 3rem;
            }

            .site-header .navbar {
                border-radius: 22px;
            }

            .navbar-toggler-icon {
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28247%2C241%2C235%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
                width: 24px;
                height: 24px;
            }

            .navbar-collapse {
                margin-top: 20px;
            }


            .navbar-brand .brand-logo-desktop {
                display: none;
            }

            .navbar-brand .brand-logo-mobile {
                display: inline-block;
            }

            .nav-lang.d-lg-none {
                margin-right: 8px;
            }

            .nav-actions {
                width: 100%;
                justify-content: flex-start;
                margin-bottom: 20px;
                margin-top: 18px;
            }
            
            .hero-collage {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            
            .hero-collage-wide {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hero-photo.hero-crop {
                max-height: 110px;
                transition: max-height 3.5s ease-out, transform 3.5s ease-out, opacity 3.5s ease-out;
            }

            .hero-photo.hero-pos-1 img,
            .hero-photo.hero-pos-2 img,
            .hero-photo.hero-pos-center img {
                transform: scale(1.06);
            }

            .hero-photo.hero-pos-1:hover img,
            .hero-photo.hero-pos-2:hover img,
            .hero-photo.hero-pos-center:hover img {
                transform: scale(1.13);
            }

            .hero-collage.is-revealed .hero-photo.hero-crop {
                max-height: 620px;
            }

            .stats-simple {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .stats-simple .stat-card-plain {
                border-right: none;
                /* border-bottom: 1px solid var(--border); */
                border-bottom: none;
            }

            .stats-simple .stat-card-plain:nth-child(3),
            .stats-simple .stat-card-plain:nth-child(4) {
                border-bottom: none;
            }

            .partner-marquee {
                --logo-width: 120px;
            }

            .cta-section {
                background-attachment: scroll;
            }

            .features-section {
                padding: 3rem 0 3.5rem;
            }

            .features-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                margin-bottom: 28px;
            }

            .features-header .btn {
                align-self: flex-start;
            }

            .theme-header,
            .faq-intro,
            .follow-header,
            .footer-cta {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .features-header > .btn,
            .theme-header > .btn,
            .faq-intro > .btn,
            .follow-header > .btn,
            .footer-cta > .btn {
                margin-top: 0;
            }

            .steps-section .section-title,
            .testimonials-section .section-title,
            .packages-section .section-title {
                text-align: left;
            }

            .steps-section .about-label,
            .testimonials-section .about-label,
            .packages-section .about-label {
                text-align: left;
                justify-content: flex-start;
            }

            .testimonials-section .text-center,
            .packages-section .text-center {
                text-align: left !important;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            /* On single-column layout, slide-left/right become fade-up for cleaner feel */
            .fitur-slide-left,
            .fitur-slide-right {
                transform: translateY(28px);
            }

            /* Adjust crop reveal height for mobile card width */
            .feature-media-card.fitur-crop {
                max-height: 90px;
            }

            .features-section.is-revealed .feature-media-card.fitur-crop {
                max-height: 1200px;
            }

            .feature-tile {
                flex: none;
            }

            .feature-media-card {
                padding: 18px;
            }

            .feature-tile {
                padding: 20px;
            }

            .process-view {
                grid-template-columns: 1fr;
                row-gap: 20px;
            }

            .process-tabs {
                --line-width: calc((var(--dot-size) * 3) + (var(--dot-gap) * 2));
                flex-direction: row;
                gap: var(--dot-gap);
                height: auto;
                min-height: 0;
                padding: 14px 0;
                justify-content: center;
            }

            .process-tabs::before {
                width: var(--line-width);
                height: 1px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            .process-tabs::after {
                width: var(--line-width);
                height: 2px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) scaleX(var(--progress));
                transform-origin: left center;
            }

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

            .steps-list {
                padding-left: 36px;
            }

            .steps-list::before {
                left: 12px;
            }

            .theme-series-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .theme-series-palette {
                align-items: flex-start;
            }

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

            .cta-hero {
                padding: 160px 0;
            }

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

            .follow-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-cta {
                flex-direction: column;
                align-items: flex-start;
                padding: 0 22px;
            }

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

            .footer-grid::before,
            .footer-grid::after {
                display: none;
            }

            .footer-grid-6 > .footer-col-empty:first-child,
            .footer-grid-6 > .footer-col-empty:last-child {
                border: none;
            }

            .footer-col {
                border-right: none;
                border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
            }

            /* Disable AOS animations on footer for mobile */
            .footer-col[data-aos] {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }

            .footer-col:nth-child(3),
            .footer-col:nth-child(4) {
                border-bottom: none;
            }

            .faq-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-col {
                min-height: 85px;
                border: none;
                border-bottom: none;
            }
            .footer-grid {
                border: none;
            }
        }
        
        @media (max-width: 575px) {
            .hero-actions {
                /* flex-direction: column; */
            }

            .nav-cta {
                padding-left: 0;
                margin-bottom: 20px;
            }

            .stats-simple {
                grid-template-columns: 1fr;
            }

            .stats-simple .stat-card-plain {
                /* border-bottom: 1px solid var(--border); */
                border-bottom: none;
            }

            .stats-simple .stat-card-plain:last-child {
                border-bottom: none;
            }

            .partner-marquee {
                --logo-width: 45vw;
            }

            .partner-track {
                gap: 24px;
            }

            .steps-section {
                padding: 4rem 0;
            }

            .step-media-card {
                padding: 18px;
            }

            .steps-list {
                padding-left: 32px;
            }

            /* Cara Kerja mobile: single column, fade-up per step */
            .static-step {
                grid-template-columns: 1fr;
                gap: 16px;
                opacity: 0;
                transform: translateY(36px);
                transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                            transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
            }

            .static-text {
                text-align: left;
            }

            .steps-section.treatment-process .steps-header {
                text-align: left;
            }

            .steps-section.treatment-process .steps-header.text-center {
                text-align: left !important;
            }

            .static-step.is-visible {
                opacity: 1;
                transform: none;
            }

            .static-indicator {
                display: none;
            }

            .static-line {
                display: none;
            }

            .static-count {
                display: block;
            }

            .theme-series-media {
                min-height: 190px;
                padding: 18px;
            }

            .theme-series-palette {
                align-items: flex-start;
            }

            .navbar-nav .nav-item a {
                padding-left: 0;
            }

            .nav-actions a {
                padding-left: 0 !important;
            }

            .btn-theme-ghost {
                width: 100%;
                justify-content: center;
                font-size: 14px;
            }

            .packages-section.packages-dark {
                padding: 70px 0 80px;
            }

            .package-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-card {
                padding: 28px;
            }

            .cta-actions {
                flex-direction: column;
                align-items: center;
            }

            .cta-actions .btn {
                width: auto;
                width: fit-content;
                max-width: 100%;
            }

            .features-section {
                padding: 2.5rem 0 4.5rem;
            }

            .features-grid {
                gap: 14px;
            }

            .feature-tile {
                padding: 18px;
            }

            .feature-media-card {
                padding: 14px;
            }

            .features-section.is-revealed .feature-media-card.fitur-crop {
                max-height: 1200px;
            }

            /* Hero crop on small phones */
            .hero-photo.hero-crop {
                max-height: 80px;
                transition: max-height 3.5s ease-out, transform 3.5s ease-out, opacity 3.5s ease-out;
            }

            .hero-collage.is-revealed .hero-photo.hero-crop {
                max-height: 480px;
            }

            .instagram-embed iframe {
                height: 420px;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

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

            /* .footer-col {
                border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
            } */

            .footer-col:last-child {
                border-bottom: none;
            }

            .footer-brand {
                padding-top: 40px;
            }

            .footer-brand-logo {
                height: 44px;
            }

            .footer-social-links a {
                margin-bottom: 18px;
            }

            .faq-section {
                padding: 70px 0;
            }

            .hero-collage {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            
            .hero-collage-wide {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            
            .hero-photo.photo-1,
            .hero-photo.photo-2,
            .hero-photo.photo-3 {
                transform: translateY(0);
            }
            
            .marquee-track {
                gap: 24px;
                font-size: 0.8rem;
            }
            
            .cta-card {
                padding: 48px 24px;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            .float-a,
            .float-b,
            .hero-shape,
            .hero-photo.hero-roll,
            .partner-track,
            .marquee-track,
            .orbit-dot {
                animation: none;
            }

            .nav-load {
                animation: none;
                opacity: 1;
                transform: none;
            }
            
            .page-load {
                animation: none;
                opacity: 1;
                transform: none;
            }

            .hero-fade {
                animation: none;
                opacity: 1;
            }
            
            .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .process-view {
                transition: none;
                opacity: 1;
                transform: none;
            }
        }
        
