:root {
    --pingmel-red: #F23C3B;
    --pingmel-dark: #151515;
    --pingmel-light: #ffffff;
    --pingmel-soft: #fff4f4;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--pingmel-red);
    color: var(--pingmel-light);
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    background: rgba(242, 60, 59, 0.96);
    backdrop-filter: blur(8px);
}

.navbar-brand,
.nav-link {
    color: #fff !important;
}

.nav-link:hover {
    color: #111 !important;
}

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 120px 0 70px;
}

.logo-card {
    min-height: 320px;
    border: 3px dashed rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.logo-card img {
    max-width: 80%;
    max-height: 240px;
    object-fit: contain;
}

.hero h1 {
    font-size: clamp(2.7rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
}

.hero p {
    max-width: 620px;
    font-size: 1.15rem;
}

.section-light {
    background: var(--pingmel-soft);
    color: var(--pingmel-dark);
}

.section-white {
    background: #fff;
    color: var(--pingmel-dark);
}

.section-title {
    font-weight: 900;
    letter-spacing: -0.03em;
}

.photo-card {
    min-height: 320px;
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    transition: transform .25s ease, box-shadow .25s ease;
}

.photo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.photo-placeholder {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(242, 60, 59, .18), rgba(242, 60, 59, .05));
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    color: #555;
}

.photo-placeholder i {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--pingmel-red);
}

.company-text-box {
    min-height: 260px;
    border-radius: 24px;
    border: 2px dashed rgba(242, 60, 59, .55);
    background: #fff;
    padding: 32px;
}

.company-data-card {
    border-radius: 24px;
    border: 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.company-data-card dt {
    font-weight: 800;
}

.company-data-card dd {
    margin-bottom: 1rem;
}

.social-link {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--pingmel-red);
    font-size: 1.35rem;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.social-link:hover {
    transform: translateY(-4px);
    background: #111;
    color: #fff;
}

.legal-link {
    color: #fff;
    text-decoration: none;
}

.legal-link:hover {
    color: #111;
}

footer {
    border-top: 1px solid rgba(255,255,255,.25);
}

@media (max-width: 991.98px) {
    .hero {
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
}
