/* =====================================================
   BASE
===================================================== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'IBM Plex Mono', monospace;
    background: radial-gradient(circle at top, #111 0%, #000 60%);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.section-title {
    font-family: 'Raleway', sans-serif;
}

/* =====================================================
   GRID SYSTEM
===================================================== */
.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar-wrapper {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
}

.navbar-custom {
    width: 1110px;
    height: 70px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 0 24px;
    display: flex;
    align-items: center;
}

.navbar-custom nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-title {
    font-size: 13px;
}

.navbar-menu {
    display: flex;
    gap: 28px;
    font-size: 14px;
    color: #aaa;
}

.navbar-menu a:hover {
    color: #fff;
}

.navbar-social {
    display: flex;
    gap: 16px;
    color: #777;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn-glow {
    display: inline-block;
    padding: 14px 28px;
    background: #4CAF00;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 0 25px rgba(76,175,0,.45);
}

.btn-glow:hover {
    background: #5fd400;
}

.btn-case {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
}

.btn-case.fintech { background: #FF9800; color: #fff; }
.btn-case.edtech  { background: #4C6FFF; color: #fff; }
.btn-case.pharma  { background: #2FAE8F; color: #fff; }

/* =====================================================
   HERO
===================================================== */
.hero {
    min-height: 700px;
    padding-top: 120px;
}

.hero-text {
    grid-column: 2 / span 5;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-text p {
    max-width: 420px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-avatar {
    grid-column: 7 / span 5;
    display: flex;
    justify-content: center;
}

.hero-avatar img {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    object-fit: cover;
}

/* =====================================================
   WORKED WITH
===================================================== */
.worked-with {
    grid-column: 2 / -2;
    margin-top: 64px;
}

.worked-with span {
    font-size: 13px;
    color: #777;
}

.brands {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 40px;
    align-items: center;
}

.brands img {
    max-height: 48px;
    justify-self: center;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.brands img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* =====================================================
   CASE STUDIES
===================================================== */
.case-studies {
    background: #fff;
    color: #111;
    min-height: 700px;
    padding-top: 120px;
    padding-bottom: 120px;
}

.case-header {
    margin-bottom: 48px;
    text-align: center;
}

.case-header-text {
    grid-column: 1 / -1;  
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-header-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.case-header-text p {
    max-width: 420px;  
    font-size: 14px;
    line-height: 1.6;
    color: #777;
}

.case-item {
    margin-bottom: 56px;
}

.case-text.left { grid-column: 2 / span 4; }
.case-text.right { grid-column: 8 / span 4; }

.case-image.right { grid-column: 7 / span 5; }
.case-image.left { grid-column: 2 / span 5; }

.case-text h3 {
    font-size: 20px;
    margin: 12px 0;
}

.case-text p {
    font-size: 14px;
    color: #666;
    max-width: 360px;
    margin-bottom: 20px;
}

.case-image img {
    width: 100%;
    max-width: 520px;   /* BATASI LEBAR */
    height: 300px;      /* KUNCI TINGGI */
    object-fit: cover;  /* POTONG RAPI */
    border-radius: 12px;
}

/* TAG */
.tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.fintech { background: #FFF1D6; color: #FF9800; }
.edtech  { background: #E7EDFF; color: #4C6FFF; }
.pharma  { background: #E6F6F0; color: #2FAE8F; }

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials {
    background: radial-gradient(circle at top, #111 0%, #000 60%);
    padding: 120px 0;
}

.testimonials-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 72px;
}

.testimonials-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.testimonials-header p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

.testimonials-grid {
    row-gap: 40px;
}

.testimonial-card {
    position: relative;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 32px;
    background: rgba(255,255,255,0.02);
}

.testimonial-card.left { grid-column: 2 / span 5; }
.testimonial-card.right { grid-column: 7 / span 5; }

.quote {
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 48px;
    color: #fff;
    opacity: 0.9;
    font-family: 'Raleway', sans-serif;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 28px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}


/* =====================================================
   RECENT WORK
===================================================== */
.recent-work {
    background: #fff;
    color: #111;
    padding: 120px 0;
}

.recent-header {
    margin-bottom: 72px;
    text-align: center;
}

.recent-header-text {
    grid-column: 2 / -2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recent-header-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.recent-header-text p {
    max-width: 520px;
    font-size: 14px;
    line-height: 1.6;
    color: #777;
}

.recent-wrapper {
    max-width: 1040px; 
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.recent-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
}

.recent-item h3 {
    font-size: 20px;
    margin: 20px 0 12px;
}

.recent-item p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 24px;
}

/* =====================================================
   GET IN TOUCH
===================================================== */
.contact {
    background: radial-gradient(circle at top, #111 0%, #000 60%);
    color: #fff;
    padding: 140px 0;
}

.contact-header {
    margin-bottom: 64px;
    text-align: center;
}

.contact-header-text {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-header-text p {
    max-width: 520px;
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

/* FORM */
.contact-form-wrapper {
    justify-content: center;
}

.contact-form {
    grid-column: 5 / span 4;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 12px;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 13px;
    margin-bottom: 24px;
}

.contact-form textarea {
    min-height: 120px;
    resize: none;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: #000;
    padding: 40px 0;
    color: #777;
    border-top: 1px solid #111;
}

.footer-center {
    grid-column: 1 / -1;  
    text-align: center;  
}

.footer-center strong {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-center p {
    font-size: 12px;
    color: #777;
}