:root {
    /* Brand colors extracted from logo */
    --paipers-navy: #1e3a5f;
    --paipers-navy-deep: #142c4a;
    --paipers-blue: #2563eb;
    --paipers-blue-light: #3b82f6;
    --paipers-blue-soft: rgba(37, 99, 235, 0.08);

    /* Surfaces */
    --bg: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;

    /* Text */
    --text: #0f172a;
    --text-muted: #64748b;
    --text-subtle: #94a3b8;

    /* Sizing */
    --radius: 14px;
    --radius-sm: 8px;

    /* Motion */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    padding: 5rem 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1.25rem;
}

.tagline {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.005em;
}

.services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    flex: 1;
    align-content: start;
}

@media (min-width: 640px) {
    .services { grid-template-columns: repeat(2, 1fr); }
}

.service {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.75rem 1.75rem 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}

.service:hover {
    border-color: var(--paipers-blue);
    box-shadow: 0 0 0 4px var(--paipers-blue-soft);
    transform: translateY(-2px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--paipers-navy);
    letter-spacing: -0.015em;
}

.arrow {
    color: var(--text-subtle);
    transition: transform .18s var(--ease), color .18s var(--ease);
    font-size: 1.1rem;
}

.service:hover .arrow {
    transform: translateX(4px);
    color: var(--paipers-blue);
}

.service p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: 0.5rem;
    padding: 0.25rem 0.65rem;
    background: var(--bg-tertiary);
    color: var(--paipers-navy);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

footer {
    text-align: center;
    padding-top: 3rem;
    margin-top: auto;
    color: var(--text-subtle);
    font-size: 0.85rem;
    font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
