/*
Theme Name: Lucas Nygaard
Theme URI: https://lucasnygaard.com
Author: Lucas Nygaard
Author URI: https://lucasnygaard.com
Description: Fractional CMO & Growth Partner - Personal brand theme
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lucasnygaard
*/


/* =========================
  OUR CLIENTS
========================= */
.full-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 20px;
}

.full-image img {
    width: 100%;
    height: auto;
    display: block;
}
.container-image {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}
.our-clients {
    background: #ffffff;
    padding: 100px 0;
    text-align: center;
}

/* HEADER */
.clients-header {
    max-width: 720px;
    margin: 0 auto 60px;
}

/* PILL */
.pill {
    display: inline-block;
    background: #0a0a0a;
    color: #fff;
    font-size: 12px;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* TITLE */
.clients-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* DESC */
.clients-desc {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

/* STATS GRID */
.clients-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARD */
.stat-card {
    background: #fff;
    padding: 35px 20px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 
        0 4px 10px rgba(0,0,0,0.06),
        0 12px 30px rgba(0,0,0,0.10);
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* ANGKA */
.stat-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* LABEL */
.stat-card p {
    font-size: 14px;
    color: #6b7280;
}

/* MOBILE */
@media (max-width: 768px) {
    .clients-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-title {
        font-size: 32px;
    }
}
/*OURCLIENTBRANDS*/
.clients-brands {
    background: #f3f4f6;
    padding: 100px 0;
    text-align: center;
}

/* HEADER */
.clients-brands-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.clients-brands-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.clients-brands-header p {
    color: #6b7280;
    font-size: 16px;
}

/* GRID */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* CARD */
.brand-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;

    box-shadow: 
        0 4px 10px rgba(0,0,0,0.06),
        0 8px 20px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.brand-card:hover {
    transform: translateY(-4px);
}

/* LOGO */
.brand-card img {
    max-height: 60px;   /* BESARIN */
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* MOBILE */
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/*OURCLIENTINDUSTRIES*/
/* FORCE SECTION */
.clients-industries {
    background: #ffffff;
    padding: 100px 0;
    text-align: center;
}

/* HEADER */
.clients-industries .industries-header {
    margin-bottom: 60px;
}

.clients-industries .industries-header h2 {
    font-size: 48px;
    font-weight: 700;
}

/* GRID FIX (INI YANG PALING PENTING) */
.clients-industries .industries-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

/* CARD */
.clients-industries .industry-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: left;

    box-shadow: 
        0 2px 6px rgba(0,0,0,0.04),
        0 6px 14px rgba(0,0,0,0.06);

    transition: 0.3s;
}

/* ICON */
.clients-industries .industry-icon {
    width: 44px;
    height: 44px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* TEXT */
.clients-industries .industry-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.clients-industries .industry-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
    .clients-industries .industries-grid {
        grid-template-columns: 1fr !important;
    }
}

/* OUR CLIENTS SAY */

.clients-say {
    background: #f3f4f6;
    padding: 100px 0;
    text-align: center;
}

/* HEADER */
.clients-say-header {
    margin-bottom: 50px;
}

.clients-say-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.clients-say-header p {
    color: #6b7280;
    font-size: 16px;
}

/* GRID */
.clients-say-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: left;

    box-shadow: 
        0 4px 12px rgba(0,0,0,0.05),
        0 10px 25px rgba(0,0,0,0.06);

    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

/* QUOTE */
.quote {
    font-size: 28px;
    margin-bottom: 15px;
}

/* TEXT */
.testimonial-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* FOOTER */
.testimonial-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
}

.testimonial-footer strong {
    display: block;
    font-size: 14px;
}

.testimonial-footer span {
    font-size: 12px;
    color: #6b7280;
}

/* MOBILE */
@media (max-width: 768px) {
    .clients-say-grid {
        grid-template-columns: 1fr;
    }
}

/* READY SECTION */

.clients-ready {
    background: #ffffff;
    padding: 50px 0;
}

.clients-ready-box {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 70px 40px;
    border-radius: 30px;
}

/* TITLE */
.clients-ready-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}
.clients-ready-box h2 {
    color: #fff !important;
}
/* DESC */
.clients-ready-box p {
    color: #d1d5db;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* BUTTONS */
.clients-ready-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* PRIMARY */
.btn-light {
    background: #fff;
    color: #000;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

/* OUTLINE */
.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
}

/* HOVER */
.btn-light:hover {
    opacity: 0.9;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
    .clients-ready-box {
        padding: 50px 20px;
    }

    .clients-ready-box h2 {
        font-size: 32px;
    }
}

/* FOOTER SECONDARY */

.footer-secondary {
    background: #000;
    color: #fff;
    padding: 60px 0 40px;
}

/* TOP */
.footer-secondary-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* LEFT */
.footer-secondary-left h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-secondary-left p {
    color: #9ca3af;
    font-size: 14px;
}

/* RIGHT */
.footer-secondary-right {
    display: flex;
    gap: 25px;
}

.footer-secondary-right a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
}

.footer-secondary-right a:hover {
    color: #fff;
}

/* DIVIDER */
.footer-secondary-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 30px 0;
}

/* BOTTOM */
.footer-secondary-bottom {
    text-align: center;
}

.footer-secondary-bottom p {
    color: #9ca3af;
    font-size: 13px;
}
.footer-secondary-left h3 {
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-secondary-top {
        flex-direction: column;
        gap: 20px;
    }

    .footer-secondary-right {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* =========================
   LAYOUT
========================= */
.insight-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px; /* 🔥 kecilkan dari 360 → 300 */
    gap: 64px;
    align-items: start;
}

.insight-main {
    max-width: 920px; /* 🔥 balance dengan sidebar */
    width: 100%;
}

/* =========================
   SIDEBAR CTA
========================= */
.insight-sidebar {
    position: sticky;
    top: 200px;
    align-self: start;
    max-width: 280px;
    width: 100%;
}

/* =========================
   CTA CARD (PORTRAIT)
========================= */
/* CTA CARD */
.insight-cta {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

/* IMAGE WRAPPER */
.insight-cta-image {
    width: 100%;
    height: 100%;
    background: #000;
}

/* IMAGE */
.insight-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 BALIK KE COVER */
    object-position: center top; /* 🔥 KUNCI POSISI */
    display: block;
}
/* =========================
   CTA OVERLAY (FIXED CENTER)
========================= */
.insight-cta-box {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);

    width: 85%;
    background: #fff;
    padding: 20px 16px;
    border-radius: 20px;
    text-align: center;

    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* TITLE */
.insight-cta-box h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

/* BUTTON */
.insight-cta-box .btn-primary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid #000;
    text-decoration: none;
    font-size: 14px;
    background: #fff;
    color: #000;
}

.insight-cta-box .btn-primary:hover {
    background: #000;
    color: #fff;
}

/* =========================
   CATEGORY
========================= */
.insight-category {
    display: inline-block;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

/* =========================
   TITLE & EXCERPT
========================= */
.insight-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 16px;
}

.insight-excerpt {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 640px;
}

/* =========================
   META
========================= */
.insight-meta {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 32px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

/* AUTHOR */
.insight-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 999px;
}

.author-info strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

/* DIVIDER */
.insight-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

/* INFO */
.insight-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.insight-info .date {
    font-size: 14px;
    color: #6b7280;
}

.insight-info .reading {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* =========================
   FEATURED IMAGE
========================= */
.insight-featured img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
}

/* =========================
   CONTENT TYPOGRAPHY
========================= */
.insight-body {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.insight-body h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.insight-body p {
    margin-bottom: 16px;
}

.insight-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width: 1024px) {

    .insight-layout {
        display: flex;
        flex-direction: column;
    }

    .insight-main {
        order: 1;
    }

    .insight-sidebar {
        order: 2;
        position: static;
        margin-top: 40px;
        max-width: 100%;
    }

    .insight-cta-box {
        position: relative;
        transform: none;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: -60px;
    }
}
/* =========================
   SHARE
========================= */
.insight-share {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.insight-share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insight-share-buttons {
    display: flex;
    gap: 12px;
}

.insight-share-buttons a {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111827;
    transition: all 0.2s ease;
}

.insight-share-buttons a:hover {
    background: #111827;
    color: #fff;
}


/* =========================
   AUTHOR CARD
========================= */
.insight-author-card {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    padding: 28px;
    background: #f3f4f6;
    border-radius: 24px;
    align-items: flex-start;
}

/* AVATAR */
.author-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    object-fit: cover;
}

/* CONTENT */
.author-content h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
}

.author-bio {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    max-width: 520px;
    margin-bottom: 14px;
}

/* LINKS */
.author-links {
    display: flex;
    gap: 20px;
}

.author-links a {
    font-size: 14px;
    color: #111827;
    text-decoration: none;
}

.author-links a:hover {
    text-decoration: underline;
}
@media (max-width: 640px) {

    /* HEADER */
    .insight-share-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* BUTTON CONTAINER */
    .insight-share-buttons {
        width: 100%;
        display: flex;
        gap: 12px;
    }

    /* BUTTON STYLE (PILL) */
    .insight-share-buttons a {
        flex: 1;
        height: 48px;
        border-radius: 999px;
        border: 1px solid #e5e7eb;
        font-size: 14px;

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

        background: #fff;
    }

    .insight-share-buttons a:hover {
        background: #111827;
        color: #fff;
    }

}
/* =========================
   MOBILE
========================= */
@media (max-width: 640px) {

    .insight-author-card {
        flex-direction: column;
    }

    .insight-share-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
/* =========================
   SHARE CLEAN FINAL
========================= */

.insight-share {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.insight-share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insight-share-buttons {
    display: flex;
    gap: 12px;
}

/* DESKTOP */
.insight-share-buttons a {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111827;
}


/* =========================
   🔥 MOBILE FIX TOTAL
========================= */
@media (max-width: 640px) {

    .insight-share-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .insight-share-buttons {
        width: 100%;
        display: flex;
        gap: 12px;
    }

    .insight-share-buttons a {
        flex: 1 !important;
        width: 100% !important;
        height: 48px !important;
        border-radius: 999px;
        font-size: 14px;

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

        background: #fff;
    }

}
/* =========================
  INSIGHT HEADER
========================= */
.insight-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

/* TITLE */
.insight-header-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* DESC */
.insight-header-desc {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* =========================
   SEARCH
========================= */
.insight-search {
    margin-bottom: 20px;
}

.insight-search input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    outline: none;
}

.insight-search input:focus {
    border-color: #111;
}

/* =========================
   FILTER BUTTONS
========================= */
.insight-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* BUTTON */
.insight-filter {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    text-decoration: none;
    color: #111;
    background: #fff;
    transition: all 0.2s ease;
}

/* ACTIVE */
.insight-filter.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* HOVER */
.insight-filter:hover {
    border-color: #000;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .insight-header-title {
        font-size: 28px;
    }

    .insight-header-desc {
        font-size: 14px;
    }

    .insight-search input {
        padding: 12px 16px;
    }
}
/* =========================
  ARCHIVE INSIGHT
========================= */
.insight-archive {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* =========================
   FEATURED
========================= */
.insight-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.insight-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.insight-featured-content h2 {
    font-size: 28px;
    margin: 12px 0;
}

.insight-featured-content p {
    color: #6b7280;
    margin-bottom: 16px;
}

.insight-meta {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.insight-link {
    font-weight: 600;
}

/* =========================
   GRID
========================= */
.insight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* CARD */
.insight-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.insight-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.insight-card-content {
    padding: 20px;
}

.insight-card-content h3 {
    font-size: 18px;
    margin: 10px 0;
}

.insight-card-content p {
    font-size: 14px;
    color: #6b7280;
}

.insight-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 16px;
}

/* BADGE */
.insight-badge {
    display: inline-block;
    background: #111;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
}

.insight-badge.small {
    font-size: 10px;
}
.insight-count {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

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

    .insight-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
  INSIGHT CTA SECTION
========================= */
.insight-cta-section {
    margin-top: 80px;
    background: #f9fafb;
    padding: 80px 20px;
    text-align: center;
}

/* INNER */
.insight-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

/* TITLE */
.insight-cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* DESC */
.insight-cta-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* =========================
   FORM
========================= */
.insight-cta-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

/* INPUT */
.insight-cta-form input {
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    width: 260px;
    font-size: 14px;
    outline: none;
}

/* BUTTON */
.insight-cta-form button {
    padding: 12px 20px;
    border-radius: 999px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.insight-cta-form button:hover {
    opacity: 0.9;
}

/* NOTE */
.insight-cta-note {
    font-size: 12px;
    color: #9ca3af;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 640px) {

    .insight-cta-title {
        font-size: 24px;
    }

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

    .insight-cta-form input {
        width: 100%;
        max-width: 300px;
    }

    .insight-cta-form button {
        width: 100%;
        max-width: 300px;
    }
}
/* ==================== */
/* FOOTER */
.insight-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reading-time {
    font-size: 12px;
    color: #9ca3af;
}

.read-link {
    font-size: 13px;
    text-decoration: none;
    color: #111827;
}


/* =========================
   BUTTON
========================= */
.insights-more {
    text-align: center;
    margin-top: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    text-decoration: none;
}


/* =========================
   MOBILE
========================= */
@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insights-title {
        font-size: 28px;
    }
}

/* =========================
  CASE STUDIES
========================= */
/* =========================
  CASE STUDIES PAGE HEADER
========================= */
.cs-page-header {
    margin-bottom: 40px;
}

/* TITLE */
.cs-page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    color: #111827;
}

/* DESC */
.cs-page-desc {
    font-size: 16px;
    color: #6b7280;
    max-width: 520px;
    line-height: 1.6;
}

/* =========================
  MOBILE
========================= */
@media (max-width: 768px) {

    .cs-page-title {
        font-size: 28px;
    }

    .cs-page-desc {
        font-size: 14px;
    }
}

.cs-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* =========================
  CARD
========================= */
.cs-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.cs-card:hover {
    transform: translateY(-4px);
}

/* IMAGE */
.cs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.cs-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* BADGE */
.cs-badge {
    display: inline-block;
    background: #111;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
	 width: fit-content;
}

/* TITLE */
.cs-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* SUBTITLE */
.cs-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

/* DESC */
.cs-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* STATS */
.cs-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
}

.cs-stats strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.cs-stats span {
    font-size: 12px;
    color: #6b7280;
}

/* BUTTON */
.cs-button {
    display: inline-block;
    padding: 10px 18px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    font-size: 14px;
    width: fit-content;
}

/* =========================
  MOBILE
========================= */
@media (max-width: 768px) {

    .cs-card {
        grid-template-columns: 1fr;
    }

    .cs-card-content {
        padding: 20px;
    }

    .cs-title {
        font-size: 20px;
    }

    .cs-stats {
        gap: 20px;
    }
}

/* =========================
   CASE STUDY HEADER ONLY
========================= */

.cs-hero {
    text-align: center;
    padding-top: 40px;
}

.cs-tag {
    display: inline-block;
    margin-bottom: 24px;
    padding: 6px 14px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
}

.cs-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 24px;
}


/* =========================
   VIDEO
========================= */
.cs-video {
    width: 100%;
    margin-top: 24px;

    position: relative;
    padding-top: 56.25%;
    border-radius: 20px;
    overflow: hidden;
}

.cs-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* =========================
   DESCRIPTION
========================= */
.cs-description {
    margin-top: 20px;
    text-align: center;
    color: #6b7280;
    line-height: 1.7;
}
/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .cs-title {
        font-size: 40px;
    }

    .cs-video {
        padding-top: 56.25%;
    }
}

/* =========================
  CHALLENGE SECTION
========================= */
.cs-challenge {
    margin-top: 80px;
    background: #F9FAFB;
    padding: 40px 0;
}

/* TITLE */
.cs-section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* DESC */
.cs-section-desc {
    max-width: 720px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* =========================
   GRID (MOBILE)
========================= */
.cs-challenge-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* CARD */
.cs-challenge-card {
    width: 100%;
    aspect-ratio: 358 / 240; /* SAMA DENGAN SOLUTION MOBILE */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.cs-challenge-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* =========================
   DESKTOP (LG)
========================= */
@media (min-width: 1024px) {

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

    .cs-challenge-card {
        aspect-ratio: 1 / 1; /* square di desktop */
        border-radius: 24px;
    }
}
/* =========================
  SOLUTION SECTION
========================= */
.cs-solution {
    margin-top: 80px;
    background: #F9FAFB;
    padding: 40px 0;
	margin-top:40px
}
/* WRAPPER (IKUT CONTAINER) */
.cs-sol-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* =========================
   IMAGE BESAR
========================= */
.cs-sol-image-box {
    width: 100%;
    aspect-ratio: 358 / 240;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
}

/* =========================
   GRID
========================= */
.cs-sol-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* CARD */
.cs-sol-card {
    width: 100%;
    aspect-ratio: 358 / 240;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* IMAGE */
.cs-sol-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* =========================
   DESKTOP (LG)
========================= */
@media (min-width: 1024px) {

    .cs-sol-wrap {
        width: 100%;
        max-width: 1240px;
        margin: 0 auto;
    }

    .cs-sol-image-box {
        aspect-ratio: 1240 / 513;
        max-height: 650px;
        margin-bottom: 24px;
    }

    .cs-sol-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .cs-sol-card {
        aspect-ratio: 1 / 1.25;
    }
}

/* =========================
  RESULT SECTION
========================= */
.cs-result {
    margin-top: 80px;
}

/* =========================
   TOP BLACK
========================= */
.cs-result-top {
    background: #0B0B0B;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cs-result-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.cs-result-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.cs-result-item h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.cs-result-label {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 6px;
}

.cs-result-item span {
    font-size: 12px;
    opacity: 0.6;
}

/* =========================
   CONTENT
========================= */
.cs-result-content {
    padding: 40px 0;
}

.cs-result-desc {
    max-width: 720px;
    margin-bottom: 32px;
    color: #6B7280;
    line-height: 1.6;
}

/* =========================
   GRID
========================= */
.cs-result-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* IMAGE NORMAL */
.cs-result-card {
    width: 100%;
    aspect-ratio: 358 / 240;
    border-radius: 20px;
    overflow: hidden;
}

/* IMAGE BESAR (MOBILE = SAMA) */
.cs-result-image-box {
    width: 100%;
    aspect-ratio: 358 / 240;
    border-radius: 20px;
    overflow: hidden;
}

/* IMAGE */
.cs-result-card img,
.cs-result-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 1024px) {

    .cs-result-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .cs-result-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* IMAGE BESAR */
    .cs-result-image-box {
        grid-column: span 2;
        aspect-ratio: 1240 / 513; /* 🔥 seperti solution */
        max-height: 650px;
    }

    /* IMAGE NORMAL */
    .cs-result-card {
        aspect-ratio: 4 / 3;
    }
}