<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<style>
/* ========================================
   HERO SECTION
======================================== */
.hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta-primary,
.hero-cta-secondary {
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

.hero-cta-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: white;
}

/* Hero Features */
.hero-features {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212,175,55,0.3);
}

.feature-icon {
    font-size: 2rem;
    color: #d4af37;
    flex-shrink: 0;
}

.feature-text strong {
    color: white;
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin: 0;
}

/* Hero Logo Container */
.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.hero-logo {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    object-fit: contain;
    animation: fadeInScale 0.8s ease-out;
}

.hero-logo-placeholder {
    background-color: rgba(255,255,255,0.1);
    border-radius: 12px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212,175,55,0.3);
    animation: slideInRight 0.8s ease-out;
}

.hero-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.hero-logo-text {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 1.125rem;
}

/* ========================================
   SECTION COMMONS
======================================== */
.section-services,
.section-why-choose,
.section-leader,
.section-qa,
.section-blog,
.section-testimonials,
.section-faq {
    padding: 5rem 0;
}

.section-why-choose {
    background-color: #f8f9fa;
}

.section-leader {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-testimonials {
    background: linear-gradient(135deg, #1a2942 0%, #2d4263 100%);
    color: white;
}

.section-cta {
    padding: 3rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background-color: rgba(212,175,55,0.1);
    color: #d4af37;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-testimonials .section-badge {
    background-color: rgba(255,255,255,0.1);
    color: #d4af37;
}

.section-title {
    color: #1a2942;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-testimonials .section-title {
    color: white;
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-testimonials .section-description {
    color: rgba(255,255,255,0.8);
}

/* ========================================
   SERVICES SECTION
======================================== */
.service-card-home {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #d4af37, #f4d03f);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.service-card-home:hover {
    border-color: #d4af37;
    box-shadow: 0 12px 32px rgba(26,41,66,0.12);
    transform: translateY(-8px);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a2942;
    font-weight: 700;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-category {
    color: #d4af37;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card-title {
    color: #1a2942;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    padding-right: 3rem;
}

.service-card-description {
    color: #666;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    color: #1a2942;
    gap: 0.5rem;
}

/* ========================================
   FEATURE CARDS (Why Choose Us)
======================================== */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(26,41,66,0.08);
    transform: translateY(-5px);
}

.feature-card .feature-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.feature-title {
    color: #1a2942;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========================================
   LEADER / FOUNDER SECTION
======================================== */
.leader-profile-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(26,41,66,0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.leader-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #d4af37, #f4d03f);
}

/* --- Foto wrapper (lingkaran + ring berputar) --- */
.founder-photo-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.founder-photo-bg-ring {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px dashed rgba(212,175,55,0.3);
    animation: founder-ring-spin 20s linear infinite;
    pointer-events: none;
}

@keyframes founder-ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.founder-photo-frame {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid white;
    box-shadow: 0 12px 40px rgba(26,41,66,0.15);
    margin: 0 auto;
    position: relative;
}

/* Foto nyata — uncomment saat foto sudah tersedia di database */
.founder-real-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-profile-card:hover .founder-real-photo {
    transform: scale(1.05);
}

/* Placeholder inisial HP */
.founder-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2942, #2d4263);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-initials {
    color: #d4af37;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

/* Credential badge di bawah foto */
.founder-credential-badge {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a2942;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-align: center;
    margin-top: 1.25rem;
    display: inline-block;
}

/* --- Info sisi kanan --- */
.founder-title-row {
    margin-bottom: 0.5rem;
}

.founder-badge-text {
    display: inline-block;
    background: rgba(212,175,55,0.1);
    color: #d4af37;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.75rem;
}

.founder-name {
    color: #1a2942;
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.founder-bio-block {
    margin-bottom: 1.5rem;
}

.founder-bio-block p {
    color: #555;
    font-size: 0.9875rem;
    line-height: 1.8;
    margin-bottom: 0.875rem;
}

.founder-bio-block p:last-child {
    margin-bottom: 0;
}

/* Grid keahlian 2 kolom */
.founder-expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 1.75rem;
}

.founder-expertise-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
}

.founder-expertise-item i {
    color: #d4af37;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Tombol CTA founder */
.founder-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

/* View team link */
.view-team-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.view-team-link:hover {
    color: #1a2942;
}

/* ========================================
   Q&A CARDS
======================================== */
.qa-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    transition: all 0.3s ease;
}

.qa-card:hover {
    box-shadow: 0 8px 24px rgba(26,41,66,0.08);
    border-color: #d4af37;
}

.qa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.qa-category {
    background-color: rgba(212,175,55,0.1);
    color: #d4af37;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.qa-date {
    color: #999;
    font-size: 0.8125rem;
}

.qa-question {
    color: #1a2942;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.qa-answer {
    color: #666;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.qa-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.qa-lawyer {
    color: #666;
    font-size: 0.8125rem;
}

.qa-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.qa-link:hover {
    color: #1a2942;
}

/* ========================================
   BLOG CARDS
======================================== */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(26,41,66,0.12);
    transform: translateY(-8px);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #d4af37;
    color: #1a2942;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date,
.blog-author {
    color: #999;
    font-size: 0.8125rem;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-title a {
    color: #1a2942;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #d4af37;
}

.blog-excerpt {
    color: #666;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #1a2942;
}

/* ========================================
   TESTIMONIAL CARDS
======================================== */
.testimonial-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #d4af37;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-content {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a2942;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-name {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ========================================
   FAQ ACCORDION
======================================== */
.faq-accordion .accordion-item {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background-color: white;
    color: #1a2942;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #d4af37;
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\f282';
    font-family: 'bootstrap-icons';
    font-size: 1.25rem;
    color: #d4af37;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f286';
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-wrapper {
    background: linear-gradient(135deg, #1a2942 0%, #2d4263 100%);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(26,41,66,0.2);
}

.cta-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-button {
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    white-space: nowrap;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991.98px) {
    .hero-title        { font-size: 2.25rem; }
    .section-title     { font-size: 2rem; }
    .leader-profile-card { padding: 2rem; }
    .founder-name      { font-size: 1.5rem; }
    .founder-expertise-grid { grid-template-columns: 1fr; }
    .founder-cta       { flex-direction: column; }
    .cta-title         { font-size: 1.75rem; }
    .cta-wrapper       { padding: 2rem; text-align: center; }
    .cta-button        { margin-top: 1.5rem; }
}

@media (max-width: 767.98px) {
    .hero-title        { font-size: 1.875rem; }
    .section-title     { font-size: 1.75rem; }
    .founder-photo-frame { width: 160px; height: 160px; }
    .founder-initials  { font-size: 2.75rem; }
    .founder-expertise-grid { grid-template-columns: 1fr 1fr; }
    .hero-features     { margin-top: 2rem; }
}