﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500&display=swap');

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

.pg {
    font-family: 'Inter', sans-serif;
    background: var(--color-background-tertiary);
    padding: 48px 0 64px;
}

.container {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
    padding-bottom: 20px;
    border-bottom: 0.5px solid var(--color-border-tertiary);
    animation: fadeIn 0.5s ease both;
}

.topbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #042C53;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .brand-mark svg {
        width: 18px;
        height: 18px;
    }

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

.brand-sub {
    font-size: 0.72rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #085041;
    background: #E1F5EE;
    border: 0.5px solid #9FE1CB;
    border-radius: 20px;
    padding: 5px 12px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1D9E75;
    animation: blink 2.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 64px;
    animation: fadeIn 0.5s 0.1s ease both;
}

.hero-left h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

    .hero-left h1 em {
        font-style: italic;
        color: #185FA5;
    }

.hero-left p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    font-weight: 300;
    max-width: 380px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 0.5px solid var(--color-border-tertiary);
}

    .stat-row:first-child {
        border-top: 0.5px solid var(--color-border-tertiary);
    }

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    animation: fadeIn 0.5s 0.2s ease both;
}

.divider-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-secondary);
    white-space: nowrap;
}

.divider-line {
    flex: 1;
    height: 0.5px;
    background: var(--color-border-tertiary);
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-background-primary);
    animation: fadeIn 0.5s 0.25s ease both;
}

.svc {
    padding: 32px 28px;
    border-right: 0.5px solid var(--color-border-tertiary);
    border-bottom: 0.5px solid var(--color-border-tertiary);
    transition: background 0.2s;
    cursor: default;
}

    .svc:nth-child(even) {
        border-right: none;
    }

    .svc:nth-child(3), .svc:nth-child(4) {
        border-bottom: none;
    }

    .svc:hover {
        background: var(--color-background-secondary);
    }

.svc-index {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.svc-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}

.svc:nth-child(1) .svc-icon-wrap {
    background: #E6F1FB;
}

.svc:nth-child(2) .svc-icon-wrap {
    background: #E1F5EE;
}

.svc:nth-child(3) .svc-icon-wrap {
    background: #FAEEDA;
}

.svc:nth-child(4) .svc-icon-wrap {
    background: #EEEDFE;
}

.svc h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.svc p {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    font-weight: 300;
}

.svc-arrow {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    transition: color 0.2s, transform 0.2s;
}

.svc:hover .svc-arrow {
    color: #185FA5;
    transform: translateX(4px);
}

.bottom-strip {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding: 28px 32px;
    background: var(--color-background-primary);
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: 12px;
    animation: fadeIn 0.5s 0.35s ease both;
}

.strip-text p {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

.strip-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #fff;
    background: #042C53;
    border: none;
    border-radius: 8px;
    padding: 12px 22px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

    .cta:hover {
        background: #185FA5;
        transform: translateY(-1px);
    }

    .cta:active {
        transform: scale(0.98);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
