/* ================= ABOUT PAGE ================= */

.about-page {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-hero-card {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Navbar inside hero, same feel as homepage */
.about-hero-card .hero-nav-tab {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.about-hero-card .mobile-menu-tab {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 21;
}

.about-hero-card .mobile-nav-menu {
    position: absolute;
    top: 58px;
    right: 0;
    z-index: 22;
}

/* KEY FIX:
   left content controls the card height,
   right image is absolutely placed and fills the card height */
.about-hero-grid {
    position: relative;
    min-height: 100%;
}

.about-hero-content {
    position: relative;
    width: 55%;
    padding: 0;
    z-index: 2;
}

.about-hero-tab {
    top: auto;
    left: 0;
    bottom: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0;
}

.about-hero-tab::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: 0;
    top: auto;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 0%, transparent 20px, var(--bg-color) 20px);
}

.about-hero-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: -20px;
    bottom: auto;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 0%, transparent 20px, var(--bg-color) 20px);
}

.about-hero-copy {
    padding: 84px 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

.about-kicker {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.about-hero-copy h1 {
    font-size: 54px;
    line-height: 1.02;
    font-weight: 500;
    max-width: 680px;
    margin-bottom: 14px;
}

.about-lead {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 620px;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.about-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    background: var(--text-primary);
    color: var(--bg-color);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.about-primary-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.about-secondary-link {
    position: relative;
    font-size: 14px;
    color: var(--text-primary);
    width: fit-content;
}

.about-secondary-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0.45;
    transition: var(--transition);
}

.about-secondary-link:hover::after {
    opacity: 1;
}

.about-hero-details {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.about-detail-block h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-detail-block p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.about-process-luxury {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.about-process-card {
    position: relative;
    padding: 14px 14px 13px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.about-process-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

body.light-mode .about-process-card {
    background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.01));
    border: 1px solid rgba(0,0,0,0.06);
}

body.light-mode .about-process-card:hover {
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.about-process-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.about-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--bg-color);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.about-process-card h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.about-process-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* Right image behaves like a fixed visual panel */
.about-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    z-index: 1;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tablet */
@media (max-width: 1024px) {
    .about-hero-grid {
        position: relative;
    }

    .about-hero-content {
        width: 100%;
    }

    .about-hero-image {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
    }

    .about-hero-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .about-process-luxury {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-page {
        padding: 12px;
    }

    .about-hero-copy {
        padding: 78px 20px 32px;
    }

    .about-hero-copy h1 {
        font-size: 34px;
    }

    .about-lead,
    .about-detail-block p,
    .about-process-card p {
        font-size: 14px;
    }

    .about-detail-block h3 {
        font-size: 20px;
    }

    .about-hero-actions {
        margin-top: 18px;
    }

    .about-hero-details {
        margin-top: 20px;
        gap: 14px;
    }

    .about-process-card {
        padding: 16px;
    }

    .about-process-number {
        min-width: 38px;
        height: 38px;
        font-size: 12px;
    }

    .about-hero-card .mobile-nav-menu {
        top: 58px;
        right: 0;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .about-hero-copy {
        padding: 72px 18px 28px;
    }

    .about-hero-copy h1 {
        font-size: 28px;
    }
}