/* ═══════════════════════════════════════════════════
   LomiLink Home Sub-pages Styles
   Frontend: HTML/CSS/JS  |  Backend: PHP Laravel
   ═══════════════════════════════════════════════════ */

/* ── Page offset ─── */
.page-main { padding-top: 64px; }

/* ── Shared card component ─── */
.card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform .2s, box-shadow .2s;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

/* ── Section eyebrows ─── */
.section-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .75rem; font-weight: 700; color: #059669;
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 900; line-height: 1.15; letter-spacing: -.03em;
    text-align: center; margin-bottom: 2.5rem; color: #0f172a;
}
.gradient-text {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── About page ─── */
.about-section { padding: 5rem 0; }
.about-section:first-of-type { padding-top: 2rem; }
.about-hero {
    position: relative; padding: 5rem 0 3rem;
    text-align: center; overflow: hidden;
}
.about-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(16,185,129,.08), transparent);
}
.about-title {
    font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
    line-height: 1.1; letter-spacing: -.04em; color: #0f172a; margin-bottom: 1rem;
}
.about-sub {
    font-size: 1.05rem; color: #475569; line-height: 1.65;
    max-width: 600px; margin: 0 auto;
}
.about-grid {
    display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
.about-values {
    display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .about-values { grid-template-columns: repeat(2, 1fr); } }
.about-value {
    display: flex; gap: 1rem; align-items: flex-start;
}
.about-value-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(16,185,129,.1); color: #10b981;
    font-size: 1rem; flex-shrink: 0;
}
.about-value-title { font-weight: 700; font-size: .95rem; color: #0f172a; margin-bottom: .25rem; }
.about-value-text { font-size: .85rem; color: #475569; line-height: 1.55; }

/* ── Pricing page overrides ─── */
.pp-page { padding: 0 0 4rem; }
.pp-hero { position: relative; padding: 5rem 0 2rem; text-align: center; }
.pp-hero .section-eyebrow { justify-content: center; }
.pp-title {
    font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
    line-height: 1.1; letter-spacing: -.04em; color: #0f172a; margin-bottom: 1rem;
}
.pp-sub { font-size: 1rem; color: #475569; max-width: 520px; margin: 0 auto 2rem; }

/* ── Terms / Privacy pages ─── */
.legal-section { padding: 4rem 0; }
.legal-container { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.legal-hero { text-align: center; padding: 4rem 0 1rem; }
.legal-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
    letter-spacing: -.03em; color: #0f172a; margin-bottom: .75rem;
}
.legal-meta { font-size: .85rem; color: #64748b; margin-bottom: 2rem; }
.legal-content h2 {
    font-size: 1.3rem; font-weight: 800; color: #0f172a;
    margin: 2rem 0 .75rem;
}
.legal-content p {
    font-size: .95rem; line-height: 1.7; color: #475569;
    margin-bottom: 1rem;
}
.legal-content ul { padding-left: 1.5rem; }
.legal-content li { font-size: .95rem; line-height: 1.7; color: #475569; margin-bottom: .5rem; }
