/* === TAPMYMAC PAGE === */

.hero-section {
    text-align: center;
    padding: 4rem 0 3rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text);
    font-family: var(--font-sans);
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.7;
    line-height: 1.7;
}

/* Feature highlights */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 4rem;
}

.highlight-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.3s, transform 0.2s;
}

.highlight-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.card-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.75rem;
}

.highlight-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.highlight-card p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* CTA */
.cta-section {
    text-align: center;
    margin: 2rem 0 4rem;
}

.cta-note {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .highlights {
        grid-template-columns: 1fr;
    }
}
