* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

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

.pinjampasti-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.pinjampasti-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 80px;
}

.pinjampasti-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pinjampasti-logo {
    width: 50px;
    height: 50px;
    background-image: url('../img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.pinjampasti-brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1FBE8A;
    margin: 0;
    white-space: nowrap;
}

.pinjampasti-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.pinjampasti-nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.pinjampasti-nav-menu a:hover,
.pinjampasti-nav-active {
    color: #1FBE8A;
}

.pinjampasti-nav-menu a:hover::after {
    width: 100%;
}

.pinjampasti-nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #1FBE8A, #16A374);
    transition: width 0.3s ease;
}

.pinjampasti-nav-active::after {
    width: 100%;
}

.pinjampasti-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.pinjampasti-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.pinjampasti-main {
    margin-top: 80px;
}

.pinjampasti-hero {
    background: linear-gradient(135deg, #1FBE8A 0%, #059669 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.pinjampasti-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.pinjampasti-hero .pinjampasti-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.pinjampasti-hero-content {
    color: white;
    padding-right: 20px;
}

.pinjampasti-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #ffffff, #d1fae5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pinjampasti-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.pinjampasti-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pinjampasti-btn-primary {
    background: linear-gradient(45deg, #16A374, #059669);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(31, 190, 138, 0.3);
}

.pinjampasti-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(31, 190, 138, 0.4);
    background: linear-gradient(45deg, #059669, #047857);
}

.pinjampasti-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pinjampasti-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.pinjampasti-hero-image {
    position: relative;
    padding-left: 20px;
}

.pinjampasti-hero-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s ease;
}

.pinjampasti-hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.pinjampasti-services {
    padding: 120px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    position: relative;
}

.pinjampasti-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1FBE8A, #16A374);
    border-radius: 2px;
}

.pinjampasti-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2c3e50;
    position: relative;
}

.pinjampasti-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pinjampasti-service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.pinjampasti-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1FBE8A, #16A374);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pinjampasti-service-card:hover::before {
    transform: scaleX(1);
}

.pinjampasti-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(31, 190, 138, 0.15);
}

.pinjampasti-service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.pinjampasti-service-card:hover img {
    transform: scale(1.1);
}

.pinjampasti-service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

.pinjampasti-service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.pinjampasti-features {
    padding: 120px 0;
    background: linear-gradient(135deg, #1FBE8A 0%, #059669 100%);
    position: relative;
    overflow: hidden;
}

.pinjampasti-features::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(15deg);
}

.pinjampasti-features .pinjampasti-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.pinjampasti-feature-content {
    color: white;
}

.pinjampasti-feature-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ffffff, #d1fae5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pinjampasti-feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pinjampasti-feature-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.pinjampasti-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.pinjampasti-feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.pinjampasti-feature-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.pinjampasti-feature-image {
    position: relative;
}

.pinjampasti-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pinjampasti-testimonials {
    padding: 120px 0;
    background: #f0fdf4;
}

.pinjampasti-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pinjampasti-testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pinjampasti-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(31, 190, 138, 0.12);
}

.pinjampasti-testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 24px;
    border: 4px solid #d1fae5;
}

.pinjampasti-testimonial-card p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.6;
}

.pinjampasti-testimonial-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.pinjampasti-testimonial-card span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.pinjampasti-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    text-align: center;
    color: white;
}

.pinjampasti-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pinjampasti-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.pinjampasti-footer {
    background: #1a252f;
    color: white;
    padding: 60px 0 20px;
}

.pinjampasti-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.pinjampasti-footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1FBE8A;
}

.pinjampasti-footer-section ul {
    list-style: none;
}

.pinjampasti-footer-section ul li {
    margin-bottom: 12px;
}

.pinjampasti-footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pinjampasti-footer-section ul li a:hover {
    color: #1FBE8A;
}

.pinjampasti-footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 8px;
}

.pinjampasti-footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .pinjampasti-container {
        padding: 0 20px;
    }
    
    .pinjampasti-navbar {
        padding: 0 20px;
    }
    
    .pinjampasti-brand {
        gap: 12px;
    }
    
    .pinjampasti-brand-name {
        font-size: 1.5rem;
    }
    
    .pinjampasti-nav-menu {
        display: none;
    }
    
    .pinjampasti-menu-toggle {
        display: flex;
    }
    
    .pinjampasti-hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .pinjampasti-hero .pinjampasti-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .pinjampasti-hero-content {
        padding-right: 0;
    }
    
    .pinjampasti-hero-image {
        padding-left: 0;
    }
    
    .pinjampasti-hero-title {
        font-size: 2.5rem;
    }
    
    .pinjampasti-features .pinjampasti-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pinjampasti-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pinjampasti-btn-primary,
    .pinjampasti-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
} 