/* Shared hero typography */
.hero-title {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: none;
}

.hero-subtitle {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: none;
}

.hero-buttons .btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--primary-white);
}

.hero-buttons .btn-secondary:hover {
    border-color: var(--primary-white);
    color: var(--primary-white);
}
