/* ==============================
   RESET & BASE
   ============================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #0a40c0;
    --accent-hover: #1a52d8;
    --accent-soft: #e8eefb;
    --text: #333333;
    --text-secondary: #6b7280;
    --surface: #ffffff;
    --background: #f5f5f5;
    --border: #e5e7eb;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --font-heading:
        "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.35s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* anchor links won't hide behind fixed header */
}

body {
    font-family: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.7;
    background: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==============================
   TYPOGRAPHY
   ============================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text);
    line-height: 1.2;
    font-weight: 700;
}

/* ==============================
   BUTTONS
   ============================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 22px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
}

.btn--primary:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 64, 192, 0.35);
}

.btn--secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn--secondary:hover {
    border-color: #0a40c0;
    color: #0a40c0;
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
}

.btn--ghost:hover {
    border-color: #0a40c0;
    color: #0a40c0;
}

.btn--whatsapp {
    background: #25d366;
    color: #fff;
}

.btn--whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
}

.btn--sm {
    height: 44px;
    padding: 0 20px;
    font-size: 13px;
}

/* ==============================
   BUTTON COMPONENT (from sample/button v2/)
   ============================== */
.button {
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    padding: 10px 20px;
    border-radius: 100px;
    background: var(--accent);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    text-decoration: none;
    font-family: var(--font-body);
    color: #fff;
    white-space: nowrap;
}

.button:hover {
    background: var(--accent-hover);
    color: #fff;
}

.button svg {
    width: 34px;
    height: 34px;
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
}

.button:hover svg {
    transform: translateX(5px);
}

.button:active {
    transform: scale(0.95);
}

/* Navbar CTA variant */
.button--nav {
    font-size: 13px;
    padding: 8px 16px;
}

.button--nav svg {
    width: 28px;
    height: 28px;
}

/* CTA section variant */
.button--cta {
    font-size: 16px;
    padding: 14px 28px;
}

.button--cta svg {
    width: 38px;
    height: 38px;
}

/* ==============================
   SECTION
   ============================== */
.section {
    padding: 120px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0a40c0;
    margin-bottom: 16px;
}

.section__title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section__desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.7;
}

/* ==============================
   HEADER
   ============================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
    height: 60px;
}

.header.scrolled {
    background: #fff;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

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

.header__logo img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

.header__logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.header__nav {
    display: flex;
    gap: 36px;
}

.header__nav a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding: 4px 0;
}

.header__nav a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
    color: var(--text);
}

.header__nav a:hover::after,
.header__nav a.active::after {
    width: 100%;
}

.header__cta {
    height: 44px;
    padding: 0 24px;
    font-size: 14px;
    border-radius: var(--radius-full);
}

.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 40px 24px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.mobile-menu__nav a {
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu__cta {
    width: 100%;
    justify-content: center;
}

/* ==============================
   HERO
   ============================== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--background);
}

.hero__track {
    display: flex;
    transition: transform 0.7s ease;
    height: 100%;
}

.hero__slide {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #d4d4d4;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 80px 0 40px;
    text-align: center;
    margin: 0 auto;
}

.hero__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.hero__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.hero__actions .btn {
    width: 160px;
    height: 44px;
    padding: 0;
    font-size: 13px;
}

.hero__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero__dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

/* ==============================
   KEUNGGULAN (Why Us)
   ============================== */
.keunggulan {
    background: var(--surface);
}

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

.keunggulan__card {
    background: var(--surface);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.keunggulan__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.keunggulan__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 64, 192, 0.1);
    border-radius: 14px;
    font-size: 22px;
    color: var(--accent);
}

.keunggulan__card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.keunggulan__card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==============================
   LAYANAN (Services)
   ============================== */
.layanan {
    background: var(--background);
}

.layanan__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.layanan__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    pointer-events: none;
}

/* Services use project-card component styles */
.layanan__grid .project-card {
    height: 420px;
}

.layanan__cta-wrap {
    text-align: center;
    margin-top: 48px;
}

.project-cta .icon--btn {
    filter: brightness(0) invert(1);
}

/* ==============================
   PROSES KERJA (Process)
   ============================== */
.proses {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.proses::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(10, 64, 192, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

/* ==============================
   PROSES KERJA (Timeline)
   ============================== */
.proses__timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.proses__timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.proses__step {
    position: relative;
    width: 50%;
    padding: 24px 0;
}

.proses__step--left {
    left: 0;
    padding-right: 70px;
}

.proses__step--right {
    left: 50%;
    padding-left: 70px;
}

.proses__step::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    top: 80px;
    z-index: 1;
}

.proses__step--left::before {
    right: -7px;
}

.proses__step--right::before {
    left: -7px;
}

.proses__card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    max-width: 480px;
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease;
}

.proses__card:hover {
    background: var(--accent);
    border-color: rgba(255, 255, 255, 0.2);
    border-left: 4px solid #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
    cursor: pointer;
}

.proses__card:hover .proses__number {
    color: #fff;
    opacity: 0.25;
}

.proses__card:hover h3 {
    color: #fff;
}

.proses__card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.proses__step--right .proses__card {
    margin-left: auto;
}

.proses__number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.proses__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.proses__card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==============================
   PORTOFOLIO (Gallery)
   ============================== */
.portofolio {
    background: var(--background);
}

.portofolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.project-card {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.project-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0) 100%
    );
    transition: background 0.5s ease;
}

.project-card:hover .project-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 32px 32px;
    box-sizing: border-box;
    z-index: 3;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d1d5db;
    margin-bottom: 8px;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #fff;
}

.project-details {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        margin-top 0.4s ease;
    margin-top: 0;
}

.project-card:hover .project-details {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 16px;
}

.project-details-inner {
    overflow: hidden;
}

.project-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #e5e7eb;
    margin: 0 0 16px 0;
}

.project-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.project-cta:hover {
    border-bottom: 1px solid #ffffff;
}

.portofolio__cta {
    text-align: center;
    margin-top: 48px;
}

/* ==============================
   TESTIMONIAL (v2)
   ============================== */
.testimonial {
    background: var(--background);
    overflow: hidden;
}

.testimonial .section__tag,
.testimonial .section__title {
    font-family: "Poppins", var(--font-heading);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
    padding: 30px 0;
}

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

.marquee-track.paused {
    animation-play-state: paused !important;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.card {
    width: 280px;
    height: 240px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    background: var(--accent);
    display: flex;
    border-radius: 20px;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    flex-shrink: 0;
    margin-top: 20px;
}

.card .revealed-info {
    position: absolute;
    bottom: 12px;
    left: 25px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.card:hover .revealed-info,
.card.active .revealed-info {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.card .revealed-info .name {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.card .revealed-info .profession {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.card .card-inner {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: #fff;
    position: relative;
    box-sizing: border-box;
    padding: 85px 25px 25px 25px;
}

.card:hover .card-inner,
.card.active .card-inner {
    transform: translateY(-55px);
}

.card .card-inner .profile-pic {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f3f4f6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.card:hover .card-inner .profile-pic,
.card.active .card-inner .profile-pic {
    transform: scale(1.1);
    border-color: var(--accent);
}

.card .card-inner .quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 32px;
    height: 32px;
    fill: #e5e7eb;
    transition: fill 0.4s ease;
}

.card:hover .card-inner .quote-icon,
.card.active .card-inner .quote-icon {
    fill: var(--accent);
    opacity: 0.4;
}

.card .card-inner .quote-text {
    margin: 0;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    font-style: italic;
}

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
    background: var(--background);
    text-align: center;
    padding: 96px 0;
}

.cta-section__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-section__desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.cta-section .btn--secondary {
    background: var(--accent);
    color: var(--text);
    height: 52px;
    padding: 0 32px;
    font-size: 15px;
    border-radius: var(--radius-full);
}

.cta-section .btn--secondary:hover {
    background: var(--accent-hover);
    color: var(--text);
    box-shadow: 0 8px 24px rgba(10, 64, 192, 0.35);
}

/* ==============================
   FOOTER
   ============================== */
.footer {
    background: var(--surface);
    color: var(--text-secondary);
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.8fr;
    gap: 64px;
    align-items: start;
    padding-bottom: 60px;
}

.footer__brand > img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer__brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all var(--transition);
}

.footer__social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer__social a:hover img {
    filter: brightness(0) invert(1);
}

.footer__col h3 {
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 24px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__col a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color var(--transition);
    text-decoration: none;
}

.footer__col a:hover {
    color: #0a40c0;
}

.footer__col li {
    font-size: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.6;
}

.footer__col li .icon {
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.footer__col li a {
    color: var(--text-secondary);
}

.footer__col li a:hover {
    color: #0a40c0;
}

.footer__contact-list li span,
.footer__contact-list li a {
    font-size: 14px;
    line-height: 1.6;
}

.footer__copyright {
    border-top: 1px solid var(--border);
    padding: 18px 0;
}

.footer__copyright .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer__copyright p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ==============================
   WHATSAPP FLOAT
   ============================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ==============================
   ICON SYSTEM
   ============================== */
.icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
}

.icon--btn {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.icon--feature {
    width: 24px;
    height: 24px;
}

.icon--social {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.icon--contact {
    width: 16px;
    height: 16px;
}

.icon--float {
    width: 28px;
    height: 28px;
}

/* ==============================
   PORTFOLIO PAGE
   ============================== */
.page-hero {
    position: relative;
    min-height: 440px;
    padding: 80px 0 32px; /* offset header (60px) + breathing room */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--background);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.page-hero__tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 16px;
}

.page-hero__title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.page-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.portfolio-section {
    padding: 80px 0 120px;
    background: var(--background);
}

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

.portfolio__filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.portfolio__filter {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--surface);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.portfolio__filter:hover {
    border-color: #0a40c0;
    color: #0a40c0;
}

.portfolio__filter.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.portfolio__search {
    flex-shrink: 0;
}

.portfolio__search-input {
    width: 240px;
    height: 42px;
    padding: 0 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--surface);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
}

.portfolio__search-input:focus {
    border-color: var(--accent);
}

.portfolio__search-input::placeholder {
    color: var(--text-secondary);
}

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

.portfolio__card {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.portfolio__load-more {
    text-align: center;
    margin-top: 48px;
}

.portfolio__load-more.hidden {
    display: none;
}

.portfolio__empty {
    display: none;
    text-align: center;
    padding: 80px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.portfolio__empty.show {
    display: block;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.open {
    display: flex;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal__container {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background var(--transition);
}

.modal__close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.modal__content {
    padding: 0;
}

.modal__img {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.modal__body {
    padding: 32px;
}

.modal__cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0a40c0;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal__body h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.modal__meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.modal__meta-item {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal__meta-item strong {
    color: var(--text);
    font-weight: 600;
}

.modal__desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.modal__related {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.modal__related h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

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

.modal__related-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.modal__related-item:hover {
    border-color: var(--accent);
}

.modal__related-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

.modal__related-item p {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    padding: 10px 12px;
}

/* ==============================
   LAYANAN PAGE
   ============================== */
.layanan-hero {
    position: relative;
    min-height: 440px;
    padding: 80px 0 32px; /* offset header (60px) + breathing room */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--background);
}

.layanan-hero__bg {
    position: absolute;
    inset: 0;
    background: #1a1a1a;
}

.layanan-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.layanan-hero__tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 16px;
}

.layanan-hero__title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.layanan-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* Showcase */
.showcase {
    padding: 120px 0;
}

.showcase__block {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 120px;
}

.showcase__block:last-child {
    margin-bottom: 0;
}

.showcase__image {
    flex: 0 0 62%;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.showcase__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.showcase__image:hover img {
    transform: scale(1.04);
}

.showcase__card {
    flex: 0 0 38%;
    background: var(--surface);
    border-radius: 20px;
    padding: 36px 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin-left: -60px;
    position: relative;
    z-index: 2;
}

.showcase__block--reverse .showcase__card {
    margin-left: 0;
    margin-right: -60px;
}

.showcase__block--reverse {
    flex-direction: row-reverse;
}

.showcase__card-tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0a40c0;
    margin-bottom: 10px;
}

.showcase__card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 12px;
}

.showcase__card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.showcase__card .btn {
    height: 44px;
    padding: 0 24px;
    font-size: 14px;
}

/* Standards */
.standards {
    background: #1e1e1e;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.standards__header {
    text-align: center;
    margin-bottom: 48px;
}

.standards__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 12px;
}

.standards__title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.standards__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.standards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.standards__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}

.standards__card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(10, 64, 192, 0.2);
    transform: translateY(-4px);
}

.standards__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 64, 192, 0.12);
    border-radius: 14px;
}

.standards__icon img {
    width: 40px;
    height: 40px;
}

.standards__card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.standards__card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

/* Layanan CTA */
.layanan-cta {
    background: var(--surface);
    text-align: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.layanan-cta .container {
    max-width: 700px;
}

.layanan-cta__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #0a40c0;
    margin-bottom: 16px;
}

.layanan-cta__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.layanan-cta__desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.layanan-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.layanan-cta__actions .btn {
    height: 50px;
    padding: 0 32px;
    font-size: 14px;
}

.layanan-cta__actions .btn--primary {
    background: var(--accent);
    color: var(--text);
}

.layanan-cta__actions .btn--primary:hover {
    background: var(--accent-hover);
    color: var(--text);
    box-shadow: 0 8px 24px rgba(10, 64, 192, 0.35);
    transform: translateY(-2px);
}

/* ==============================
   LAYANAN RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .showcase__block {
        flex-direction: column;
        margin-bottom: 100px;
    }
    .showcase__block--reverse {
        flex-direction: column;
    }
    .showcase__image {
        flex: none;
        width: 100%;
        height: 360px;
        border-radius: 24px;
    }
    .showcase__card {
        flex: none;
        width: calc(100% - 48px);
        margin: -56px 24px 0;
        padding: 32px 32px;
    }
    .showcase__block--reverse .showcase__card {
        margin: -56px 24px 0;
    }
    .standards__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    .standards__title {
        font-size: 28px;
    }
    .layanan-cta__title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .layanan-hero {
        height: 300px;
    }
    .layanan-hero__title {
        font-size: 28px;
    }
    .layanan-hero__desc {
        font-size: 14px;
    }
    .showcase {
        padding: 80px 0;
    }
    .showcase__block {
        margin-bottom: 80px;
    }
    .showcase__image {
        height: 300px;
    }
    .showcase__card {
        padding: 28px 24px;
        width: calc(100% - 28px);
        margin: -44px 14px 0;
    }
    .showcase__block--reverse .showcase__card {
        margin: -44px 14px 0;
    }
    .showcase__card-title {
        font-size: 20px;
    }
    .standards {
        min-height: auto;
        padding: 72px 0;
    }
    .standards__grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .standards__title {
        font-size: 26px;
    }
    .layanan-cta {
        min-height: auto;
        padding: 72px 0;
    }
    .layanan-cta__title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .showcase__image {
        height: 240px;
    }
    .showcase__card {
        padding: 24px 20px;
        width: calc(100% - 20px);
        margin: -36px 10px 0;
    }
    .showcase__block--reverse .showcase__card {
        margin: -36px 10px 0;
    }
    .showcase__card-title {
        font-size: 18px;
    }
    .layanan-cta {
        padding: 60px 0;
    }
    .layanan-cta__title {
        font-size: 22px;
    }
    .layanan-cta__actions {
        flex-direction: column;
        align-items: center;
    }
    .layanan-cta__actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ==============================
   ABOUT PAGE
   ============================== */
.about-hero {
    position: relative;
    min-height: 440px;
    padding: 80px 0 32px; /* offset header (60px) + breathing room */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--background);
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.about-hero__tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 16px;
}

.about-hero__title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.about-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* Story */
.story {
    padding: 120px 0;
    background: var(--surface);
}

.story__grid {
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story__image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.story__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.story__text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
}

.story__text p:last-child {
    margin-bottom: 0;
}

.story__quote {
    margin-top: 32px;
    padding: 24px 32px;
    border-left: 4px solid var(--accent);
    background: var(--background);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.story__quote p {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    font-style: italic;
    line-height: 1.6;
}

/* Stats */
.stats {
    background: var(--text);
    padding: 60px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.stats__item {
    text-align: center;
    padding: 20px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stats__item:last-child {
    border-right: none;
}

.stats__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stats__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* ==============================
   CLIENTS
   ============================== */
.clients {
    padding: 80px 0;
    background: var(--surface);
    overflow: hidden;
}

.clients__header {
    text-align: center;
    margin-bottom: 48px;
}

.clients__header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.clients__header p,
.clients__header h3 {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
}

.clients__wrapper {
    width: 100%;
    overflow: hidden;
}

.clients__track {
    display: flex;
    gap: 44px;
    width: max-content;
    animation: marquee 24s linear infinite;
}

.clients__track:hover {
    animation-play-state: paused;
}

.clients__track a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.clients__track img,
.clients__track svg {
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Clients Responsive */
@media (max-width: 768px) {
    .clients {
        padding: 56px 0;
    }
    .clients__header {
        margin-bottom: 36px;
    }
    .clients__header h2 {
        font-size: 24px;
    }
    .clients__header p {
        font-size: 14px;
    }
    .clients__track {
        gap: 30px;
    }
    .clients__track a {
        width: 90px;
        height: 90px;
    }
    .clients__track img,
    .clients__track svg {
        width: 90px;
        height: 90px;
    }
}

/* Vision & Mission */
.vision-mission {
    padding: 120px 0;
    background: var(--background);
}

.vision-mission__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.vision-mission__card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.vision-mission__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.vision-mission__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 64, 192, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
    color: var(--accent);
}

.vision-mission__icon svg {
    width: 28px;
    height: 28px;
}

.vision-mission__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.vision-mission__desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* About Responsive */
@media (max-width: 1024px) {
    .story__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .story__image img {
        height: 360px;
    }
    .story__title {
        font-size: 28px;
    }
    .stats__number {
        font-size: 36px;
    }
    .vision-mission__grid {
        gap: 32px;
    }
    .vision-mission__card {
        padding: 36px 32px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }
    .about-hero__title {
        font-size: 28px;
    }
    .about-hero__desc {
        font-size: 14px;
    }
    .story {
        padding: 72px 0;
    }
    .story__image img {
        height: 300px;
    }
    .story__title {
        font-size: 26px;
    }
    .story__quote {
        padding: 20px 24px;
    }
    .story__quote p {
        font-size: 15px;
    }
    .stats {
        padding: 48px 0;
    }
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats__item:nth-child(2) {
        border-right: none;
    }
    .stats__item:nth-child(1),
    .stats__item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 24px 16px;
    }
    .stats__item:nth-child(3),
    .stats__item:nth-child(4) {
        padding: 24px 16px;
    }
    .stats__number {
        font-size: 32px;
    }
    .vision-mission {
        padding: 72px 0;
    }
    .vision-mission__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .vision-mission__card {
        padding: 32px 24px;
    }
    .vision-mission__title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .story__image img {
        height: 240px;
    }
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats__number {
        font-size: 28px;
    }
}

/* ==============================
   KONTAK PAGE
   ============================== */
.kontak-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--background);
}

.kontak-hero__bg {
    position: absolute;
    inset: 0;
    background: #1a1a1a;
}

.kontak-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.kontak-hero__inner {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.kontak-hero__info {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 80px 0;
}

.kontak-hero__label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #93b8ff;
    margin-bottom: 16px;
}

.kontak-hero__title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.kontak-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: 32px;
}

.kontak-hours {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    max-width: 400px;
}

.kontak-hours__header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.kontak-hours__header svg { color: #fff; }

.kontak-hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.kontak-hours__row span:first-child {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

.kontak-hero__grid {
    flex: 0 0 calc(60% - 64px);
    max-width: calc(60% - 64px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 80px 0;
}

.kontak-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    transition: all var(--transition);
    text-decoration: none;
    min-height: 200px;
}

.kontak-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.kontak-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(10, 64, 192, 0.25);
}

.kontak-card__icon img,
.kontak-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    stroke: var(--accent);
}

.kontak-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.kontak-card__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    margin-bottom: auto;
}

.kontak-card__action {
    font-size: 13px;
    font-weight: 700;
    color: #93b8ff;
    margin-top: 16px;
}

.kontak-card--cta {
    background: rgba(10, 64, 192, 0.1);
    border-color: rgba(10, 64, 192, 0.25);
    justify-content: center;
}

.kontak-card--cta .kontak-card__title {
    font-size: 20px;
    margin-bottom: 8px;
}

.kontak-card--cta .kontak-card__desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.kontak-card__btn {
    width: 100%;
    justify-content: center;
}

/* Lokasi */
.lokasi {
    padding: 100px 0;
    background: var(--surface);
}

.lokasi__header {
    text-align: center;
    margin-bottom: 48px;
}

.lokasi__tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #0a40c0;
    margin-bottom: 12px;
}

.lokasi__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.lokasi__desc {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.lokasi__map {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.lokasi__map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Contact Form */
.kontak-form {
    padding: 100px 0;
    background: var(--background);
}

.kontak-form__header {
    text-align: center;
    margin-bottom: 48px;
}

.kontak-form__tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #0a40c0;
    margin-bottom: 12px;
}

.kontak-form__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
}

.kontak-form__form {
    max-width: 900px;
    margin: 0 auto;
}

.kontak-form__row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.kontak-form__field {
    flex: 1;
}

.kontak-form__field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.kontak-form__field input,
.kontak-form__field textarea,
.kontak-form__field select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    outline: none;
    transition: border-color var(--transition);
}

.kontak-form__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%236B7280' d='M6 8L0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.kontak-form__field input:focus,
.kontak-form__field textarea:focus,
.kontak-form__field select:focus {
    border-color: var(--accent);
}

.kontak-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

.kontak-form__submit {
    width: 100%;
    height: 52px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

/* Kontak Responsive */
@media (max-width: 1024px) {
    .kontak-hero__inner {
        flex-direction: column;
        gap: 0;
    }
    .kontak-hero__info {
        flex: none;
        max-width: 100%;
        padding: 96px 0 0;
    }
    .kontak-hero__grid {
        flex: none;
        max-width: 100%;
        padding: 40px 0 60px;
    }
    .kontak-hero__title {
        font-size: 32px;
    }
    .lokasi__map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .kontak-hero {
        min-height: auto;
        padding: 0;
    }
    .kontak-hero__info {
        padding: 88px 0 0;
    }
    .kontak-hero__title {
        font-size: 28px;
    }
    .kontak-hero__grid {
        grid-template-columns: 1fr 1fr;
        padding: 32px 0 48px;
        gap: 16px;
    }
    .kontak-card {
        padding: 20px;
        min-height: 170px;
    }
    .kontak-card--cta {
        grid-column: span 2;
    }
    .kontak-hours {
        max-width: 100%;
    }
    .lokasi {
        padding: 72px 0;
    }
    .lokasi__title {
        font-size: 26px;
    }
    .lokasi__map {
        height: 300px;
        border-radius: 20px;
    }
    .kontak-form {
        padding: 72px 0;
    }
    .kontak-form__title {
        font-size: 26px;
    }
    .kontak-form__row {
        flex-direction: column;
        gap: 16px;
    }
    .kontak-form__form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .kontak-hero__grid {
        grid-template-columns: 1fr;
    }
    .kontak-card--cta {
        grid-column: span 1;
    }
    .lokasi__map {
        height: 260px;
    }
    .kontak-form__field input,
    .kontak-form__field textarea {
        font-size: 14px;
        padding: 12px 16px;
    }
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .keunggulan__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .layanan__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .proses__timeline::before {
        left: 20px;
    }
    .proses__step {
        width: 100%;
        padding: 40px 0 40px 50px;
        left: 0;
    }
    .proses__step--left {
        padding-right: 0;
    }
    .proses__step--right {
        left: 0;
        padding-left: 50px;
    }
    .proses__step::before {
        width: 12px;
        height: 12px;
        top: 50px;
        left: 14px;
        right: auto;
    }
    .proses__step--left::before {
        left: 14px;
        right: auto;
    }
    .proses__step--right::before {
        left: 14px;
    }
    .proses__card {
        max-width: 100%;
    }
    .proses__step--right .proses__card {
        margin-left: 0;
    }
    .proses__card {
        padding: 28px 24px;
        background: var(--accent);
        border-color: rgba(255, 255, 255, 0.2);
    }
    .proses__card .proses__number {
        color: #fff;
        opacity: 0.25;
    }
    .proses__card h3 {
        color: #fff;
    }
    .proses__card p {
        color: rgba(255, 255, 255, 0.9);
    }
    .proses__number {
        font-size: 32px;
    }
    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1.8fr;
        gap: 48px;
    }
    .portofolio__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio__search-input {
        width: 200px;
    }
    .project-card {
        height: 400px;
    }
    .layanan__grid .project-card {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
    .header__cta {
        display: none;
    }
    .button--nav {
        display: none;
    }
    .header__toggle {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }

    .section {
        padding: 72px 0;
    }
    .section__header {
        margin-bottom: 48px;
    }
    .section__title {
        font-size: 28px;
    }

    .hero__title {
        font-size: 28px;
    }
    .hero__subtitle {
        font-size: 15px;
    }
    .hero__actions {
        flex-wrap: wrap;
    }
    .hero__actions .btn {
        width: 160px;
    }
    .hero {
        min-height: 480px;
        height: 60vh;
    }
    .hero__content {
        padding: 90px 0 60px;
    }
    .hero__slide:nth-child(1) .hero__bg {
        background-position: center 30%;
    }
    .hero__slide:nth-child(2) .hero__bg {
        background-position: center 40%;
    }
    .hero__slide:nth-child(3) .hero__bg {
        background-position: center top;
    }

    .keunggulan__grid {
        grid-template-columns: 1fr;
    }
    .layanan__grid {
        grid-template-columns: 1fr;
    }
    .proses__timeline::before {
        left: 16px;
    }
    .proses__step {
        padding: 32px 0 32px 42px;
    }
    .proses__step--right {
        padding-left: 42px;
    }
    .proses__step::before {
        width: 10px;
        height: 10px;
        top: 40px;
        left: 11px;
    }
    .proses__step--left::before {
        left: 11px;
    }
    .proses__step--right::before {
        left: 11px;
    }
    .proses__card {
        padding: 24px 20px;
    }
    .proses__number {
        font-size: 28px;
    }
    .portofolio__grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 64px 0;
    }
    .cta-section__title {
        font-size: 28px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer__copyright .container {
        justify-content: center;
    }

    .page-hero {
        min-height: 360px;
        padding: 96px 0 32px;
    }
    .page-hero__title {
        font-size: 28px;
    }
    .page-hero__desc {
        font-size: 14px;
    }
    .layanan-hero {
        min-height: 380px;
        padding: 96px 0 32px;
    }
    .about-hero {
        min-height: 380px;
        padding: 96px 0 32px;
    }

    .portfolio-section {
        padding: 48px 0 72px;
    }
    .portfolio__toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .portfolio__filters {
        justify-content: center;
    }
    .portfolio__search-input {
        width: 100%;
    }
    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-card {
        height: 380px;
    }
    .project-content {
        padding: 32px 24px 24px;
    }
    .project-title {
        font-size: 1.25rem;
    }
    .layanan__grid .project-card {
        height: 380px;
    }

    .modal__body {
        padding: 24px;
    }
    .modal__meta {
        flex-direction: column;
        gap: 8px;
    }
    .modal__related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile: testimonial cards (v2) */
    .card {
        width: 200px;
        height: 220px;
    }
    .card .card-inner {
        padding: 68px 18px 18px 18px;
    }
    .card .card-inner .profile-pic {
        width: 46px;
        height: 46px;
        top: 14px;
        left: 14px;
    }
    .card .card-inner .quote-icon {
        width: 24px;
        height: 24px;
        top: 18px;
        right: 18px;
    }
    .card .card-inner .quote-text {
        font-size: 0.8rem;
    }
    .card .revealed-info {
        left: 18px;
    }
    .card .revealed-info .name {
        font-size: 1rem;
    }
    .card .revealed-info .profession {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 460px;
        height: 65vh;
    }
    .hero__content {
        padding: 88px 0 56px;
    }
    .hero__title {
        font-size: 24px;
    }
    .hero__subtitle {
        font-size: 14px;
    }
    .hero__dot {
        width: 8px;
        height: 8px;
    }
    .hero__dot.active {
        width: 22px;
    }
    .page-hero,
    .layanan-hero,
    .about-hero {
        min-height: 340px;
        padding: 88px 0 28px;
    }
    .page-hero__title,
    .layanan-hero__title,
    .about-hero__title {
        font-size: 24px;
    }
    .footer__copyright .container {
        justify-content: center;
    }
    .portfolio__grid {
        grid-template-columns: 1fr;
    }
    .project-card {
        height: 340px;
    }
    .project-content {
        padding: 28px 20px 20px;
    }
    .project-title {
        font-size: 1.125rem;
    }
    .layanan__grid .project-card {
        height: 340px;
    }

    .card {
        width: 200px;
        height: 220px;
    }
    .card .card-inner {
        padding: 68px 18px 18px 18px;
    }
    .card .card-inner .profile-pic {
        width: 46px;
        height: 46px;
        top: 14px;
        left: 14px;
    }
    .card .card-inner .quote-icon {
        width: 24px;
        height: 24px;
        top: 18px;
        right: 18px;
    }
    .card .card-inner .quote-text {
        font-size: 0.8rem;
    }
    .card .revealed-info {
        left: 18px;
    }
    .card .revealed-info .name {
        font-size: 1rem;
    }
    .card .revealed-info .profession {
        font-size: 0.65rem;
    }
}

/* ==============================
   TOUCH DEVICES — disable hover, always show card details
   (hover: none) catches real touch devices regardless of width.
   1024px breakpoint is fallback for hybrid devices.
   ============================== */
@media (hover: none), (max-width: 1024px) {
    .project-card:hover .project-img,
    .portfolio__card:hover .project-img {
        transform: none;
    }
    .project-card:hover .project-overlay,
    .portfolio__card:hover .project-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.5) 45%,
            rgba(0, 0, 0, 0.08) 100%
        );
    }
    .project-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.5) 45%,
            rgba(0, 0, 0, 0.08) 100%
        );
    }
    .project-details {
        grid-template-rows: 1fr;
        opacity: 1;
        margin-top: 12px;
        transition: none;
    }
    .project-card:hover .project-details,
    .portfolio__card:hover .project-details {
        margin-top: 12px;
    }
    .project-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 12px;
    }
    .project-content {
        padding: 24px 20px 20px;
    }
}

@media (hover: none) and (min-width: 769px) and (max-width: 1024px) {
    .project-desc {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

/* ==============================
   TOUCH DEVICES — show testimonial name always (no hover needed)
   ============================== */
@media (hover: none), (max-width: 1024px) {
  .card .revealed-info {
    opacity: 1;
    transform: translateY(0);
  }
  .card .card-inner {
    transform: translateY(-44px);
  }
  .card:hover .card-inner,
  .card.active .card-inner {
    transform: translateY(-44px);
  }
  .card .card-inner .quote-icon {
    fill: var(--accent);
    opacity: 0.4;
  }
  .card .card-inner .profile-pic {
    border-color: var(--accent);
  }
}

/* ============================================
   BLOG MODULE
   ============================================ */
.blog-hero {
    position: relative;
    min-height: 360px;
    padding: 80px 0 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--background);
}

.blog-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a40c0 0%, #07277a 100%);
}

.blog-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-hero__tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.blog-hero__title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.blog-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.blog-list {
    padding: 80px 0 120px;
    background: var(--background);
}

.blog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.blog-search {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 4px 6px 4px 18px;
    min-width: 280px;
}

.blog-search input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    color: #1e1e1e;
}

.blog-search button {
    background: var(--accent);
    color: #fff;
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.blog-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-filter {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: var(--surface);
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-filter:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.blog-filter.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 48px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 64, 192, 0.12);
}

.blog-featured__image {
    position: relative;
    min-height: 320px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    overflow: hidden;
}

.blog-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-featured__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-featured__content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured__title {
    font-size: 26px;
    font-weight: 700;
    color: #1e1e1e;
    margin: 12px 0 16px;
    line-height: 1.3;
}

.blog-featured__excerpt {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.blog-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 64, 192, 0.1);
}

.blog-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-soft), #f3f4f6);
}

.blog-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.blog-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px;
    color: #1e1e1e;
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.blog-card__title a:hover {
    color: var(--accent);
}

.blog-card__excerpt {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #9ca3af;
    margin-top: auto;
}

.blog-empty {
    text-align: center;
    padding: 80px 20px;
    color: #6b7280;
    background: var(--surface);
    border-radius: 16px;
    border: 1px dashed #d1d5db;
}

.blog-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.blog-pagination nav {
    display: flex;
    gap: 4px;
}

.blog-pagination svg {
    width: 18px;
    height: 18px;
}

.blog-pagination span[aria-current="page"] span,
.blog-pagination a {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: var(--surface);
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.blog-pagination span[aria-current="page"] span {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.blog-pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ARTICLE DETAIL */
.blog-article__hero {
    padding: 100px 0 40px;
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--background) 100%);
}

.blog-article__crumbs {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-article__crumbs a {
    color: var(--accent);
    text-decoration: none;
}

.blog-article__title {
    font-size: 38px;
    font-weight: 800;
    color: #1e1e1e;
    line-height: 1.25;
    margin: 12px 0 20px;
    max-width: 820px;
}

.blog-article__lead {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
    max-width: 820px;
}

.blog-article__meta {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #6b7280;
    flex-wrap: wrap;
}

.blog-article__meta strong {
    color: #1e1e1e;
}

.blog-article__cover {
    padding: 32px 0;
    background: var(--background);
}

.blog-article__cover img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.blog-article__body {
    padding: 24px 24px 80px;
    max-width: 800px;
}

.blog-article__content {
    font-size: 16px;
    line-height: 1.85;
    color: #1f2937;
}

.blog-article__content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1e1e1e;
    margin: 36px 0 16px;
    letter-spacing: -0.3px;
}

.blog-article__content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e1e1e;
    margin: 28px 0 12px;
}

.blog-article__content p {
    margin: 0 0 18px;
}

.blog-article__content ul,
.blog-article__content ol {
    margin: 0 0 18px;
    padding-left: 24px;
}

.blog-article__content li {
    margin-bottom: 8px;
}

.blog-article__content a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.blog-article__content blockquote {
    border-left: 4px solid var(--accent);
    padding: 4px 0 4px 20px;
    margin: 24px 0;
    font-style: italic;
    color: #4b5563;
}

.blog-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

.blog-article__content code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.blog-article__content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 16px 20px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 24px 0;
}

.blog-article__tags {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.blog-article__tags > span:first-child {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.blog-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.blog-article__share {
    margin-top: 24px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.blog-article__share > span {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.blog-article__share a {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.blog-article__share a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.blog-related {
    padding: 80px 0;
    background: var(--background);
}

.blog-related__title {
    font-size: 28px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 32px;
    text-align: center;
}

@media (max-width: 900px) {
    .blog-hero__title { font-size: 30px; }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .blog-article__title { font-size: 28px; }
    .blog-article__body { padding: 24px 16px 60px; }
}

@media (max-width: 600px) {
    .blog-hero { min-height: 280px; padding: 64px 0 24px; }
    .blog-hero__title { font-size: 24px; }
    .blog-toolbar { flex-direction: column; align-items: stretch; }
    .blog-search { min-width: 0; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured__content { padding: 28px 24px; }
    .blog-featured__title { font-size: 22px; }
    .blog-article__hero { padding: 80px 0 32px; }
    .blog-article__title { font-size: 24px; }
    .blog-article__content { font-size: 15px; }
}
