/* ============================================ */
/* RESET & VARIABLES                            */
/* ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --red: #ED1C24;
    --red-deep: #C4161C;
    --red-light: #FEE2E2;
    --teal: #00A99D;
    --teal-deep: #008B80;
    --teal-light: #CCFBF1;
    --navy: #1B2631;
    --navy-soft: #2C3E50;
    --navy-light: #E8ECEF;
    --ink: #0A0A0A;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --bg: #FFFFFF;
    --bg-warm: #F8FAFB;
    --border: #E5E7EB;
    --yellow: #FACC15;
    --font: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --gradient: linear-gradient(135deg, var(--red) 0%, var(--teal) 100%);
    --gradient-red: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
    --gradient-teal: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
    --gradient-navy: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    line-height: 1.6;
    color: var(--navy);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Logo */
.logo-img { height: 48px; width: auto; transition: transform 0.3s; }
.logo:hover .logo-img { transform: scale(1.05); }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

/* Cursor */
.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    border-radius: 50%; opacity: 0;
    transition: opacity 0.3s;
}
.cursor-dot { width: 8px; height: 8px; background: var(--red); }
.cursor-outline {
    width: 36px; height: 36px;
    border: 2px solid var(--red);
    transition: transform 0.15s ease-out, opacity 0.3s, background 0.3s, border-color 0.3s;
}
@media (max-width: 992px) { .cursor-dot, .cursor-outline { display: none; } }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0;
    width: 100%; z-index: 1000;
    padding: 14px 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
    font-size: 0.9rem; font-weight: 500;
    color: var(--navy);
    transition: color 0.2s;
    position: relative;
}
.nav-menu a::after {
    content: ''; position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}
.nav-menu a:hover { color: var(--red); }
.nav-menu a:hover::after { width: 100%; }
.btn-nav {
    background: var(--gradient);
    background-size: 200% 200%;
    color: white !important;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-nav::after { display: none; }
.btn-nav:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(237, 28, 36, 0.4);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* HERO */
.hero {
    position: relative;
    padding: 130px 0 0;
    overflow: hidden;
    background: #FFFFFF;
    min-height: 100vh;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.shape-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--red) 0%, transparent 70%);
    top: -200px; right: -150px;
    animation: float1 10s ease-in-out infinite;
    opacity: 0.25;
}
.shape-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    bottom: -100px; left: -150px;
    animation: float2 12s ease-in-out infinite;
    opacity: 0.3;
}
.shape-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    top: 30%; left: 30%;
    animation: float1 14s ease-in-out infinite reverse;
    opacity: 0.2;
}
.shape-4 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--red) 0%, transparent 70%);
    bottom: 20%; right: 10%;
    animation: float2 8s ease-in-out infinite;
    opacity: 0.2;
}
@keyframes float1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-40px, 40px) scale(1.1); } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(40px, -30px) scale(1.15); } }
.cable-line { position: absolute; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: 0.5; }
.line-1 { top: 30%; left: 0; width: 40%; animation: dash 8s linear infinite; }
.line-2 { bottom: 40%; right: 0; width: 50%; animation: dash 10s linear infinite reverse; }
@keyframes dash { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}
.badge-hero {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.08), rgba(0, 169, 157, 0.08));
    color: var(--red);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    border: 1.5px solid rgba(237, 28, 36, 0.15);
}
.pulse-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; position: relative; }
.pulse-dot::after {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%; background: var(--red);
    opacity: 0.4; animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.4; } 100% { transform: scale(2.2); opacity: 0; } }

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -2.5px;
    margin-bottom: 28px;
    color: var(--navy);
}
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.spark { display: inline-block; animation: sparkle 2s ease-in-out infinite; }
@keyframes sparkle { 0%, 100% { transform: rotate(0) scale(1); } 50% { transform: rotate(15deg) scale(1.2); } }

.hero-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gradient);
    background-size: 200% 200%;
    color: white;
    padding: 18px 34px;
    border-radius: 100px;
    font-weight: 600; font-size: 0.95rem;
    transition: all 0.4s;
    border: none; cursor: pointer;
}
.btn-primary:hover {
    background-position: 100% 100%;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -12px rgba(237, 28, 36, 0.5);
}
.btn-primary i { transition: transform 0.3s; }
.btn-primary:hover i { transform: translateX(4px); }
.btn-ghost {
    display: inline-flex; align-items: center;
    padding: 18px 34px;
    border-radius: 100px;
    font-weight: 600; font-size: 0.95rem;
    border: 2px solid var(--navy);
    color: var(--navy);
    transition: all 0.3s;
}
.btn-ghost:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -12px rgba(0, 169, 157, 0.5);
}

.hero-visual { position: relative; }
.hero-img-wrapper { position: relative; padding: 20px; }
.img-blob {
    position: absolute; inset: 0;
    background: var(--gradient);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 12s ease-in-out infinite;
    z-index: 0;
}
@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
.hero-img-wrapper img {
    position: relative; z-index: 1;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    width: 100%; height: 520px;
    object-fit: cover;
    animation: morph 12s ease-in-out infinite;
}
.floating-badge {
    position: absolute;
    background: white;
    padding: 14px 20px;
    border-radius: 20px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.2);
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite;
    border: 2px solid var(--navy);
}
.badge-hdg { top: 60px; left: -30px; }
.badge-sni { bottom: 100px; right: -30px; animation-delay: 1.5s; }
.badge-fast { bottom: 20px; left: 40px; animation-delay: 3s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-14px) rotate(2deg); }
}
.floating-badge i {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: white;
    flex-shrink: 0;
}
.badge-hdg i { background: var(--gradient-red); }
.badge-sni i { background: var(--gradient-teal); }
.badge-fast i { background: var(--gradient); }
.floating-badge span { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; line-height: 1.2; color: var(--navy); }

.hero-stats-wrapper {
    position: relative; z-index: 2;
    background: var(--navy);
    padding: 40px 0;
    margin-top: 40px;
}
.hero-stats { display: flex; justify-content: space-around; align-items: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 700;
    letter-spacing: -1.5px; color: white;
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.75rem; font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 2px;
}
.stat-label {
    font-size: 0.75rem; color: var(--gray-light);
    margin-top: 8px; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
}
.stat-divider { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent); }

/* MARQUEE */
.marquee {
    background: linear-gradient(90deg, #ED1C24 0%, #00A99D 50%, #ED1C24 100%);
    background-size: 200% 100%;
    color: white;
    padding: 22px 0;
    overflow: hidden;
    animation: gradientShift 8s linear infinite;
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.marquee-content {
    display: flex; gap: 40px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 700;
    letter-spacing: 4px;
}
.marquee-content .dot { color: white; font-size: 1.5rem; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SECTION COMMON */
section { padding: 120px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--red);
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.08), rgba(0, 169, 157, 0.08));
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1.5px solid rgba(237, 28, 36, 0.15);
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 18px;
    color: var(--navy);
    line-height: 1.05;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 620px;
    margin: 0 auto;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* PROFIL */
.profil { background: #FFFFFF; }
.profil-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.profil-visual { position: relative; height: 520px; }
.profil-img-wrapper {
    position: relative; height: 100%;
    border-radius: 32px; overflow: hidden;
    transform: rotate(-2deg);
    transition: transform 0.5s;
    box-shadow: 0 30px 60px -20px rgba(27, 38, 49, 0.25);
}
.profil-img-wrapper:hover { transform: rotate(0deg) scale(1.02); }
.profil-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.profil-shape {
    position: absolute;
    top: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--gradient-teal);
    border-radius: 50%;
    z-index: -1;
}
.year-badge {
    position: absolute;
    bottom: -30px; left: -20px;
    background: var(--navy);
    color: white;
    padding: 24px 28px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px -15px rgba(27, 38, 49, 0.4);
    transform: rotate(-3deg);
    z-index: 2;
}
.year-num {
    font-family: var(--font-display);
    display: block;
    font-size: 1.75rem; font-weight: 700;
    letter-spacing: -1px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.year-text {
    font-size: 0.7rem; font-weight: 600;
    opacity: 0.8; margin-top: 6px;
    display: block; letter-spacing: 1px;
    text-transform: uppercase;
}
.experience-pill {
    position: absolute;
    top: 30px; left: -20px;
    background: white;
    padding: 12px 20px;
    border-radius: 100px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.15);
    border: 2px solid var(--navy);
    z-index: 2;
    font-family: var(--font-display);
    font-weight: 700; font-size: 0.85rem;
    transform: rotate(-3deg);
}
.experience-pill i { color: var(--teal); font-size: 1rem; }
.profil-text .lead {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 28px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}
.profil-text p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 22px;
    line-height: 1.8;
}
.profil-text strong {
    color: var(--navy);
    font-weight: 700;
    background: linear-gradient(transparent 55%, rgba(0, 169, 157, 0.3) 55%);
    padding: 0 4px;
}

/* VISI MISI */
.visi-misi-section {
    background: linear-gradient(135deg, #1B2631 0%, #2C3E50 100%);
    border-radius: 32px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.visi-misi-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.25) 0%, transparent 70%);
    top: -200px; right: -200px;
    pointer-events: none;
}
.visi-misi-section::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.25) 0%, transparent 70%);
    bottom: -200px; left: -200px;
    pointer-events: none;
}
.vm-visual-side { position: relative; height: 620px; }
.vm-main-img {
    position: absolute;
    top: 0; left: 0;
    width: 85%; height: 75%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
    transform: rotate(-2deg);
    transition: transform 0.5s;
    z-index: 2;
}
.vm-main-img:hover { transform: rotate(0deg) scale(1.02); }
.vm-main-img img { width: 100%; height: 100%; object-fit: cover; }
.vm-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.15) 0%, rgba(0, 169, 157, 0.15) 100%);
}
.vm-float-img {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    border: 6px solid white;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.4);
    transition: transform 0.4s;
    z-index: 3;
}
.vm-float-img:hover { transform: scale(1.05) rotate(3deg); }
.vm-float-img img { width: 100%; height: 100%; object-fit: cover; }
.vm-float-1 { width: 200px; height: 200px; bottom: 20px; right: 0; transform: rotate(4deg); }
.vm-float-2 { width: 150px; height: 150px; top: 40%; left: -20px; transform: rotate(-6deg); }
.vm-badge-floating {
    position: absolute;
    bottom: 40px; left: 30px;
    background: var(--gradient);
    color: white;
    padding: 24px 28px;
    border-radius: 24px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 20px 40px -15px rgba(237, 28, 36, 0.6);
    z-index: 4;
    transform: rotate(-3deg);
    animation: floatCard 5s ease-in-out infinite;
}
.vm-badge-num {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 700;
    line-height: 1; letter-spacing: -3px;
}
.vm-badge-text {
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 2px; line-height: 1.2;
    opacity: 0.95;
}
.vm-content-side {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 1;
}
.vm-block { position: relative; }
.vm-label-new {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(237, 28, 36, 0.15);
    border-radius: 100px;
    border: 1.5px solid rgba(237, 28, 36, 0.3);
}
.teal-label {
    color: var(--teal);
    background: rgba(0, 169, 157, 0.15);
    border-color: rgba(0, 169, 157, 0.3);
}
.vm-title-new {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    color: white;
    margin-bottom: 18px;
}
.vm-block > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}
.vm-list-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}
.vm-list-new li {
    display: flex; gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}
.vm-list-new li:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--teal);
    box-shadow: -8px 8px 0 rgba(0, 169, 157, 0.4);
}
.vm-list-num {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700;
    color: var(--teal);
    line-height: 1; letter-spacing: -1px;
    flex-shrink: 0; min-width: 40px;
}
.vm-list-new strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}
.vm-list-new p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}
.gradient-text-teal {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* EDUCATION */
.education { background: #FFFFFF; }
.intro-block {
    background: linear-gradient(135deg, #FEF2F2 0%, #CCFBF1 100%);
    border-radius: 32px;
    padding: 60px;
    margin-bottom: 80px;
    border: 2px solid rgba(237, 28, 36, 0.1);
    position: relative;
    overflow: hidden;
}
.intro-block::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.15) 0%, transparent 70%);
    top: -150px; right: -150px;
    pointer-events: none;
}
.intro-header { margin-bottom: 40px; position: relative; z-index: 1; }
.intro-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--teal);
    padding: 6px 16px;
    background: rgba(0, 169, 157, 0.1);
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1.5px solid rgba(0, 169, 157, 0.2);
}
.intro-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--navy);
}
.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.intro-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
}
.intro-text strong { color: var(--navy); font-weight: 700; }
.intro-highlight {
    display: flex; gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    margin: 24px 0;
    border-left: 4px solid var(--red);
}
.intro-highlight i { color: var(--red); font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.intro-highlight strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 4px;
}
.intro-highlight p { font-size: 0.9rem; margin-bottom: 0; line-height: 1.6; }
.protection-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.protection-list span {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--navy);
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 100px;
    border: 1.5px solid var(--border);
}
.protection-list i { color: var(--teal); font-size: 0.85rem; }
.intro-image img {
    border-radius: 24px;
    width: 100%; height: 400px;
    object-fit: cover;
    box-shadow: 0 30px 60px -20px rgba(27, 38, 49, 0.25);
}

.edu-tabs-wrapper {
    background: white;
    border-radius: 32px;
    border: 2px solid var(--border);
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.05);
}
.edu-tabs {
    display: flex; flex-wrap: wrap;
    border-bottom: 2px solid var(--border);
    background: #F8FAFB;
    padding: 12px;
    gap: 8px;
}
.edu-tab {
    flex: 1; min-width: 140px;
    padding: 16px 24px;
    background: transparent;
    border: none; border-radius: 16px;
    font-family: var(--font-display);
    font-size: 0.9rem; font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
}
.edu-tab:hover { background: white; color: var(--navy); }
.edu-tab.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 20px -8px rgba(237, 28, 36, 0.4);
}
.edu-tab i { font-size: 1rem; }
.edu-content { display: none; padding: 60px; animation: fadeIn 0.5s ease; }
.edu-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.edu-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.edu-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.red-badge { background: rgba(237, 28, 36, 0.1); color: var(--red); border: 1.5px solid rgba(237, 28, 36, 0.2); }
.teal-badge { background: rgba(0, 169, 157, 0.1); color: var(--teal); border: 1.5px solid rgba(0, 169, 157, 0.2); }
.navy-badge { background: rgba(27, 38, 49, 0.1); color: var(--navy); border: 1.5px solid rgba(27, 38, 49, 0.2); }
.yellow-badge { background: rgba(250, 204, 21, 0.15); color: #B45309; border: 1.5px solid rgba(250, 204, 21, 0.3); }
.edu-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 20px;
}
.edu-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
}
.edu-text em { color: var(--teal); font-style: italic; }
.edu-specs {
    display: flex; flex-direction: column; gap: 12px;
    margin-top: 28px; padding-top: 24px;
    border-top: 2px dashed var(--border);
}
.edu-spec-item {
    display: flex; align-items: center; gap: 16px;
    padding: 12px 16px;
    background: #F8FAFB;
    border-radius: 14px;
    transition: all 0.3s;
}
.edu-spec-item:hover {
    background: white;
    transform: translateX(6px);
    box-shadow: -4px 4px 0 rgba(0, 169, 157, 0.15);
}
.edu-spec-item i {
    width: 40px; height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.edu-spec-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem; font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.edu-spec-item span { font-size: 0.9rem; color: var(--gray); }
.edu-image img {
    border-radius: 24px;
    width: 100%; height: 420px;
    object-fit: cover;
    box-shadow: 0 30px 60px -20px rgba(27, 38, 49, 0.25);
}

/* ============================================ */
/* COMPARISON BLOCK — FIXED CONTRAST            */
/* ============================================ */
.comparison-block {
    background: linear-gradient(135deg, #1B2631 0%, #0d4f4a 50%, #008B80 100%);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 30px 60px -20px rgba(27, 38, 49, 0.3);
}

.comparison-block::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    pointer-events: none;
}

.comparison-block::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    pointer-events: none;
}

/* Header */
.comparison-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.comparison-header .section-tag {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.comparison-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: white;
    margin-top: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.comparison-header h3 .gradient-text {
    background: linear-gradient(135deg, #FACC15 0%, #FB923C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Table */
.comparison-table-wrapper {
    overflow-x: auto;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    padding: 4px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9rem;
    min-width: 700px;
    overflow: hidden;
}

.comparison-table thead th {
    background: #1B2631;
    color: white;
    padding: 18px 20px;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.comparison-table thead th:first-child {
    border-radius: 16px 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 16px 0 0;
}

.comparison-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    background: white;
    color: #52525b;
    vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover td {
    background: #F8FAFB;
}

.comparison-table tbody td strong {
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
}

/* Badges */
.badge-good, .badge-medium, .badge-bad {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-display);
    white-space: nowrap;
}

.badge-good {
    background: rgba(0, 169, 157, 0.15);
    color: #007A70;
    border: 1px solid rgba(0, 169, 157, 0.3);
}

.badge-medium {
    background: rgba(250, 204, 21, 0.2);
    color: #92400E;
    border: 1px solid rgba(250, 204, 21, 0.4);
}

.badge-bad {
    background: rgba(237, 28, 36, 0.1);
    color: #B91C1C;
    border: 1px solid rgba(237, 28, 36, 0.25);
}

/* ============================================ */
/* CATALOG GRID (Products, Why Us, Projects)    */
/* ============================================ */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}
.catalog-grid-3 { grid-template-columns: repeat(3, 1fr); }
.catalog-grid-4 { grid-template-columns: repeat(4, 1fr); }

.catalog-item {
    position: relative;
    display: block;
    padding: 40px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: transparent;
    text-decoration: none;
    transition: background 0.4s;
    cursor: pointer;
    overflow: hidden;
}
.catalog-item:hover { background: rgba(255, 255, 255, 0.06); }
.catalog-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--gradient);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.catalog-item:hover .catalog-line { width: 100%; }

.catalog-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 32px;
    background: #F4F4F5;
}
.catalog-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
    filter: grayscale(15%);
}
.catalog-item:hover .catalog-img img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.catalog-body { position: relative; }
.catalog-top {
    display: flex; justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}
.catalog-num {
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 3px;
    color: var(--teal);
}
.catalog-tag {
    font-family: var(--font-display);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}
.catalog-item:hover .catalog-tag { color: var(--yellow); }
.catalog-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 700;
    letter-spacing: -0.6px; line-height: 1.2;
    color: white;
    margin-bottom: 14px;
    transition: transform 0.4s, color 0.3s;
}
.catalog-item:hover .catalog-body h3 {
    transform: translateX(4px);
    color: var(--yellow);
}
.catalog-body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 24px;
}
.catalog-footer {
    display: flex; justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.catalog-spec {
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 1px;
    color: white;
}
.catalog-arrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.4s, gap 0.4s;
}
.catalog-item:hover .catalog-arrow { color: var(--yellow); gap: 14px; }
.catalog-arrow i { transition: transform 0.4s; }
.catalog-item:hover .catalog-arrow i { transform: translateX(4px); }

/* ============================================ */
/* PRODUCTS SECTION — FIXED CONTRAST            */
/* ============================================ */
.products-catalog {
    background: linear-gradient(135deg, #0f172a 0%, #1B2631 50%, #0d4f4a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.products-catalog::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.products-catalog::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
    animation: float1 14s ease-in-out infinite;
}

/* Header */
.products-catalog .section-tag {
    color: #FACC15;
    background: rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.products-catalog .section-header h2 {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.products-catalog .section-header h2 .gradient-text {
    background: linear-gradient(135deg, #FACC15 0%, #00A99D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.products-catalog .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Grid */
.products-catalog .catalog-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.products-catalog .catalog-item {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: background 0.4s;
}

.products-catalog .catalog-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Catalog image */
.products-catalog .catalog-img {
    background: rgba(255, 255, 255, 0.05);
}

/* Catalog body */
.products-catalog .catalog-top {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.products-catalog .catalog-num {
    color: #FACC15;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.products-catalog .catalog-tag {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.products-catalog .catalog-item:hover .catalog-tag {
    color: #FACC15;
}

.products-catalog .catalog-body h3 {
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.products-catalog .catalog-item:hover .catalog-body h3 {
    color: #FACC15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.products-catalog .catalog-body p {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Footer */
.products-catalog .catalog-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.products-catalog .catalog-spec {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.products-catalog .catalog-arrow {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.products-catalog .catalog-item:hover .catalog-arrow {
    color: #FACC15;
}

/* Line accent */
.products-catalog .catalog-line {
    background: linear-gradient(90deg, #FACC15, #00A99D);
}

/* ============================================ */
/* WHY US SECTION — FIXED CONTRAST              */
/* ============================================ */
.why-catalog {
    background: linear-gradient(135deg, #1B2631 0%, #7c0f14 50%, #C4161C 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-catalog::before,
.why-catalog::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.why-catalog::before {
    background: radial-gradient(circle, rgba(250, 204, 21, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float1 12s ease-in-out infinite;
}

.why-catalog::after {
    background: radial-gradient(circle, rgba(0, 169, 157, 0.25) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: float2 14s ease-in-out infinite;
}

/* Header */
.why-catalog .section-tag {
    color: #FACC15;
    background: rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.why-catalog .section-header h2 {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.why-catalog .section-header h2 .gradient-text {
    background: linear-gradient(135deg, #FACC15 0%, #FB923C 50%, #F87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.why-catalog .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Grid */
.why-catalog .catalog-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.why-catalog .catalog-item {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.why-catalog .catalog-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Catalog body */
.why-catalog .catalog-top {
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.why-catalog .catalog-num {
    color: #FACC15;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.why-catalog .catalog-tag {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.why-catalog .catalog-item:hover .catalog-tag {
    color: #FACC15;
}

.why-catalog .catalog-body h3 {
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.why-catalog .catalog-item:hover .catalog-body h3 {
    color: #FACC15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.why-catalog .catalog-body p {
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.why-catalog .catalog-line {
    background: linear-gradient(90deg, #FACC15, #00A99D);
}

/* ============================================ */
/* PROJECTS SECTION — WITH IMAGE                */
/* ============================================ */
.projects-catalog {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFB 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.projects-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(27, 38, 49, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 38, 49, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    pointer-events: none;
}

.projects-catalog::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.12) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    pointer-events: none;
    animation: float1 14s ease-in-out infinite;
}

.projects-catalog::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.12) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    pointer-events: none;
    animation: float2 16s ease-in-out infinite;
}

.projects-catalog .catalog-grid {
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.projects-catalog .catalog-item {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: transparent;
}

.projects-catalog .catalog-item:hover {
    background: #F8FAFB;
}

.projects-catalog .catalog-num {
    color: var(--red);
}

.projects-catalog .catalog-tag {
    color: var(--gray);
}

.projects-catalog .catalog-item:hover .catalog-tag {
    color: var(--teal);
}

.projects-catalog .catalog-body h3 {
    color: var(--navy);
}

.projects-catalog .catalog-item:hover .catalog-body h3 {
    color: var(--red);
}

.projects-catalog .catalog-top {
    border-bottom-color: var(--border);
}

.projects-catalog .catalog-footer {
    border-top-color: var(--border);
}

.projects-catalog .catalog-spec {
    color: var(--navy);
}

.projects-catalog .catalog-arrow {
    color: var(--gray);
}

.projects-catalog .catalog-item:hover .catalog-arrow {
    color: var(--red);
}

/* ============================================ */
/* PROJECT CATALOG ITEM — WITH IMAGE            */
/* ============================================ */
.project-catalog-item {
    padding: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* IMAGE */
.project-catalog-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #F4F4F5;
    margin: 0;
}

.project-catalog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
    filter: grayscale(20%) brightness(0.98);
    display: block;
}

.project-catalog-item:hover .project-catalog-img img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1);
}

/* Overlay gradient subtle */
.project-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(27, 38, 49, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.project-catalog-item:hover .project-img-overlay {
    opacity: 1;
}

/* TOP ROW (nomor + type) */
.project-catalog-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px 16px;
    border-bottom: 1px dashed var(--border);
}

.project-catalog-type {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    transition: color 0.4s;
}

.project-catalog-item:hover .project-catalog-type {
    color: var(--teal);
}

/* BODY (judul) */
.project-catalog-body {
    flex: 1;
    padding: 20px 28px;
    margin: 0;
}

.project-catalog-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;
    color: var(--navy);
    transition: transform 0.4s, color 0.3s;
    margin: 0;
}

.project-catalog-item:hover .project-catalog-body h3 {
    transform: translateX(6px);
    color: var(--red);
}

/* FOOTER (CTA) */
.project-catalog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px 24px;
    border-top: 1px solid var(--border);
}

.project-catalog-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    transition: color 0.4s, gap 0.4s;
}

.project-catalog-item:hover .project-catalog-cta {
    color: var(--red);
    gap: 14px;
}

.project-catalog-cta i {
    transition: transform 0.4s;
}

.project-catalog-item:hover .project-catalog-cta i {
    transform: translateX(6px);
}

/* Line accent */
.project-catalog-item .catalog-line {
    background: var(--gradient);
    height: 3px;
}

/* CONTACT */
.contact { background: #FFFFFF; }
.contact-wrap {
    position: relative;
    background: linear-gradient(135deg, #1B2631 0%, #2C3E50 40%, #C4161C 100%);
    border-radius: 40px;
    padding: 80px 70px;
    overflow: hidden;
}
.contact-blob {
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.5) 0%, transparent 65%);
    top: -250px; right: -250px;
    pointer-events: none;
    animation: blobMove 15s ease-in-out infinite;
}
@keyframes blobMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.15); }
}
.contact-wrap::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.4) 0%, transparent 65%);
    bottom: -200px; left: -200px;
    pointer-events: none;
    animation: blobMove 18s ease-in-out infinite reverse;
}
.contact-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}
.light-tag-2 {
    color: var(--yellow);
    background: rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.3);
}
.contact-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    color: white;
    line-height: 1.05;
    margin: 20px 0;
}
.highlight-teal {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-text > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.ci-item {
    display: flex; align-items: flex-start; gap: 14px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}
.ci-item i {
    width: 36px; height: 36px;
    background: rgba(0, 169, 157, 0.2);
    color: var(--teal);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}
.contact-action { display: flex; flex-direction: column; gap: 16px; }
.btn-wa, .btn-email {
    display: flex; align-items: center; gap: 18px;
    padding: 22px 26px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}
.btn-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}
.btn-wa:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -12px rgba(37, 211, 102, 0.6);
}
.btn-email {
    background: rgba(255,255,255,0.08);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}
.btn-email:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-4px) scale(1.02);
}
.btn-wa i:first-child, .btn-email i:first-child { font-size: 1.75rem; flex-shrink: 0; }
.btn-wa strong, .btn-email strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700;
}
.btn-wa span, .btn-email span { font-size: 0.8rem; opacity: 0.9; font-weight: 400; }
.arrow-icon { margin-left: auto; transition: transform 0.3s; }
.btn-wa:hover .arrow-icon, .btn-email:hover .arrow-icon { transform: translateX(4px); }

/* FOOTER */
.footer {
    background: linear-gradient(180deg, #1B2631 0%, #0a0a0a 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.15) 0%, transparent 70%);
    top: -200px; left: -200px;
    pointer-events: none;
}
.footer::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.15) 0%, transparent 70%);
    bottom: -200px; right: -200px;
    pointer-events: none;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand p { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
    font-weight: 500;
}
.footer-links a:hover { color: var(--teal); }
.footer-social { display: flex; gap: 12px; justify-content: flex-end; }
.footer-social a {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: white;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-3px) rotate(-5deg);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}
.footer-bottom i { color: var(--yellow); margin: 0 4px; }

/* FLOATING WHATSAPP */
.float-wa {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.6);
    z-index: 999;
    transition: all 0.3s;
    animation: floatCard 3s ease-in-out infinite;
}
.float-wa:hover {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 25px 50px -10px rgba(37, 211, 102, 0.8);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .hero-img-wrapper img { height: 420px; }
    .profil-grid { grid-template-columns: 1fr; gap: 80px; }
    .visi-misi-section { grid-template-columns: 1fr; gap: 60px; padding: 50px 40px; }
    .vm-visual-side { height: 500px; }
    .intro-content { grid-template-columns: 1fr; gap: 40px; }
    .intro-image img { height: 320px; }
    .edu-grid { grid-template-columns: 1fr; gap: 40px; }
    .edu-image img { height: 320px; }
    .intro-block, .comparison-block { padding: 40px; }
    .edu-content { padding: 40px; }
    .contact-content { grid-template-columns: 1fr; gap: 40px; }
    .contact-wrap { padding: 60px 40px; }
    .footer-top { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .footer-brand { justify-content: center; }
    .footer-links { justify-content: center; }
    .footer-social { justify-content: center; }
    .catalog-grid, .catalog-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .catalog-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .catalog-item { padding: 32px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 40px;
        z-index: 999;
        gap: 24px;
    }
    .nav-menu.active { right: 0; }
    .nav-menu a { font-size: 1.5rem; font-family: var(--font-display); font-weight: 700; }
    .hamburger { display: flex; z-index: 1000; position: relative; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .logo-img { height: 38px; }
    .hero { padding: 110px 0 0; min-height: auto; }
    .hero-text h1 { letter-spacing: -1.5px; }
    .hero-img-wrapper img { height: 340px; }
    .floating-badge { padding: 10px 14px; }
    .floating-badge i { width: 34px; height: 34px; font-size: 0.9rem; }
    .floating-badge span { font-size: 0.7rem; }
    .badge-hdg { left: -10px; top: 30px; }
    .badge-sni { right: -10px; bottom: 80px; }
    .badge-fast { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 24px 0; }
    .stat-item { flex: 0 0 50%; }
    .stat-divider { display: none; }
    .stat-number { font-size: 2rem; }
    section { padding: 80px 0; }
    .section-header { margin-bottom: 50px; }
    .profil-visual { height: 400px; }
    .year-badge { padding: 18px 22px; left: -10px; }
    .year-num { font-size: 1.5rem; }
    .experience-pill { left: -10px; font-size: 0.75rem; padding: 10px 16px; }
    .vm-visual-side { height: 420px; }
    .vm-float-1 { width: 140px; height: 140px; }
    .vm-float-2 { width: 110px; height: 110px; left: -10px; }
    .vm-badge-floating { padding: 18px 20px; bottom: 20px; left: 15px; }
    .vm-badge-num { font-size: 2.25rem; }
    .vm-badge-text { font-size: 0.65rem; }
    .vm-list-new li { padding: 16px 18px; }
    .vm-list-num { font-size: 1.25rem; min-width: 32px; }
    .intro-block { padding: 28px; border-radius: 24px; }
    .edu-tabs { padding: 8px; }
    .edu-tab { padding: 12px 16px; font-size: 0.8rem; min-width: 120px; }
    .edu-tab i { display: none; }
    .edu-content { padding: 28px; }
    .edu-image img { height: 240px; }
    .intro-image img { height: 240px; }
    .comparison-block { padding: 28px; border-radius: 24px; }
    .comparison-table { font-size: 0.8rem; }
    .comparison-table thead th, .comparison-table tbody td { padding: 12px 14px; }
    .edu-spec-item { padding: 10px 12px; }
    .edu-spec-item i { width: 34px; height: 34px; font-size: 0.8rem; }
    .catalog-grid, .catalog-grid-3, .catalog-grid-4 { grid-template-columns: 1fr; border-left: none; }
    .catalog-item { padding: 28px 0; border-right: none; }
    .catalog-img { margin-bottom: 24px; }
    .catalog-body h3 { font-size: 1.25rem; }
    .contact-wrap { padding: 44px 28px; border-radius: 32px; }
    .btn-wa, .btn-email { padding: 18px 20px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .float-wa { width: 56px; height: 56px; font-size: 1.5rem; bottom: 20px; right: 20px; }
    .marquee-content { font-size: 1rem; letter-spacing: 2px; gap: 24px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary, .hero-buttons .btn-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .profil-visual { height: 340px; }
    .vm-visual-side { height: 360px; }
    .intro-header h3 { font-size: 1.5rem; }
    .edu-text h3 { font-size: 1.5rem; }
    .comparison-header h3 { font-size: 1.25rem; }
    .logo-img { height: 34px; }
    .catalog-item { padding: 24px 0; }
    .catalog-img { aspect-ratio: 5 / 4; }
}