/* --- RESET & GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc; /* Background cerah agar shadow terlihat */
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- HERO SECTION --- */
.about-hero {
    padding: 180px 0 80px;
    text-align: center;
    /* Perbaikan typo 02 menjadi 0.2 agar gradient muncul */
    background: 
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 02)), 
        url('owner.banner.png') center/cover no-repeat fixed;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ff8c42, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* --- INTERACTIVE PAWS SECTION --- */
.paws-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.paws-wrapper {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    perspective: 1000px;
    padding: 40px 20px;
}

/* --- CARD STRUCTURE (THE PAW) --- */
.interactive-paw {
    position: relative;
    width: 320px;
    height: 380px; /* Ditambah agar konten tidak sesak */
    cursor: pointer;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.interactive-paw:hover {
    transform: rotateY(180deg);
}

/* Bagian Depan & Belakang */
.paw-front, .paw-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    backface-visibility: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12); /* Shadow lebih prominen */
}

.paw-front {
    background-size: cover;
    background-position: center;
    border: 4px solid white;
}

.paw-back {
    background: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

/* --- ISI KARTU (FOUNDER INFO) --- */
.founder-reveal {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.founder-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff8c42;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.founder-reveal h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.founder-reveal h4 {
    color: #ff8c42;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.founder-reveal p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* --- STATISTIK (ICON FIX) --- */
.founder-stats {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    width: 100%;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.founder-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
}

.founder-stats i {
    color: #ff8c42;
    font-size: 1rem;
    width: 20px; /* Fixed width agar sejajar */
    text-align: center;
}

/* --- BUTTON & FOOTER --- */
.team {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c42, #1e40af);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(255, 140, 66, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.4);
}

.footer {
    padding: 3rem 0;
    text-align: center;
    background: #1e293b;
    color: white;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .interactive-paw { width: 280px; height: 350px; }
    .paws-wrapper { gap: 1.5rem; }
}