/*
Theme Name: Spotlight Creatives
Theme URI: https://spotlightcreativesco.com
Author: Spotlight Creatives Co
Author URI: https://spotlightcreativesco.com
Description: Custom marketing theme for Spotlight Creatives Co — a content production agency in Clarksville, TN. Includes a full single-page homepage (hero, services, results, testimonials, process, pricing, CTA) built to brand.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: spotlight-creatives
*/

/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */
:root {
  --sc-blue: #3BBFE3;
  --sc-blue-dark: #2aa6c9;
  --sc-navy: #0a1520;
  --sc-navy-soft: #11202e;
  --sc-white: #ffffff;
  --sc-offwhite: #f8fbfc;
  --sc-blue-pale: #e0f6fc;
  --sc-ink: #0a1520;
  --sc-muted: #5a6b76;
  --sc-muted-light: #9fb3bf;
  --sc-border: rgba(10, 21, 32, 0.08);
  --sc-shadow: 0 18px 50px rgba(10, 21, 32, 0.10);
  --sc-shadow-sm: 0 8px 24px rgba(10, 21, 32, 0.08);
  --sc-radius-card: 20px;
  --sc-radius-pill: 50px;
  --sc-max: 1180px;
  --sc-nav-h: 76px;
}

/* =========================================================
   2. RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--sc-nav-h) + 20px); }

body {
  margin: 0;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: var(--sc-ink);
  background: var(--sc-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }

a { color: var(--sc-blue); text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
a:hover { color: var(--sc-blue-dark); }

img, svg { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

/* =========================================================
   3. LAYOUT HELPERS
   ========================================================= */
.sc-container {
  width: 100%;
  max-width: var(--sc-max);
  margin: 0 auto;
  padding: 0 24px;
}

.sc-section { padding: 96px 0; }

.sc-section--navy { background: var(--sc-navy); color: var(--sc-white); }
.sc-section--offwhite { background: var(--sc-offwhite); }
.sc-section--white { background: var(--sc-white); }
.sc-section--pale { background: var(--sc-blue-pale); }

/* Section tag (short blue line + label) */
.sc-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sc-blue);
  margin-bottom: 18px;
}
.sc-tag::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--sc-blue);
}

.sc-section-head { max-width: 640px; margin-bottom: 56px; }
.sc-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sc-section-head--center .sc-tag { justify-content: center; }

.sc-section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.sc-section--navy .sc-section-title { color: var(--sc-white); }

.sc-section-sub { font-size: 1.08rem; color: var(--sc-muted); margin: 0; }
.sc-section--navy .sc-section-sub { color: var(--sc-muted-light); }

/* =========================================================
   4. BUTTONS
   ========================================================= */
.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 30px;
  border-radius: var(--sc-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.sc-btn:hover { transform: translateY(-2px); }

.sc-btn--primary {
  background: var(--sc-blue);
  color: var(--sc-navy);
  box-shadow: 0 10px 28px rgba(59, 191, 227, 0.4);
}
.sc-btn--primary:hover { background: #4ccaec; color: var(--sc-navy); box-shadow: 0 14px 34px rgba(59, 191, 227, 0.5); }

.sc-btn--navy {
  background: var(--sc-navy);
  color: var(--sc-white);
}
.sc-btn--navy:hover { background: var(--sc-navy-soft); color: var(--sc-white); }

.sc-btn--ghost {
  background: transparent;
  color: var(--sc-white);
  border-color: rgba(255, 255, 255, 0.25);
}
.sc-btn--ghost:hover { border-color: var(--sc-blue); color: var(--sc-blue); }

.sc-btn--outline {
  background: transparent;
  color: var(--sc-navy);
  border-color: var(--sc-navy);
}
.sc-btn--outline:hover { background: var(--sc-navy); color: var(--sc-white); }

.sc-btn--block { width: 100%; }

/* =========================================================
   5. HEADER / NAV
   ========================================================= */
.sc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 21, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--sc-blue);
}
.sc-nav {
  height: var(--sc-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sc-logo { display: inline-flex; align-items: center; gap: 12px; }
.sc-logo:hover { opacity: 0.92; }
.sc-logo__mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sc-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sc-logo__mark svg { width: 20px; height: 20px; }
.sc-logo__text {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.12rem;
  color: var(--sc-white);
  letter-spacing: -0.02em;
}

.sc-nav__links { display: flex; align-items: center; gap: 34px; }
.sc-nav__links a {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
}
.sc-nav__links a:hover { color: var(--sc-blue); }

.sc-nav__cta { display: flex; align-items: center; gap: 14px; }
.sc-nav__cta .sc-btn { padding: 12px 24px; font-size: 0.95rem; }

.sc-nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.sc-nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--sc-white);
  border-radius: 2px;
  transition: 0.25s ease;
}

/* push content below fixed header */
.sc-site-main { padding-top: var(--sc-nav-h); }

/* =========================================================
   6. HERO
   ========================================================= */
.sc-hero {
  background: var(--sc-navy);
  color: var(--sc-white);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.sc-hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(59,191,227,0.18) 0%, rgba(59,191,227,0) 70%);
  pointer-events: none;
}
.sc-hero__inner { position: relative; max-width: 820px; }

.sc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--sc-blue);
  background: rgba(59, 191, 227, 0.12);
  border: 1px solid rgba(59, 191, 227, 0.3);
  padding: 8px 18px;
  border-radius: var(--sc-radius-pill);
  margin-bottom: 26px;
}

.sc-hero__title {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: 900;
  margin-bottom: 22px;
  color: var(--sc-white);
}
.sc-hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--sc-muted-light);
  max-width: 640px;
  margin-bottom: 36px;
}
.sc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 70px;
}
.sc-hero__link {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  color: var(--sc-white);
}
.sc-hero__link:hover { color: var(--sc-blue); }

.sc-stats-band {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}
.sc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.sc-stat__num {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--sc-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.sc-stat__label {
  font-size: 0.92rem;
  color: var(--sc-muted-light);
}

/* =========================================================
   7. LOGO BAR
   ========================================================= */
.sc-logobar { background: var(--sc-blue-pale); padding: 40px 0; }
.sc-logobar__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 40px;
}
.sc-logobar__label {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sc-blue-dark);
}
.sc-logobar__names {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  align-items: center;
}
.sc-logobar__names span {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--sc-navy);
  opacity: 0.78;
}

/* =========================================================
   8. SERVICES
   ========================================================= */
.sc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sc-card {
  background: var(--sc-white);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-card);
  padding: 36px 32px;
  box-shadow: var(--sc-shadow-sm);
}

.sc-service {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.sc-service::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--sc-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.sc-service:hover { transform: translateY(-6px); box-shadow: var(--sc-shadow); }
.sc-service:hover::before { transform: scaleX(1); }

.sc-service__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--sc-blue-pale);
  color: var(--sc-blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.sc-service__icon svg { width: 26px; height: 26px; }
.sc-service h3 { font-size: 1.4rem; margin-bottom: 16px; }
.sc-service__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  color: var(--sc-muted);
  font-size: 0.98rem;
}
.sc-service__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--sc-blue-pale);
  box-shadow: inset 0 0 0 4px var(--sc-blue);
}

/* =========================================================
   9. RESULTS
   ========================================================= */
.sc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.sc-result {
  background: var(--sc-navy-soft);
  border: 1px solid rgba(59, 191, 227, 0.18);
  border-radius: var(--sc-radius-card);
  padding: 38px 36px;
}
.sc-result h3 { font-size: 1.5rem; color: var(--sc-white); margin-bottom: 26px; }
.sc-result__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sc-result__num {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--sc-blue);
  line-height: 1;
  margin-bottom: 6px;
}
.sc-result__label { font-size: 0.85rem; color: var(--sc-muted-light); }

/* =========================================================
   10. TESTIMONIALS
   ========================================================= */
.sc-quote {
  background: var(--sc-white);
  border-radius: var(--sc-radius-card);
  padding: 40px 38px;
  box-shadow: var(--sc-shadow-sm);
  border: 1px solid var(--sc-border);
  display: flex;
  flex-direction: column;
}
.sc-quote__mark {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--sc-blue);
  margin-bottom: 14px;
}
.sc-quote__text {
  font-size: 1.08rem;
  color: #2c3a44;
  margin-bottom: 26px;
  flex: 1;
}
.sc-quote__author { display: flex; align-items: center; gap: 14px; }
.sc-quote__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sc-blue);
  color: var(--sc-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.sc-quote__name { font-family: "Nunito", sans-serif; font-weight: 800; color: var(--sc-navy); }
.sc-quote__role { font-size: 0.88rem; color: var(--sc-muted); }

/* =========================================================
   11. PROCESS
   ========================================================= */
.sc-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.sc-process::before {
  content: "";
  position: absolute;
  top: 30px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--sc-blue-pale), var(--sc-blue), var(--sc-blue-pale));
  z-index: 0;
}
.sc-step { position: relative; z-index: 1; text-align: center; }
.sc-step__bubble {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--sc-blue);
  color: var(--sc-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  border: 5px solid var(--sc-white);
  box-shadow: 0 6px 18px rgba(59, 191, 227, 0.35);
}
.sc-step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.sc-step p { color: var(--sc-muted); font-size: 0.96rem; margin: 0; }

/* =========================================================
   12. PRICING
   ========================================================= */
.sc-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.sc-price {
  background: var(--sc-white);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sc-shadow-sm);
}
.sc-price--featured {
  background: var(--sc-navy);
  border: 2px solid var(--sc-blue);
  transform: scale(1.04);
  box-shadow: 0 24px 60px rgba(10, 21, 32, 0.25);
  position: relative;
  z-index: 2;
}
.sc-price__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--sc-blue);
  color: var(--sc-navy);
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--sc-radius-pill);
}
.sc-price__name {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sc-blue);
  margin-bottom: 14px;
}
.sc-price--featured .sc-price__name { color: var(--sc-blue); }
.sc-price__amount {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--sc-navy);
  line-height: 1;
  margin-bottom: 4px;
}
.sc-price--featured .sc-price__amount { color: var(--sc-white); }
.sc-price__per { font-size: 0.95rem; color: var(--sc-muted); }
.sc-price--featured .sc-price__per { color: var(--sc-muted-light); }
.sc-price__list { margin: 26px 0 30px; flex: 1; }
.sc-price__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #34434d;
  font-size: 0.96rem;
}
.sc-price--featured .sc-price__list li { color: rgba(255,255,255,0.82); }
.sc-price__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--sc-blue);
  font-weight: 900;
}

/* Pricing tabs */
.sc-ptabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.sc-ptab {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1;
  padding: 13px 26px;
  border-radius: var(--sc-radius-pill);
  border: 2px solid var(--sc-border);
  background: var(--sc-white);
  color: var(--sc-muted);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.sc-ptab:hover { border-color: var(--sc-blue); color: var(--sc-navy); }
.sc-ptab.is-active {
  background: var(--sc-blue);
  border-color: var(--sc-blue);
  color: var(--sc-navy);
}
.sc-ppanel[hidden] { display: none; }
.sc-pricing--two {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}
.sc-pricing__note {
  text-align: center;
  color: var(--sc-muted);
  font-size: 0.95rem;
  margin: 28px 0 0;
}

/* =========================================================
   13. CTA BANNER
   ========================================================= */
.sc-cta {
  background: var(--sc-blue);
  color: var(--sc-navy);
  text-align: center;
  padding: 84px 0;
}
.sc-cta h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  color: var(--sc-navy);
  max-width: 760px;
  margin: 0 auto 18px;
}
.sc-cta p { font-size: 1.12rem; color: rgba(10, 21, 32, 0.78); max-width: 560px; margin: 0 auto 32px; }
.sc-cta__note { font-size: 0.9rem; color: rgba(10, 21, 32, 0.65); margin: 20px 0 0; }

/* =========================================================
   14. FOOTER
   ========================================================= */
.sc-footer {
  background: var(--sc-navy);
  color: var(--sc-muted-light);
  border-top: 3px solid var(--sc-blue);
  padding: 70px 0 0;
}
.sc-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.sc-footer .sc-logo__text { font-size: 1.18rem; }
.sc-footer__tagline { margin-top: 18px; max-width: 340px; font-size: 0.98rem; }
.sc-footer h4 {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sc-white);
  margin-bottom: 20px;
}
.sc-footer__links li { margin-bottom: 12px; }
.sc-footer__links a { color: var(--sc-muted-light); font-weight: 600; }
.sc-footer__links a:hover { color: var(--sc-blue); }
.sc-footer__contact li { margin-bottom: 12px; font-size: 0.96rem; }
.sc-footer__contact a { color: var(--sc-muted-light); }
.sc-footer__contact a:hover { color: var(--sc-blue); }
.sc-footer__social { display: flex; gap: 12px; margin-top: 18px; }
.sc-footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-white);
  transition: background 0.2s ease, color 0.2s ease;
}
.sc-footer__social a:hover { background: var(--sc-blue); color: var(--sc-navy); }
.sc-footer__social svg { width: 19px; height: 19px; }
.sc-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--sc-muted-light);
}

/* =========================================================
   14b. ABOUT (prose)
   ========================================================= */
.sc-prose { max-width: 760px; margin: 0 auto; }
.sc-prose p { font-size: 1.12rem; color: var(--sc-muted); }
.sc-prose p:last-child { margin-bottom: 0; }

/* =========================================================
   14c. RESULTS — REELS
   ========================================================= */
.sc-reels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sc-reel {
  background: var(--sc-navy-soft);
  border: 1px solid rgba(59, 191, 227, 0.18);
  border-radius: var(--sc-radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sc-reel__thumb {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  background: linear-gradient(150deg, #16293a, #0d1a26);
}
.sc-reel__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-reel__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(59, 191, 227, 0.92);
  color: var(--sc-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  padding-left: 4px;
  transition: transform 0.2s ease;
}
.sc-reel__thumb:hover .sc-reel__play { transform: translate(-50%, -50%) scale(1.08); }
.sc-reel__title {
  font-size: 1.05rem;
  color: var(--sc-white);
  margin: 20px 22px 14px;
}
.sc-reel__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 10px;
  padding: 0 22px 24px;
  margin-top: auto;
}
.sc-reel__num {
  display: block;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--sc-blue);
  line-height: 1;
  margin-bottom: 4px;
}
.sc-reel__label { font-size: 0.78rem; color: var(--sc-muted-light); }

/* =========================================================
   14d. FAQ
   ========================================================= */
.sc-faq { max-width: 820px; margin: 0 auto; }
.sc-faq__item {
  border: 1px solid var(--sc-border);
  border-radius: 14px;
  background: var(--sc-white);
  box-shadow: var(--sc-shadow-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.sc-faq__q {
  list-style: none;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--sc-navy);
  padding: 22px 56px 22px 26px;
  position: relative;
}
.sc-faq__q::-webkit-details-marker { display: none; }
.sc-faq__q::after {
  content: "+";
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sc-blue);
  transition: transform 0.2s ease;
}
.sc-faq__item[open] .sc-faq__q::after { transform: translateY(-50%) rotate(45deg); }
.sc-faq__a { padding: 0 26px 24px; }
.sc-faq__a p { color: var(--sc-muted); margin: 0; }

/* =========================================================
   14e. OUR WORK SHOWCASE
   ========================================================= */
.sc-work-group { margin-bottom: 60px; }
.sc-work-group:last-child { margin-bottom: 0; }
.sc-work-group__title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--sc-navy);
  margin-bottom: 26px;
}
.sc-work-group__title::before {
  content: "";
  width: 24px; height: 3px;
  border-radius: 3px;
  background: var(--sc-blue);
}

.sc-work-grid { display: grid; gap: 22px; }
.sc-work-grid--4 { grid-template-columns: repeat(4, 1fr); }
.sc-work-grid--duo {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  max-width: 760px;
}
.sc-work-grid--solo {
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
}

.sc-work-card {
  display: flex;
  flex-direction: column;
  background: var(--sc-white);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-card);
  overflow: hidden;
  box-shadow: var(--sc-shadow-sm);
  color: var(--sc-navy);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.sc-work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sc-shadow);
  color: var(--sc-navy);
}

.sc-work-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(150deg, #16293a, #0d1a26);
}
.sc-work-card__media--wide { aspect-ratio: 16 / 9; }
.sc-work-card__media--tall { aspect-ratio: 9 / 16; }
.sc-work-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.sc-work-card:hover .sc-work-card__media img { transform: scale(1.04); }
.sc-work-card__media::after {
  content: "\25B6";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(59, 191, 227, 0.92);
  color: var(--sc-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  padding-left: 3px;
  pointer-events: none;
  transition: transform 0.2s ease;
}
.sc-work-card:hover .sc-work-card__media::after { transform: translate(-50%, -50%) scale(1.08); }

.sc-work-card__title {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--sc-navy);
  line-height: 1.3;
  padding: 16px 18px;
}

/* =========================================================
   15. RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .sc-nav__links { display: none; }
  .sc-nav__toggle { display: flex; }
  .sc-nav__links.is-open {
    display: flex;
    position: absolute;
    top: var(--sc-nav-h); left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--sc-navy);
    border-bottom: 2px solid var(--sc-blue);
    padding: 12px 24px 20px;
  }
  .sc-nav__links.is-open a { padding: 12px 0; width: 100%; }

  .sc-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .sc-grid-3, .sc-grid-2, .sc-pricing, .sc-process { grid-template-columns: 1fr; }
  .sc-pricing--two { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .sc-reels { grid-template-columns: repeat(2, 1fr); }
  .sc-work-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .sc-work-grid--duo { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .sc-work-grid--solo { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .sc-process::before { display: none; }
  .sc-price--featured { transform: none; }
  .sc-footer__grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .sc-section { padding: 64px 0; }
  .sc-hero { padding: 80px 0 64px; }
  .sc-stats { grid-template-columns: 1fr 1fr; }
  .sc-result__stats { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .sc-nav__cta .sc-btn { display: none; }
  .sc-hero__actions .sc-btn { width: 100%; }
}
