/* =============================================================
   Leveredge Media — services.css
   Loaded on the Services page only.
   v1.0.0
============================================================= */


/* ── SECTION BACKGROUNDS + PADDING ─────────────────────────── */

#services-hero { background: var(--ink); }
#seo    { background: var(--ink-2); padding: 96px 0; }
#social { background: var(--ink);   padding: 96px 0; }
#video  { background: var(--ink-2); padding: 96px 0; }
#web    { background: var(--ink);   padding: 96px 0; }
#crm    { background: var(--ink-2); padding: 96px 0; }
#services-cta { background: var(--ink); padding: 96px 24px; position: relative; overflow: hidden; }

#services-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 90% at 50% 110%, rgba(255, 95, 31, 0.09) 0%, transparent 55%);
    pointer-events: none;
}


/* ============================================================
   SERVICES HERO
============================================================= */

#services-hero {
    padding: 148px 24px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.services-hero-grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent 70%);
    pointer-events: none;
}
.services-hero-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% -5%, rgba(255, 95, 31, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.services-hero-inner {
    position: relative; z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
    padding-bottom: 60px;
}

.services-hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.8vw, 68px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.07;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 780px;
}
.services-hero-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 36px;
}
.services-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }


/* ── QUICK NAV ───────────────────────────────────────────────── */

.services-quick-nav {
    background: var(--card);
    border-top: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
    position: relative; z-index: 1;
}
.services-quick-nav::-webkit-scrollbar { display: none; }

.services-quick-nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
}
.sqn-link {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    padding: 15px 20px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.sqn-link:hover { color: var(--white); border-bottom-color: var(--orange); }


/* ============================================================
   SERVICE SECTIONS (shared)
============================================================= */

.service-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* Service text column */
.service-text {}

.service-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.service-icon-lg {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: var(--orange-soft);
    border: 1px solid var(--orange-border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.service-icon-lg svg { width: 26px; height: 26px; }

.service-section h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.2;
}

.service-text > p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 16px;
}
.service-text > p:last-of-type { margin-bottom: 0; }
.service-text strong { color: var(--white); font-weight: 600; }

/* Who it's for callout */
.service-who-for {
    background: var(--card-2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    border-radius: 0 var(--r) var(--r) 0;
    padding: 16px 20px;
    margin-top: 26px;
}
.service-who-for h4 {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 7px;
}
.service-who-for p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Features column */
.service-features-col {
    background: var(--card);
    border: 1px solid var(--border-2);
    border-radius: var(--r-lg);
    padding: 34px 30px;
}
.service-features-heading {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 20px;
}
.service-features-col .lm-check-list li { font-size: 15px; }


/* ============================================================
   SERVICES CTA
============================================================= */

.services-cta-inner {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    position: relative; z-index: 1;
}
.services-cta-title  { font-size: clamp(28px, 4.5vw, 50px); margin-bottom: 18px; }
.services-cta-sub    { font-size: 18px; color: var(--muted); line-height: 1.68; margin-bottom: 38px; }
.services-cta-actions { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }


/* ============================================================
   RESPONSIVE
============================================================= */

@media (max-width: 900px) {
    .service-section-inner { grid-template-columns: 1fr; gap: 36px; }
    .service-features-col  { order: -1; } /* Features above text on mobile */
    .services-hero-title   { font-size: clamp(34px, 8vw, 52px); }
}

@media (max-width: 720px) {
    #services-hero  { padding-top: 120px; padding-bottom: 48px; }
    .services-hero-sub { font-size: 17px; }
    .sqn-inner { gap: 6px; flex-wrap: wrap; }
    .sqn-link  { padding: 10px 12px; font-size: 12px; }
}

@media (max-width: 580px) {
    #services-hero { padding-top: 112px; }
    .sqn-link { padding: 13px 14px; font-size: 13px; }
}
