:root {
    --bg: #050505;
    --bg-soft: #0d0d0d;
    --card: #101010;
    --text: #f7f7f7;
    --muted: #8f8f8f;
    --muted-strong: #c7c7c7;
    --line: rgba(255,255,255,.12);
    --line-strong: rgba(255,255,255,.24);
    --shadow: 0 24px 80px rgba(0,0,0,.28);
}

html[data-theme="light"] {
    --bg: #ffffff;
    --bg-soft: #f5f5f5;
    --card: #ffffff;
    --text: #070707;
    --muted: #6a6a6a;
    --muted-strong: #333333;
    --line: rgba(0,0,0,.12);
    --line-strong: rgba(0,0,0,.22);
    --shadow: 0 24px 70px rgba(0,0,0,.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--cms-font, "Inter", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif);
    letter-spacing: -0.015em;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
}

main {
    min-height: 70vh;
}

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, 100%);
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 22px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 22px 22px;
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

html[data-theme="light"] .site-header {
    background: rgba(255,255,255,.9);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-block;
    border: 2px solid var(--text);
    border-radius: 14px;
    background: var(--bg);
}

.brand-mark .face {
    position: absolute;
    left: 10px;
    top: 13px;
    width: 17px;
    height: 17px;
    border: 2px solid var(--text);
    border-radius: 50%;
}

.brand-mark .cap {
    position: absolute;
    left: 9px;
    top: 8px;
    width: 20px;
    height: 9px;
    border: 2px solid var(--text);
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.brand-mark .cup {
    position: absolute;
    right: 6px;
    bottom: 8px;
    width: 13px;
    height: 10px;
    border: 2px solid var(--text);
    border-radius: 4px;
}

.brand-text {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.site-nav a,
.theme-toggle {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 11px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.site-nav a:hover,
.theme-toggle:hover {
    background: var(--bg-soft);
    color: var(--text);
}

.theme-toggle {
    border: 1px solid var(--line);
}

.theme-toggle-floating {
    position: fixed;
    right: max(18px, calc((100vw - 1180px) / 2 + 18px));
    bottom: 22px;
    z-index: 130;
    min-width: 74px;
    min-height: 42px;
    padding: 0 16px;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

/* Shared */
.eyebrow {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

/* Homepage */
.hero-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 168px 0 84px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .78fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
}

.hero-copy h1 {
    max-width: 760px;
    margin: 18px 0 20px;
    font-size: clamp(50px, 6.2vw, 90px);
    line-height: .94;
    letter-spacing: -0.073em;
    text-wrap: balance;
}

.hero-description {
    max-width: 560px;
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.8;
}

.hero-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--card);
    box-shadow: var(--shadow);
}

.hero-logo-preview {
    width: 100%;
    min-height: 280px;
    display: grid;
    place-items: center;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--bg-soft);
    overflow: hidden;
}

.hero-logo-preview img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    display: block;
}

.profile-doodle {
    position: relative;
    min-height: 280px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--bg-soft);
    overflow: hidden;
}

.profile-doodle .doodle-head {
    position: absolute;
    left: 50%;
    top: 95px;
    width: 118px;
    height: 118px;
    transform: translateX(-50%);
    border: 5px solid var(--text);
    border-radius: 50%;
}

.profile-doodle .doodle-cap {
    position: absolute;
    left: 50%;
    top: 84px;
    width: 170px;
    height: 48px;
    transform: translateX(-50%);
    border: 5px solid var(--text);
    border-bottom: 0;
    border-radius: 90px 90px 0 0;
}

.profile-doodle .doodle-cap::after {
    content: "";
    position: absolute;
    right: -48px;
    top: 13px;
    width: 56px;
    height: 17px;
    border: 5px solid var(--text);
    border-radius: 999px;
}

.profile-doodle .doodle-eye {
    position: absolute;
    top: 150px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--text);
}

.profile-doodle .doodle-eye.left {
    left: calc(50% - 34px);
}

.profile-doodle .doodle-eye.right {
    left: calc(50% + 26px);
}

.profile-doodle .doodle-mouth {
    position: absolute;
    left: 50%;
    top: 174px;
    width: 46px;
    height: 24px;
    transform: translateX(-50%);
    border-bottom: 4px solid var(--text);
    border-radius: 0 0 999px 999px;
}

.profile-doodle .doodle-cup {
    position: absolute;
    right: 96px;
    bottom: 72px;
    width: 78px;
    height: 50px;
    border: 5px solid var(--text);
    border-radius: 12px;
}

.profile-doodle .doodle-cup::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 12px;
    width: 24px;
    height: 22px;
    border: 5px solid var(--text);
    border-left: 0;
    border-radius: 0 999px 999px 0;
}

.hero-card-info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

.hero-card-info strong {
    color: var(--text);
    font-size: 13px;
    text-align: right;
}

/* Sections */
.section-block,
.statement-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.section-block {
    padding: 72px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
}

.section-heading-copy {
    min-width: 0;
}

.section-heading h2 {
    max-width: 760px;
    margin: 10px 0 0;
    font-size: clamp(34px, 4.8vw, 62px);
    line-height: 1;
    letter-spacing: -0.062em;
    text-wrap: balance;
}

.section-inline-link {
    width: fit-content;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.025);
    color: var(--muted-strong);
    font-size: 12px;
    font-weight: 850;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.section-inline-link:hover {
    background: var(--bg-soft);
    border-color: var(--line-strong);
    color: var(--text);
}

.feature-grid,
.project-showcase-grid,
.cv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card,
.project-showcase-card,
.cv-card,
.contact-info-card,
.contact-form-card,
.about-summary-panel,
.notice-box {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--card);
}

.feature-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.feature-card:hover,
.project-showcase-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    background: var(--bg-soft);
}

.feature-card span {
    margin-bottom: auto;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
}

.feature-card h3 {
    margin: 34px 0 10px;
    color: var(--text);
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.feature-card p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 15px;
    line-height: 1.62;
}

.statement-section {
    padding: 86px 0 110px;
}

.statement-section p {
    max-width: 920px;
    margin: 0 auto;
    font-size: clamp(42px, 6vw, 86px);
    line-height: .98;
    letter-spacing: -0.073em;
    font-weight: 950;
    text-align: center;
}

/* Inner pages */
.inner-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 165px 0 70px;
}

.inner-hero h1 {
    max-width: 880px;
    margin: 18px 0 22px;
    font-size: clamp(46px, 6.2vw, 86px);
    line-height: .96;
    letter-spacing: -0.073em;
}

.inner-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.75;
}

/* Projects / services */
.project-showcase-card {
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.project-image {
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-image span {
    color: var(--muted);
    font-size: 48px;
    font-weight: 950;
}

.project-card-content {
    padding: 22px;
}

.project-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.project-meta-line span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.project-card-content h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 25px;
    line-height: 1.06;
    letter-spacing: -0.055em;
}

.project-card-content p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 15px;
    line-height: 1.65;
}

/* Detail pages */
.project-detail-cover {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 28px;
    margin-bottom: 34px;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
}

.project-content {
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.85;
}

/* About */
.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 46px;
    align-items: center;
}

.about-photo-card {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: var(--bg-soft);
    overflow: hidden;
}

.about-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo-card span {
    color: var(--muted);
    font-size: 82px;
    font-weight: 950;
}

.about-summary-panel {
    padding: 30px;
    margin-bottom: 24px;
}

.about-summary-panel h2 {
    margin: 12px 0 16px;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.about-summary-panel p:not(.eyebrow) {
    color: var(--muted-strong);
    line-height: 1.8;
}

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

.cv-card {
    padding: 26px;
}

.cv-card.wide {
    grid-column: 1 / -1;
}

.cv-card ul {
    margin: 14px 0 0;
    padding-left: 20px;
    color: var(--muted-strong);
    line-height: 1.75;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.contact-info-card,
.contact-form-card {
    padding: 28px;
}

.contact-info-card h2 {
    margin: 14px 0;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.055em;
}

.contact-info-card p {
    color: var(--muted-strong);
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: none;
    background: var(--bg);
    color: var(--text);
    font: inherit;
}

.contact-form textarea {
    min-height: 150px;
    padding-top: 14px;
    resize: vertical;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.notice-box {
    padding: 18px;
    color: var(--muted-strong);
}

/* Ads */
.global-ad {
    width: min(1180px, calc(100% - 32px));
    margin: 20px auto;
}

.global-ad-top {
    margin-top: 104px;
    margin-bottom: -62px;
}

.frontend-ad {
    display: block;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background: var(--card);
}

.frontend-ad-image img {
    display: block;
    width: 100%;
}

.frontend-ad-html {
    min-height: 90px;
    display: grid;
    place-items: center;
    padding: 18px;
    color: var(--muted);
}


/* Footer */
.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 38px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.site-footer strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.site-footer p {
    margin: 0;
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.footer-links a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 800;
}

.footer-links a:hover {
    background: var(--bg-soft);
    color: var(--text);
}

/* Responsive */
@media (max-width: 1040px) {
    .site-nav {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: var(--bg);
        box-shadow: var(--shadow);
    }

    .site-nav.active {
        display: flex;
    }

    .site-nav a,
    .site-nav .theme-toggle {
        justify-content: flex-start;
        width: 100%;
    }

    .theme-toggle-floating {
        right: 16px;
        bottom: 16px;
        min-width: 78px;
        min-height: 44px;
        justify-content: center;
        width: auto;
    }

    .nav-toggle {
        display: block;
    }

    .hero-grid,
    .about-hero-grid,
    .contact-grid,
    .project-detail-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 720px) {
    .site-header {
        top: 0;
        width: 100%;
        min-height: 68px;
        padding: 12px 16px;
        border-left: 0;
        border-right: 0;
        border-radius: 0 0 18px 18px;
    }

    .hero-section,
    .inner-hero {
        padding-top: 124px;
    }

    .hero-copy h1,
    .inner-hero h1 {
        font-size: clamp(42px, 13vw, 64px);
        letter-spacing: -0.065em;
    }

    .hero-actions {
        display: grid;
    }

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

    .feature-grid,
    .project-showcase-grid,
    .cv-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 18px;
        border-radius: 24px;
    }

    .hero-logo-preview {
        min-height: 220px;
        padding: 16px;
    }

    .profile-doodle {
        min-height: 250px;
    }

    .statement-section p {
        font-size: clamp(40px, 13vw, 62px);
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

.music-list {
    display: grid;
    gap: 18px;
}

.music-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--card);
}

.music-cover {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: var(--bg-soft);
    overflow: hidden;
}

.music-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-cover span {
    font-size: 64px;
    color: var(--muted);
}

.music-body h2 {
    margin: 12px 0 8px;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.music-body p:not(.eyebrow) {
    color: var(--muted-strong);
}

.music-body audio {
    width: 100%;
    margin: 16px 0;
}

.spectrum-bars {
    height: 48px;
    display: flex;
    align-items: end;
    gap: 4px;
    margin-bottom: 18px;
}

.spectrum-bars span {
    width: 100%;
    height: calc(12px + (var(--i) % 9) * 4px);
    border-radius: 999px;
    background: var(--text);
    opacity: .18;
    animation: trSpectrum 1.2s ease-in-out infinite alternate;
    animation-delay: calc(var(--i) * .035s);
}

@keyframes trSpectrum {
    from { transform: scaleY(.45); opacity: .14; }
    to { transform: scaleY(1); opacity: .42; }
}

.store-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, .75fr);
    gap: 22px;
    align-items: start;
}

.store-product-card {
    border: 1px solid var(--line);
    border-radius: 26px;
    overflow: hidden;
    background: var(--card);
}

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

.testimonial-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--card);
}

.testimonial-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--bg-soft);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar span {
    font-size: 22px;
    font-weight: 950;
}

.testimonial-card h2 {
    margin: 0 0 4px;
    font-size: 20px;
    letter-spacing: -0.05em;
}

.testimonial-card p {
    color: var(--muted-strong);
    line-height: 1.7;
}

.rating-line {
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.testimonial-contact {
    display: block;
    margin-top: 16px;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 980px) {
    .music-card,
    .store-detail-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .music-cover {
        max-width: 260px;
    }
}

/* =========================================================
   Testimoni Hovercard Page
========================================================= */

.testimoni-hero {
    padding-bottom: 54px;
}

.testimoni-section {
    padding-top: 24px;
}

.testimoni-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 28px;
}

.testimoni-toolbar h2 {
    margin: 10px 0 0;
    font-size: clamp(28px, 3.4vw, 46px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.testimoni-toolbar > span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

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

.testimoni-hover-card {
    position: relative;
    isolation: isolate;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--card) 92%, var(--text) 8%), var(--card));
    overflow: hidden;
    box-shadow: none;
    transform: translateY(0);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.testimoni-hover-card:hover {
    transform: translateY(-8px);
    border-color: var(--line-strong);
    box-shadow: 0 26px 80px rgba(0,0,0,.22);
}

html[data-theme="light"] .testimoni-hover-card:hover {
    box-shadow: 0 26px 80px rgba(0,0,0,.10);
}

.testimoni-card-glow {
    position: absolute;
    inset: auto -30% -45% -30%;
    z-index: -1;
    height: 190px;
    background: radial-gradient(circle, rgba(255, 214, 10, .18), transparent 68%);
    opacity: 0;
    transition: opacity .22s ease;
}

.testimoni-hover-card:hover .testimoni-card-glow {
    opacity: 1;
}

.testimoni-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.testimoni-avatar {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--bg-soft);
    overflow: hidden;
}

.testimoni-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimoni-avatar span {
    color: var(--text);
    font-size: 23px;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.testimoni-person {
    min-width: 0;
}

.testimoni-person h2 {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 22px;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.testimoni-person p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
}

.testimoni-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1;
    letter-spacing: .02em;
}

.testimoni-rating span {
    color: color-mix(in srgb, var(--muted) 42%, transparent);
    text-shadow: none;
}

.testimoni-rating span.filled {
    color: #ffd60a;
    text-shadow:
        0 0 12px rgba(255, 214, 10, .28),
        0 0 26px rgba(255, 214, 10, .16);
}

.testimoni-hover-card blockquote {
    margin: 0;
    color: var(--muted-strong);
    font-size: 16px;
    line-height: 1.75;
}

.testimoni-contact {
    margin-top: auto;
    padding-top: 22px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
    word-break: break-word;
}

.testimoni-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.page-control,
.page-number {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--card);
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 900;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.page-control {
    min-width: 94px;
}

.page-control:hover,
.page-number:hover,
.page-number.active {
    transform: translateY(-2px);
    border-color: var(--text);
    background: var(--text);
    color: var(--bg);
}

.page-control.disabled {
    opacity: .38;
    pointer-events: none;
}

@media (max-width: 1060px) {
    .testimoni-hover-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .testimoni-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .testimoni-hover-grid {
        grid-template-columns: 1fr;
    }

    .testimoni-hover-card {
        min-height: 300px;
        padding: 22px;
        border-radius: 24px;
    }

    .testimoni-pagination {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .page-control {
        min-width: calc(50% - 6px);
    }

    .page-numbers {
        width: 100%;
        order: 2;
        justify-content: flex-start;
    }
}

/* =========================================================
   Testimoni No-Photo Hovercard + Click Detail Modal
========================================================= */

.testimoni-click-card {
    appearance: none;
    border: 1px solid var(--line);
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.testimoni-click-card.testimoni-hover-card {
    min-height: 300px;
}

.testimoni-card-topline {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.testimoni-name-block {
    display: grid;
    gap: 7px;
}

.testimoni-name-block strong {
    color: var(--text);
    font-size: clamp(23px, 2.2vw, 32px);
    line-height: .98;
    letter-spacing: -0.06em;
}

.testimoni-name-block small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.testimoni-contact-line {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    min-height: 32px;
    align-items: center;
    margin-bottom: 18px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    background: color-mix(in srgb, var(--bg-soft) 72%, transparent);
    font-size: 12px;
    font-weight: 800;
    word-break: break-word;
}

.testimoni-quote-preview {
    position: relative;
    z-index: 2;
    display: block;
    color: var(--muted-strong);
    font-size: 16px;
    line-height: 1.75;
}

.testimoni-open-hint {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: fit-content;
    margin-top: auto;
    padding-top: 24px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.testimoni-spin-loader {
    position: absolute;
    z-index: 5;
    top: 22px;
    right: 22px;
    width: 26px;
    height: 26px;
    border: 3px solid color-mix(in srgb, var(--text) 15%, transparent);
    border-top-color: #ffd60a;
    border-radius: 50%;
    opacity: 0;
    transform: scale(.7);
    pointer-events: none;
}

.testimoni-click-card.is-loading .testimoni-spin-loader {
    opacity: 1;
    transform: scale(1);
    animation: testimoniSpin .62s linear infinite;
}

.testimoni-click-card.is-loading {
    transform: translateY(-8px) scale(.985);
}

@keyframes testimoniSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Force bright yellow stars */
.testimoni-rating span.filled,
.modal-rating span.filled {
    color: #ffd60a !important;
    text-shadow:
        0 0 10px rgba(255, 214, 10, .42),
        0 0 24px rgba(255, 214, 10, .20);
}

/* Modal */
.testimoni-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: none;
    place-items: center;
    padding: 24px;
}

.testimoni-modal.is-open {
    display: grid;
}

.testimoni-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(12px);
    animation: testimoniFade .18s ease both;
}

html[data-theme="light"] .testimoni-modal-backdrop {
    background: rgba(255,255,255,.72);
}

.testimoni-modal-card {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    max-height: min(720px, calc(100vh - 48px));
    overflow: auto;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--line-strong);
    border-radius: 34px;
    background: var(--card);
    color: var(--text);
    box-shadow: 0 34px 120px rgba(0,0,0,.32);
    animation: testimoniModalIn .24s cubic-bezier(.2,.8,.2,1) both;
}

html[data-theme="light"] .testimoni-modal-card {
    box-shadow: 0 34px 120px rgba(0,0,0,.14);
}

.testimoni-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.testimoni-modal-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: start;
    margin-top: 18px;
    margin-bottom: 28px;
}

.testimoni-modal-header h2 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: clamp(34px, 5vw, 62px);
    line-height: .95;
    letter-spacing: -0.07em;
}

.testimoni-modal-header p {
    margin: 0 0 10px;
    color: var(--muted-strong);
    font-size: 16px;
    font-weight: 800;
}

.testimoni-modal-header span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
    word-break: break-word;
}

.testimoni-modal-card blockquote {
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.85;
    letter-spacing: -0.025em;
}

@keyframes testimoniFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes testimoniModalIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.96) rotate(-1deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0);
    }
}

@media (max-width: 720px) {
    .testimoni-modal {
        padding: 14px;
    }

    .testimoni-modal-card {
        border-radius: 26px;
    }

    .testimoni-modal-header {
        grid-template-columns: 1fr;
    }

    .modal-rating {
        justify-content: flex-start;
    }
}

/* Testimoni centered content + screenshot detail */
.testimoni-click-card .testimoni-card-topline {
    text-align: center;
    justify-items: center;
}

.testimoni-click-card .testimoni-name-block {
    justify-items: center;
}

.testimoni-click-card .testimoni-rating {
    justify-content: center;
}

.testimoni-click-card .testimoni-contact-line {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.testimoni-click-card .testimoni-quote-preview {
    text-align: center;
}

.testimoni-click-card .testimoni-open-hint {
    margin-left: auto;
    margin-right: auto;
}

.testimoni-screenshot-wrap {
    margin: 0 0 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--bg-soft);
    overflow: hidden;
}

.testimoni-screenshot-wrap img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}

@media (max-width: 720px) {
    .testimoni-screenshot-wrap {
        border-radius: 18px;
    }

    .testimoni-screenshot-wrap img {
        max-height: 420px;
    }
}

/* =========================================================
   Projects Featured Highlight + Pagination
========================================================= */

.projects-hero {
    padding-bottom: 50px;
}

.projects-section {
    padding-top: 20px;
}

.featured-project-shell {
    margin-bottom: 64px;
}

.featured-project-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.featured-project-label > span,
.projects-list-head > span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

.featured-project-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    min-height: 520px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,.08), transparent 34%),
        var(--card);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

html[data-theme="light"] .featured-project-card {
    background:
        radial-gradient(circle at 20% 15%, rgba(0,0,0,.05), transparent 34%),
        var(--card);
}

.featured-project-card:hover {
    transform: translateY(-7px);
    border-color: var(--line-strong);
    box-shadow: 0 34px 110px rgba(0,0,0,.28);
}

html[data-theme="light"] .featured-project-card:hover {
    box-shadow: 0 34px 110px rgba(0,0,0,.11);
}

.featured-project-media {
    min-height: 520px;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    border-right: 1px solid var(--line);
    overflow: hidden;
}

.featured-project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.featured-project-card:hover .featured-project-media img {
    transform: scale(1.035);
}

.featured-project-media span {
    color: var(--muted);
    font-size: clamp(82px, 9vw, 150px);
    font-weight: 950;
    letter-spacing: -0.08em;
}

.featured-project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4vw, 54px);
}

.featured-project-content h2 {
    margin: 18px 0 18px;
    color: var(--text);
    font-size: clamp(42px, 5.8vw, 82px);
    line-height: .94;
    letter-spacing: -0.075em;
}

.featured-project-content p {
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.75;
}

.featured-project-cta {
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    margin-top: 34px;
    padding: 0 18px;
    border: 1px solid var(--text);
    border-radius: 999px;
    background: var(--text);
    color: var(--bg);
    font-size: 13px;
    font-weight: 950;
}

.projects-list-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 24px;
}

.projects-list-head h2 {
    margin: 10px 0 0;
    color: var(--text);
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.projects-paginated-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.frontend-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

@media (max-width: 980px) {
    .featured-project-card {
        grid-template-columns: 1fr;
    }

    .featured-project-media {
        min-height: 340px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .projects-paginated-grid {
        grid-template-columns: 1fr;
    }

    .projects-list-head,
    .featured-project-label {
        align-items: flex-start;
        flex-direction: column;
    }

    .frontend-pagination {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .featured-project-card {
        border-radius: 26px;
        min-height: auto;
    }

    .featured-project-media {
        min-height: 260px;
    }

    .featured-project-content h2 {
        font-size: clamp(38px, 12vw, 58px);
    }

    .frontend-pagination .page-control {
        min-width: calc(50% - 6px);
    }

    .frontend-pagination .page-numbers {
        width: 100%;
        order: 2;
        justify-content: flex-start;
    }
}

/* Projects Featured Highlight + Pagination Safe CSS */
.projects-hero {
    padding-bottom: 50px;
}

.projects-section {
    padding-top: 20px;
}

.featured-project-shell {
    margin-bottom: 64px;
}

.featured-project-label,
.projects-list-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 24px;
}

.featured-project-label > span,
.projects-list-head > span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

.featured-project-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    min-height: 520px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: var(--card);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.featured-project-card:hover {
    transform: translateY(-7px);
    border-color: var(--line-strong);
}

.featured-project-media {
    min-height: 520px;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    border-right: 1px solid var(--line);
    overflow: hidden;
}

.featured-project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.featured-project-card:hover .featured-project-media img {
    transform: scale(1.035);
}

.featured-project-media span {
    color: var(--muted);
    font-size: clamp(82px, 9vw, 150px);
    font-weight: 950;
    letter-spacing: -0.08em;
}

.featured-project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4vw, 54px);
}

.featured-project-content h2 {
    margin: 18px 0 18px;
    color: var(--text);
    font-size: clamp(42px, 5.8vw, 82px);
    line-height: .94;
    letter-spacing: -0.075em;
}

.featured-project-content p {
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.75;
}

.featured-project-cta {
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    margin-top: 34px;
    padding: 0 18px;
    border: 1px solid var(--text);
    border-radius: 999px;
    background: var(--text);
    color: var(--bg);
    font-size: 13px;
    font-weight: 950;
}

.projects-list-head h2 {
    margin: 10px 0 0;
    color: var(--text);
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.projects-paginated-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.frontend-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

@media (max-width: 980px) {
    .featured-project-card {
        grid-template-columns: 1fr;
    }

    .featured-project-media {
        min-height: 340px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .projects-paginated-grid {
        grid-template-columns: 1fr;
    }

    .projects-list-head,
    .featured-project-label {
        align-items: flex-start;
        flex-direction: column;
    }

    .frontend-pagination {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .featured-project-card {
        border-radius: 26px;
        min-height: auto;
    }

    .featured-project-media {
        min-height: 260px;
    }

    .featured-project-content h2 {
        font-size: clamp(38px, 12vw, 58px);
    }

    .frontend-pagination .page-control {
        min-width: calc(50% - 6px);
    }

    .frontend-pagination .page-numbers {
        width: 100%;
        order: 2;
        justify-content: flex-start;
    }
}

/* =========================================================
   Services Featured + Pagination
========================================================= */

.services-hero {
    padding-bottom: 50px;
}

.services-section {
    padding-top: 20px;
}

.featured-service-shell {
    margin-bottom: 64px;
}

.featured-service-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.featured-service-label > span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

.featured-service-card {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
    min-height: 500px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        radial-gradient(circle at 14% 18%, rgba(255,255,255,.08), transparent 34%),
        var(--card);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

html[data-theme="light"] .featured-service-card {
    background:
        radial-gradient(circle at 14% 18%, rgba(0,0,0,.05), transparent 34%),
        var(--card);
}

.featured-service-card:hover {
    transform: translateY(-7px);
    border-color: var(--line-strong);
}

.featured-service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4vw, 54px);
}

.featured-service-content h2 {
    margin: 18px 0 18px;
    color: var(--text);
    font-size: clamp(42px, 5.8vw, 82px);
    line-height: .94;
    letter-spacing: -0.075em;
}

.featured-service-content p {
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.75;
}

.featured-service-media {
    min-height: 500px;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    border-left: 1px solid var(--line);
    overflow: hidden;
}

.featured-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.featured-service-card:hover .featured-service-media img {
    transform: scale(1.035);
}

.featured-service-media span {
    color: var(--text);
    font-size: clamp(72px, 8vw, 132px);
    font-weight: 950;
    letter-spacing: -0.09em;
}

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

.service-hover-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--card);
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.service-hover-card:hover {
    transform: translateY(-7px);
    border-color: var(--line-strong);
    background: var(--bg-soft);
    box-shadow: 0 26px 80px rgba(0,0,0,.18);
}

html[data-theme="light"] .service-hover-card:hover {
    box-shadow: 0 26px 80px rgba(0,0,0,.08);
}

.service-card-icon {
    width: fit-content;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 28px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    font-size: 13px;
    font-weight: 950;
}

.service-hover-card h2 {
    margin: 20px 0 12px;
    color: var(--text);
    font-size: clamp(26px, 2.5vw, 38px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.service-hover-card p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 15px;
    line-height: 1.68;
}

.service-card-cta {
    width: fit-content;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding: 22px 0 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .featured-service-card {
        grid-template-columns: 1fr;
    }

    .featured-service-media {
        min-height: 320px;
        border-left: 0;
        border-top: 1px solid var(--line);
    }

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

    .featured-service-label {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .featured-service-card {
        border-radius: 26px;
        min-height: auto;
    }

    .featured-service-media {
        min-height: 240px;
    }

    .featured-service-content h2 {
        font-size: clamp(38px, 12vw, 58px);
    }

    .services-catalog-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Premium Detail Pages: Project + Service
========================================================= */

.detail-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 165px 0 62px;
}

.detail-hero-copy {
    max-width: 960px;
}

.detail-hero h1 {
    margin: 18px 0 22px;
    font-size: clamp(48px, 7vw, 102px);
    line-height: .94;
    letter-spacing: -0.075em;
}

.detail-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(16px, 1.45vw, 21px);
    line-height: 1.75;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.detail-section {
    padding-top: 20px;
}

.detail-cover {
    min-height: 520px;
    display: grid;
    place-items: center;
    margin-bottom: 34px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: var(--bg-soft);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.detail-cover img {
    width: 100%;
    height: 100%;
    max-height: 640px;
    object-fit: cover;
}

.detail-cover span {
    color: var(--muted);
    font-size: clamp(82px, 10vw, 160px);
    font-weight: 950;
    letter-spacing: -0.09em;
}

.service-detail-cover span {
    color: var(--text);
}

.detail-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.detail-sidebar {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 14px;
}

.detail-info-card,
.detail-content-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--card);
}

.detail-info-card {
    padding: 24px;
}

.detail-content-card {
    padding: clamp(26px, 4vw, 44px);
}

.detail-info-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.detail-info-list div {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.detail-info-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.detail-info-list span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.detail-info-list strong {
    color: var(--text);
    font-size: 15px;
    line-height: 1.45;
}

.rich-content {
    margin-top: 22px;
    color: var(--muted-strong);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.95;
    letter-spacing: -0.025em;
}

.detail-sticky-cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--text);
    border-radius: 999px;
    background: var(--text);
    color: var(--bg);
    font-size: 13px;
    font-weight: 950;
}

@media (max-width: 980px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

    .detail-cover {
        min-height: 340px;
    }
}

@media (max-width: 720px) {
    .detail-hero {
        padding-top: 135px;
    }

    .detail-hero h1 {
        font-size: clamp(42px, 13vw, 66px);
        letter-spacing: -0.065em;
    }

    .detail-cover {
        min-height: 260px;
        border-radius: 26px;
    }

    .detail-info-card,
    .detail-content-card {
        border-radius: 24px;
    }
}

/* =========================================================
   Store Premium Catalog + Order Flow
========================================================= */

.store-hero {
    padding-bottom: 50px;
}

.store-section {
    padding-top: 20px;
}

.store-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 28px;
}

.store-toolbar h2 {
    margin: 10px 0 0;
    color: var(--text);
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.store-toolbar > span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

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

.store-product-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--card);
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.store-product-card:hover {
    transform: translateY(-7px);
    border-color: var(--line-strong);
    background: var(--bg-soft);
    box-shadow: 0 26px 80px rgba(0,0,0,.18);
}

html[data-theme="light"] .store-product-card:hover {
    box-shadow: 0 26px 80px rgba(0,0,0,.08);
}

.store-product-media {
    position: relative;
    aspect-ratio: 16 / 11;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.store-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.store-product-card:hover .store-product-media img {
    transform: scale(1.035);
}

.store-product-media span {
    color: var(--muted);
    font-size: 64px;
    font-weight: 950;
    letter-spacing: -0.08em;
}

.store-product-media em {
    position: absolute;
    top: 14px;
    left: 14px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--text);
    color: var(--bg);
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.store-product-body {
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 24px;
}

.store-product-body h2 {
    margin: 18px 0 12px;
    color: var(--text);
    font-size: clamp(26px, 2.5vw, 38px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.store-product-body p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 15px;
    line-height: 1.68;
}

.store-product-cta {
    width: fit-content;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 24px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.featured-store-product {
    grid-column: span 2;
}

.featured-store-product .store-product-media {
    aspect-ratio: 16 / 8;
}

.store-detail-section {
    padding-top: 20px;
}

.store-error-box {
    margin-bottom: 18px;
}

.store-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
    gap: 24px;
    align-items: start;
}

.store-detail-preview,
.store-order-panel {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--card);
    overflow: hidden;
}

.store-detail-media {
    min-height: 420px;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

.store-detail-media img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
}

.store-detail-media span {
    color: var(--muted);
    font-size: clamp(82px, 10vw, 150px);
    font-weight: 950;
    letter-spacing: -0.09em;
}

.store-detail-info {
    padding: 26px;
}

.store-order-panel {
    position: sticky;
    top: 104px;
    padding: 28px;
}

.store-order-panel h2 {
    margin: 14px 0 14px;
    color: var(--text);
    font-size: clamp(30px, 3.3vw, 48px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.store-order-note {
    margin: 0 0 22px;
    color: var(--muted-strong);
    line-height: 1.7;
}

.store-order-button {
    width: 100%;
}

@media (max-width: 1060px) {
    .store-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-store-product {
        grid-column: span 2;
    }

    .store-detail-grid {
        grid-template-columns: 1fr;
    }

    .store-order-panel {
        position: static;
    }
}

@media (max-width: 720px) {
    .store-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .store-product-grid {
        grid-template-columns: 1fr;
    }

    .featured-store-product {
        grid-column: span 1;
    }

    .featured-store-product .store-product-media,
    .store-product-media {
        aspect-ratio: 16 / 11;
    }

    .store-detail-preview,
    .store-order-panel {
        border-radius: 24px;
    }

    .store-detail-media {
        min-height: 260px;
    }
}

/* =========================================================
   Store 6 Products Pagination Compact Grid
========================================================= */

.store-product-grid-paginated {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-store-product-card {
    grid-column: span 1 !important;
}

.compact-store-product-card .store-product-media,
.featured-store-product-badge .store-product-media {
    aspect-ratio: 16 / 9;
}

.compact-store-product-card .store-product-body {
    min-height: 218px;
    padding: 20px;
}

.compact-store-product-card .store-product-body h2 {
    margin: 14px 0 10px;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.04;
    letter-spacing: -0.058em;
}

.compact-store-product-card .store-product-body p {
    font-size: 14px;
    line-height: 1.58;
}

.compact-store-product-card .store-product-cta {
    padding-top: 18px;
}

.compact-store-product-card .project-meta-line {
    gap: 6px;
}

.compact-store-product-card .project-meta-line span {
    min-height: 26px;
    padding: 0 9px;
    font-size: 11px;
}

.store-pagination {
    margin-top: 34px;
}

@media (max-width: 980px) {
    .store-product-grid-paginated {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .store-product-grid-paginated {
        grid-template-columns: 1fr;
    }

    .compact-store-product-card .store-product-body {
        min-height: auto;
    }

    .store-pagination {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .store-pagination .page-control {
        min-width: calc(50% - 6px);
    }

    .store-pagination .page-numbers {
        width: 100%;
        order: 2;
        justify-content: flex-start;
    }
}

/* =========================================================
   Music Premium Playlist + Pagination
========================================================= */

.music-hero {
    padding-bottom: 50px;
}

.music-section {
    padding-top: 20px;
}

.music-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 28px;
}

.music-toolbar h2 {
    margin: 10px 0 0;
    color: var(--text);
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.music-toolbar > span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

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

.music-premium-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--card);
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.music-premium-card:hover {
    transform: translateY(-7px);
    border-color: var(--line-strong);
    background: var(--bg-soft);
    box-shadow: 0 26px 80px rgba(0,0,0,.18);
}

html[data-theme="light"] .music-premium-card:hover {
    box-shadow: 0 26px 80px rgba(0,0,0,.08);
}

.music-premium-cover {
    position: relative;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.music-premium-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .42s ease;
}

.music-premium-card:hover .music-premium-cover img {
    transform: scale(1.04);
}

.music-premium-cover > span {
    color: var(--muted);
    font-size: 78px;
    font-weight: 950;
}

.music-premium-cover em {
    position: absolute;
    top: 14px;
    left: 14px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--text);
    color: var(--bg);
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.music-premium-body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 22px;
}

.music-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.music-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.music-card-badges {
    flex: 0 0 auto;
}

.music-card-meta span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.music-premium-body h2 {
    margin: 18px 0 16px;
    color: var(--text);
    font-size: clamp(24px, 2.3vw, 34px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.premium-spectrum {
    height: 46px;
    gap: 3px;
    margin: 0 0 16px;
}

.premium-spectrum span {
    height: calc(8px + ((var(--i) * 7) % 34px));
    opacity: .18;
    animation-duration: calc(.75s + (var(--i) % 5) * .09s);
}

.music-premium-body audio {
    width: 100%;
    height: 42px;
    margin-top: auto;
    filter: grayscale(1);
}

.music-embed-shell {
    margin-top: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--bg-soft) 84%, transparent), color-mix(in srgb, var(--card) 88%, transparent));
}

.music-spotify-embed {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 14px;
}

.music-card-actions {
    margin-top: 16px;
}

.music-card-actions .btn {
    width: 100%;
}

.music-empty-audio {
    margin-top: auto;
    font-size: 13px;
}

.music-pagination {
    margin-top: 34px;
}

@media (max-width: 980px) {
    .music-premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .music-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .music-premium-grid {
        grid-template-columns: 1fr;
    }

    .music-premium-body {
        min-height: auto;
    }

    .music-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .music-pagination {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .music-pagination .page-control {
        min-width: calc(50% - 6px);
    }

    .music-pagination .page-numbers {
        width: 100%;
        order: 2;
        justify-content: flex-start;
    }
}

/* =========================================================
   About Me Premium CV Layout
========================================================= */

.about-premium-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 165px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: clamp(34px, 6vw, 86px);
    align-items: center;
}

.about-premium-copy h1 {
    margin: 18px 0 22px;
    font-size: clamp(54px, 7vw, 108px);
    line-height: .92;
    letter-spacing: -0.078em;
}

.about-premium-copy p:not(.eyebrow) {
    max-width: 720px;
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.75;
}

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

.about-profile-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: var(--card);
    box-shadow: var(--shadow);
}

.about-profile-photo {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--bg-soft);
    overflow: hidden;
}

.about-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-profile-photo span {
    color: var(--muted);
    font-size: 96px;
    font-weight: 950;
    letter-spacing: -0.08em;
}

.about-profile-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.about-profile-meta strong {
    color: var(--text);
}

.about-premium-section {
    padding-top: 18px;
}

.about-notice {
    margin-bottom: 18px;
}

.about-cv-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 18px;
    align-items: start;
}

.about-main-card,
.about-side-card,
.about-cv-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--card);
}

.about-main-card {
    padding: clamp(28px, 4vw, 46px);
}

.about-main-card h2 {
    max-width: 760px;
    margin: 16px 0 20px;
    color: var(--text);
    font-size: clamp(36px, 4.4vw, 64px);
    line-height: .98;
    letter-spacing: -0.07em;
}

.about-main-card p:not(.eyebrow) {
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.9;
}

.about-side-card {
    position: sticky;
    top: 104px;
    padding: 24px;
}

.about-info-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.about-info-list div {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.about-info-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.about-info-list span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-info-list strong {
    color: var(--text);
    font-size: 14px;
    line-height: 1.45;
    word-break: break-word;
}

.about-cv-card {
    padding: 26px;
}

.about-cv-card.wide {
    grid-column: 1 / -1;
}

.about-cv-card h3 {
    margin: 14px 0 18px;
    color: var(--text);
    font-size: clamp(26px, 2.5vw, 38px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.about-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-pill-list span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 850;
}

.about-timeline-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-timeline-list li {
    position: relative;
    padding-left: 22px;
    color: var(--muted-strong);
    font-size: 16px;
    line-height: 1.75;
}

.about-timeline-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text);
}

.about-muted {
    margin: 0;
    color: var(--muted-strong);
    font-size: 16px;
    line-height: 1.75;
}

@media (max-width: 980px) {
    .about-premium-hero,
    .about-cv-grid {
        grid-template-columns: 1fr;
    }

    .about-side-card {
        position: static;
    }

    .about-profile-card {
        max-width: 420px;
    }
}

@media (max-width: 720px) {
    .about-premium-hero {
        padding-top: 135px;
    }

    .about-premium-copy h1 {
        font-size: clamp(46px, 14vw, 72px);
        letter-spacing: -0.065em;
    }

    .about-profile-card,
    .about-main-card,
    .about-side-card,
    .about-cv-card {
        border-radius: 24px;
    }

    .about-profile-meta {
        flex-direction: column;
        gap: 6px;
    }
}

/* =========================================================
   About Clean Layout Override
   Fixes overlapping/sticky issues and JSON-like list output
========================================================= */

.about-clean-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 170px 0 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: clamp(34px, 6vw, 78px);
    align-items: center;
}

.about-clean-copy h1 {
    margin: 18px 0 22px;
    color: var(--text);
    font-size: clamp(54px, 7vw, 102px);
    line-height: .93;
    letter-spacing: -0.075em;
}

.about-clean-copy p:not(.eyebrow) {
    max-width: 720px;
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.75;
}

.about-clean-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.about-clean-profile {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--card);
    box-shadow: var(--shadow);
}

.about-clean-photo {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--bg-soft);
    overflow: hidden;
}

.about-clean-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-clean-photo span {
    color: var(--muted);
    font-size: 86px;
    font-weight: 950;
    letter-spacing: -0.08em;
}

.about-clean-profile-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.about-clean-profile-meta strong {
    color: var(--text);
}

.about-clean-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 96px;
}

.about-clean-notice {
    margin-bottom: 18px;
}

.about-clean-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 18px;
    align-items: start;
}

.about-clean-card {
    min-width: 0;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--card);
}

.about-clean-summary {
    padding: clamp(28px, 4vw, 44px);
}

.about-clean-summary h2 {
    max-width: 760px;
    margin: 16px 0 20px;
    color: var(--text);
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1;
    letter-spacing: -0.066em;
}

.about-clean-summary p:not(.eyebrow) {
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.9;
}

.about-clean-contact {
    position: static !important;
}

.about-clean-info {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.about-clean-info div {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.about-clean-info div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.about-clean-info span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-clean-info strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    line-height: 1.45;
    word-break: break-word;
}

.about-clean-card h3 {
    margin: 14px 0 18px;
    color: var(--text);
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.about-clean-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-clean-pills span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 850;
}

.about-clean-wide {
    grid-column: 1 / -1;
}

.about-clean-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-clean-list li {
    position: relative;
    padding-left: 22px;
    color: var(--muted-strong);
    font-size: 16px;
    line-height: 1.75;
}

.about-clean-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text);
}

.about-clean-muted {
    margin: 0;
    color: var(--muted-strong);
    font-size: 16px;
    line-height: 1.75;
}

/* Hide old about layout artifacts if browser still has mixed markup/classes */
.about-side-card,
.about-profile-card,
.about-premium-hero,
.about-premium-section {
    max-width: 100%;
}

@media (max-width: 980px) {
    .about-clean-hero,
    .about-clean-grid {
        grid-template-columns: 1fr;
    }

    .about-clean-profile {
        max-width: 420px;
    }
}

@media (max-width: 720px) {
    .about-clean-hero {
        padding-top: 135px;
    }

    .about-clean-copy h1 {
        font-size: clamp(46px, 14vw, 70px);
        letter-spacing: -0.065em;
    }

    .about-clean-profile,
    .about-clean-card {
        border-radius: 24px;
    }

    .about-clean-profile-meta {
        flex-direction: column;
        gap: 6px;
    }
}

/* About Download CV Full Width Strip */
.about-download-strip-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: -58px auto 72px;
}

.about-download-strip {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 28px 34px;
    border: 1px solid var(--line-strong);
    border-radius: 30px;
    background: var(--text);
    color: var(--bg);
    box-shadow: var(--shadow);
    transition: transform .22s ease, opacity .22s ease;
}

.about-download-strip:hover {
    transform: translateY(-5px);
    opacity: .92;
}

.about-download-strip span {
    display: grid;
    gap: 8px;
}

.about-download-strip small {
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .72;
}

.about-download-strip strong {
    font-size: clamp(34px, 4vw, 58px);
    line-height: .95;
    letter-spacing: -0.07em;
}

.about-download-strip em {
    max-width: 280px;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.45;
    text-align: right;
    opacity: .72;
}

@media (max-width: 720px) {
    .about-download-strip-wrap {
        margin: -42px auto 52px;
    }

    .about-download-strip {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        border-radius: 24px;
    }

    .about-download-strip em {
        text-align: left;
    }
}

/* =========================================================
   Contact Premium Page
========================================================= */

.contact-premium-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 170px 0 62px;
}

.contact-premium-hero h1 {
    max-width: 980px;
    margin: 18px 0 22px;
    color: var(--text);
    font-size: clamp(50px, 7vw, 104px);
    line-height: .94;
    letter-spacing: -0.075em;
}

.contact-premium-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.75;
}

.contact-premium-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 98px;
}

.contact-alert {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: var(--card);
}

.contact-alert strong {
    color: var(--text);
    font-size: 15px;
}

.contact-alert span {
    color: var(--muted-strong);
    font-size: 14px;
    line-height: 1.55;
}

.contact-alert.success {
    border-color: rgba(28, 184, 104, .45);
    background: rgba(28, 184, 104, .08);
}

.contact-alert.error {
    border-color: rgba(255, 80, 80, .45);
    background: rgba(255, 80, 80, .08);
}

.contact-premium-grid {
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.contact-premium-info,
.contact-premium-form-card {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--card);
}

.contact-premium-info {
    padding: 28px;
}

.contact-premium-info h2,
.contact-premium-form-card h2 {
    margin: 14px 0 14px;
    color: var(--text);
    font-size: clamp(30px, 3.3vw, 48px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.contact-premium-info > p:not(.eyebrow) {
    color: var(--muted-strong);
    line-height: 1.75;
}

.contact-info-stack {
    display: grid;
    gap: 14px;
    margin: 26px 0;
}

.contact-info-stack div {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.contact-info-stack div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-info-stack span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-info-stack strong {
    color: var(--text);
    font-size: 15px;
    line-height: 1.45;
    word-break: break-word;
}

.contact-email-button {
    min-height: 48px;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--text);
    border-radius: 999px;
    background: var(--text);
    color: var(--bg);
    font-size: 13px;
    font-weight: 950;
}

.contact-premium-form-card {
    padding: clamp(26px, 4vw, 42px);
}

.contact-premium-form {
    margin-top: 24px;
}

.form-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-premium-form input,
.contact-premium-form textarea {
    border-radius: 18px;
}

.contact-premium-form textarea {
    min-height: 210px;
}

.contact-submit-button {
    width: 100%;
    margin-top: 4px;
}

@media (max-width: 980px) {
    .contact-premium-grid,
    .form-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .contact-premium-hero {
        padding-top: 135px;
    }

    .contact-premium-hero h1 {
        font-size: clamp(44px, 13vw, 68px);
        letter-spacing: -0.065em;
    }

    .contact-premium-info,
    .contact-premium-form-card {
        border-radius: 24px;
    }
}

/* =========================================================
   Final Global Polish
========================================================= */

body {
    overflow-x: hidden;
}

main {
    position: relative;
    z-index: 1;
}

.site-header {
    max-width: 1180px;
}

.site-nav a {
    white-space: nowrap;
}

.site-footer {
    margin-top: 24px;
}

.global-ad {
    position: relative;
    z-index: 1;
}

.notice-box {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--card);
    padding: 20px;
    color: var(--muted-strong);
}

.frontend-pagination,
.testimoni-pagination,
.projects-pagination,
.services-pagination,
.store-pagination,
.music-pagination {
    padding-bottom: 12px;
}

.page-control.disabled,
.page-number.active {
    user-select: none;
}

@media (max-width: 1040px) {
    .site-header {
        border-radius: 24px;
    }

    .site-nav {
        width: 100%;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
    }
}

@media (max-width: 720px) {
    .brand-text {
        font-size: 14px;
    }

    .site-header {
        min-height: 60px;
        padding: 9px 10px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .footer-links a {
        border: 1px solid var(--line);
    }

    .site-footer {
        padding-bottom: 30px;
    }

    .global-ad-top {
        margin-top: 92px;
        margin-bottom: -36px;
    }
}

@media (max-width: 420px) {
    .brand-text {
        max-width: 130px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* =========================================================
   Branding Update: Header + Footer Slogan
========================================================= */

.brand-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand-copy small {
    max-width: 260px;
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .03em;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-slogan {
    display: block;
    margin: -2px 0 8px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: -0.02em;
}

@media (max-width: 720px) {
    .brand-copy small {
        max-width: 170px;
        font-size: 9px;
    }
}

@media (max-width: 420px) {
    .brand-copy small {
        max-width: 120px;
    }
}

/* =========================================================
   Public System Status Page
========================================================= */

.public-status-page {
    width: min(1060px, calc(100% - 32px));
    margin: 0 auto;
    padding: 160px 0 96px;
}

.public-status-hero {
    text-align: center;
    margin-bottom: 72px;
}

.public-status-hero h1 {
    margin: 14px 0 18px;
    color: var(--text);
    font-size: clamp(54px, 7vw, 92px);
    line-height: .92;
    letter-spacing: -0.075em;
}

.public-status-hero p:not(.eyebrow) {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted-strong);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.75;
}

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

.public-status-card {
    min-height: 160px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 22px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--card);
    text-align: center;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.public-status-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
    background: var(--bg-soft);
}

.public-status-card.operational {
    border-color: rgba(35, 211, 120, .25);
    background:
        radial-gradient(circle at 20% 0%, rgba(35, 211, 120, .08), transparent 34%),
        var(--card);
}

.public-status-card.maintenance {
    border-color: rgba(255, 71, 71, .28);
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 71, 71, .08), transparent 34%),
        var(--card);
}

.public-status-card.being-repaired {
    border-color: rgba(255, 214, 10, .35);
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 214, 10, .09), transparent 34%),
        var(--card);
}

.public-status-card h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(19px, 1.7vw, 25px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.public-status-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.public-status-state span {
    width: 12px;
    height: 12px;
    display: inline-flex;
    border-radius: 999px;
    animation: publicStatusPulse 1.45s infinite ease-in-out;
}

.public-status-state strong {
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.operational .public-status-state span {
    background: #23d378;
    box-shadow: 0 0 20px rgba(35, 211, 120, .38);
}

.operational .public-status-state strong {
    color: #23d378;
}

.maintenance .public-status-state span {
    background: #ff4747;
    box-shadow: 0 0 20px rgba(255, 71, 71, .35);
}

.maintenance .public-status-state strong {
    color: #ff4747;
}

.being-repaired .public-status-state span {
    background: #ffd60a;
    box-shadow: 0 0 20px rgba(255, 214, 10, .35);
}

.being-repaired .public-status-state strong {
    color: #ffd60a;
}

@keyframes publicStatusPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.28);
        opacity: .72;
    }
}

/* Footer center legal links */
.tr-footer-center-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(780px, calc(100% - 32px));
    margin: 22px auto 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.tr-footer-center-links a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 12px;
    font-weight: 850;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.tr-footer-center-links a:hover {
    color: var(--text);
    border-color: var(--line-strong);
    background: var(--bg-soft);
}

/* Simple legal pages */
.legal-page {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
    padding: 160px 0 96px;
}

.legal-page h1 {
    margin: 14px 0 26px;
    color: var(--text);
    font-size: clamp(48px, 6vw, 84px);
    line-height: .95;
    letter-spacing: -0.075em;
}

.legal-card {
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--card);
}

.legal-card p {
    margin: 0;
    color: var(--muted-strong);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.9;
}

@media (max-width: 980px) {
    .public-status-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .public-status-page,
    .legal-page {
        padding-top: 132px;
    }

    .public-status-hero {
        margin-bottom: 46px;
    }

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

    .public-status-card {
        min-height: 138px;
    }

    .tr-footer-center-links {
        justify-content: flex-start;
        text-align: left;
    }
}

/* =========================================================
   Footer Symmetric Layout + Social Icons
========================================================= */

.site-footer.tr-footer-fixed {
    width: min(1180px, calc(100% - 32px));
    margin: 80px auto 0;
    padding: 34px 0 38px;
    border-top: 1px solid var(--line);
}

.tr-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(320px, auto) minmax(260px, 1fr);
    align-items: end;
    gap: 28px;
}

.tr-footer-brand {
    min-width: 0;
}

.tr-footer-brand strong {
    display: block;
    color: var(--text);
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.tr-footer-brand span {
    display: block;
    max-width: 360px;
    margin-top: 5px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.45;
}

.tr-footer-brand p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.tr-footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-self: center;
    gap: 12px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    justify-self: center;
    text-align: center;
}

.tr-footer-legal a {
    min-width: 148px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--muted-strong);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.tr-footer-legal a:hover {
    transform: translateY(-2px);
    color: var(--text);
    border-color: var(--line-strong);
    background: var(--bg-soft);
}

.tr-footer-social-icons {
    display: grid;
    grid-template-columns: repeat(2, 42px);
    justify-content: center;
    align-items: center;
    justify-self: end;
    gap: 10px;
    width: fit-content;
    margin: 0 0 0 auto;
}

.tr-footer-social-icons a {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--muted-strong);
    background: transparent;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.tr-footer-social-icons a:hover {
    transform: translateY(-2px);
    color: var(--text);
    border-color: var(--line-strong);
    background: var(--bg-soft);
}

.tr-footer-social-icons svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

/* Disable previous footer/legal styles if still present */
.tr-footer-center-links {
    display: none !important;
}

.footer-links {
    display: none !important;
}

@media (max-width: 980px) {
    .tr-footer-grid {
        grid-template-columns: 1fr;
        align-items: center;
        text-align: center;
        gap: 22px;
        justify-items: center;
    }

    .tr-footer-brand span {
        margin-left: auto;
        margin-right: auto;
    }

    .tr-footer-social-icons {
        grid-template-columns: repeat(2, 42px);
        justify-content: center;
        justify-self: center;
        margin: 0 auto;
    }

    .tr-footer-legal {
        order: 2;
        justify-content: center;
        justify-self: center;
        margin: 0 auto;
    }

    .tr-footer-social-icons {
        order: 3;
    }
}

@media (max-width: 560px) {
    .site-footer.tr-footer-fixed {
        margin-top: 56px;
        padding-bottom: 28px;
    }

    .tr-footer-grid {
        gap: 20px;
    }

    .tr-footer-legal {
        gap: 10px;
        width: fit-content;
        max-width: min(100%, 360px);
        justify-content: center;
        justify-self: center;
        margin: 0 auto;
    }

    .tr-footer-legal a {
        min-width: 148px;
        min-height: 38px;
        padding: 0 14px;
        font-size: 11px;
        white-space: nowrap;
    }

    .tr-footer-social-icons a {
        width: 38px;
        height: 38px;
    }

    .tr-footer-social-icons {
        grid-template-columns: repeat(2, 38px);
        gap: 8px;
        justify-content: center;
        justify-self: center;
        margin: 0 auto;
    }
}
