/* ============================================================
   Side Job Creative Business Solutions
   sjcreativebusinesssolutions.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poiret+One&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---- Tokens ---- */
:root {
  --orange:     #FF6B00;
  --orange-dk:  #D95800;
  --orange-lt:  #FFF0E6;
  --dark:       #111111;
  --charcoal:   #333333;
  --body:       #555555;
  --mid:        #888888;
  --border:     #E5E5E5;
  --light:      #F5F5F5;
  --white:      #FFFFFF;

  /* Rainbow spectrum (from the logo) */
  --r-red:    #EF4444;
  --r-orange: #FF6B00;
  --r-yellow: #F59E0B;
  --r-green:  #10B981;
  --r-teal:   #06B6D4;
  --r-blue:   #3B82F6;
  --r-purple: #8B5CF6;
  --r-pink:   #EC4899;

  --rainbow: linear-gradient(90deg,
    #EF4444, #FF6B00, #F59E0B, #10B981,
    #06B6D4, #3B82F6, #8B5CF6, #EC4899);

  --nav-h:   72px;
  --max-w:   1200px;
  --radius:  8px;
  --radius-lg: 16px;
  --shadow:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: all 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 88px 32px; }
.section-pad-sm { padding: 56px 32px; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark);
}
.display {
  font-family: 'Poiret One', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.1rem; line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header .sub { font-size: 1.05rem; color: var(--mid); max-width: 600px; margin: 0 auto; }

/* Rainbow underline utility */
.rainbow-line {
  display: block;
  height: 4px;
  background: var(--rainbow);
  border-radius: 2px;
  margin: 16px auto 0;
  max-width: 80px;
}
.rainbow-line.full { max-width: none; border-radius: 0; margin: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.35);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  font-weight: 800;
}
.btn-white:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-lg { padding: 18px 40px; font-size: 0.9rem; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--nav-h);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav--transparent {
  background: transparent;
  box-shadow: none;
}
.nav--transparent .nav-rainbow { opacity: 0; }
.nav--transparent .nav-links a { color: rgba(255,255,255,0.85); }
.nav--transparent .nav-links a:hover,
.nav--transparent .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.12); }
.nav--solid { background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.nav-rainbow { height: 4px; background: var(--rainbow); flex-shrink: 0; }
.nav-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 32px;
  gap: 16px;
}
.nav-logo img { height: 58px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 8px 12px;
  border-radius: 6px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
  background: var(--orange-lt);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--charcoal);
  padding: 12px 16px;
  border-radius: 6px;
  border-bottom: 1px solid var(--light);
}
.nav-mobile a:hover { color: var(--orange); background: var(--orange-lt); }
.nav-mobile .btn { margin-top: 12px; text-align: center; display: block; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 32px 64px;
  position: relative;
  overflow: hidden;
}
.hero-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-bg-rainbow {
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 6px;
  background: var(--rainbow);
}
.hero-bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 70% 50%, rgba(255,107,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 72px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-text .eyebrow { color: var(--orange); }
.hero-text h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 8px;
  line-height: 1.08;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-text .rainbow-line { margin: 0 0 24px; }
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
/* Left column wrapper — stacks brand block above hero text */
.hero-left {
  display: flex;
  flex-direction: column;
}

/* Hero brand block — large logo that hands off to nav on scroll */
.hero-brand-block {
  margin-bottom: 40px;
  text-align: left;
  will-change: opacity, transform;
  transform-origin: top left;
}
.hero-brand-block img {
  width: 100%;
  height: auto;
  max-width: 520px;
  display: block;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Browser Mockup */
.browser-wrap {
  position: relative;
}
.browser-wrap::before {
  content: '';
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse at center, rgba(255,107,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.browser {
  background: #1E1E1E;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 32px 80px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1;
}
.browser-bar {
  background: #2A2A2A;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bdot { width: 11px; height: 11px; border-radius: 50%; }
.bdot-r { background: #EF4444; }
.bdot-y { background: #F59E0B; }
.bdot-g { background: #10B981; }
.burl {
  flex: 1;
  margin-left: 8px;
  background: #111;
  border-radius: 4px;
  height: 22px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  font-size: 10px;
  font-family: monospace;
  color: rgba(255,255,255,0.35);
}
.browser-body { padding: 0; }

/* Animated browser mockup — inner page */
.bm-sticky-nav {
  height: 28px;
  background: rgba(18, 18, 18, 0.97);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
  border-bottom: 1px solid rgba(255,107,0,0.22);
}
.bm-snav-logo {
  font-family: 'Poiret One', cursive;
  font-size: 0.68rem;
  color: #FF6B00;
  font-weight: 400;
  letter-spacing: 2.5px;
  white-space: nowrap;
}
.bm-snav-links { display: flex; gap: 6px; flex: 1; justify-content: center; }
.bm-snav-links div { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.18); width: 22px; }
.bm-snav-cta { width: 38px; height: 14px; background: #FF6B00; border-radius: 2px; }

.bm-viewport {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #111;
}
.bm-track {
  animation: bmScrollUp 16s linear infinite;
  will-change: transform;
}
@keyframes bmScrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* Inner page: Hero section */
.bm-hero {
  height: 130px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1500 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  overflow: hidden;
}
.bm-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rainbow);
}
.bm-hero-logo {
  font-family: 'Poiret One', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: #FF6B00;
  letter-spacing: 5px;
  line-height: 1;
}
.bm-hero-tagline {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.4px;
  text-align: center;
}
.bm-hero-actions { display: flex; gap: 6px; margin-top: 5px; }
.bm-action-primary {
  background: #FF6B00;
  color: white;
  font-size: 0.44rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.bm-action-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.65);
  font-size: 0.44rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Inner page: Stats strip */
.bm-stats-row {
  height: 64px;
  background: #FF6B00;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 0 8px;
  gap: 2px;
}
.bm-stat { text-align: center; display: flex; flex-direction: column; gap: 2px; }
.bm-stat strong { font-size: 0.9rem; font-weight: 900; color: white; line-height: 1; }
.bm-stat span { font-size: 0.38rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.3px; line-height: 1.3; }

/* Inner page: Feature cards */
.bm-features-row {
  height: 84px;
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px 10px;
}
.bm-feat-card {
  background: #f5f5f5;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 4px;
  border-top: 2px solid #FF6B00;
}
.bm-feat-icon { font-size: 1rem; line-height: 1; }
.bm-feat-name { font-size: 0.42rem; font-weight: 700; color: #333; text-transform: uppercase; letter-spacing: 0.3px; }

/* Inner page: Portfolio grid */
.bm-portfolio-section {
  height: 112px;
  background: #1a1a1a;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bm-section-eyebrow {
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FF6B00;
}
.bm-port-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.bm-port-tile { border-radius: 3px; display: flex; align-items: flex-end; padding: 3px 5px; }
.bm-port-tile span { font-size: 0.38rem; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.3px; }

/* Inner page: Testimonial */
.bm-testi-block {
  height: 82px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 14px;
  gap: 4px;
  text-align: center;
}
.bm-testi-stars { color: #FF6B00; font-size: 0.58rem; letter-spacing: 1px; }
.bm-testi-quote { font-size: 0.46rem; color: #333; font-style: italic; line-height: 1.5; max-width: 220px; }
.bm-testi-name { font-size: 0.4rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.3px; }

/* Inner page: CTA */
.bm-cta-block {
  height: 48px;
  background: linear-gradient(90deg, #FF6B00 0%, #D95800 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}
.bm-cta-headline { font-size: 0.56rem; font-weight: 800; color: white; letter-spacing: 0.3px; }
.bm-cta-button {
  font-size: 0.42rem;
  font-weight: 700;
  color: #FF6B00;
  background: white;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}


/* Hero background photo — directional overlay darkens left text column */
.hero.has-photo {
  background-size: cover;
  background-position: center top;
}
.hero.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.54) 40%,
    rgba(0,0,0,0.22) 100%
  );
  z-index: 0;
}

/* Why-SJC section background photo */
.why-section { position: relative; }
.why-section.has-photo {
  background-size: cover;
  background-position: center;
}
.why-section.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 0;
}
.why-section .container { position: relative; z-index: 1; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--orange);
  padding: 56px 32px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: transparent;
}
.stat-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-src { font-size: 0.65rem; color: rgba(255,255,255,0.45); margin-top: 6px; display: block; font-style: italic; }


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--white); padding: 88px 32px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.step-card h4 { font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }
.step-included {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 16px;
}
.step-included::before { content: '✓'; font-weight: 900; }


/* ============================================================
   PACKAGES PREVIEW / PRICING
   ============================================================ */
.packages-section { background: var(--light); padding: 88px 32px; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pkg-card.popular { border-color: var(--orange); }
.pkg-rainbow { height: 5px; }
.pkg-header { padding: 32px 28px 24px; }
.pkg-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pkg-tag.popular { background: var(--orange); color: white; }
.pkg-tag.starter { background: var(--light); color: var(--mid); }
.pkg-tag.custom { background: var(--dark); color: white; }
.pkg-card h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 4px; }
.pkg-tagline { font-size: 0.85rem; color: var(--mid); margin-bottom: 20px; }
.pkg-price {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-price.talk { font-size: 1.8rem; color: var(--orange); }
.pkg-price-note { font-size: 0.78rem; color: var(--mid); }
.pkg-divider { height: 1px; background: var(--border); margin: 0 28px; }
.pkg-features { padding: 24px 28px; flex: 1; }
.pkg-features ul { display: flex; flex-direction: column; gap: 10px; }
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--body);
}
.pkg-features li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.pkg-footer { padding: 0 28px 28px; }
.pkg-footer .btn { display: block; text-align: center; }
.pkg-note {
  font-size: 0.78rem;
  color: var(--mid);
  text-align: center;
  margin-top: 12px;
}


/* ============================================================
   PORTFOLIO CARDS
   ============================================================ */
.portfolio-section { background: var(--white); padding: 88px 32px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto 40px;
}
.port-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.port-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.port-band { height: 6px; }
.port-icon-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  font-size: 2.5rem;
}
.port-body { padding: 16px; }
.port-industry {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.port-body h4 { font-size: 0.9rem; color: var(--dark); margin-bottom: 6px; line-height: 1.3; }
.port-body p { font-size: 0.8rem; color: var(--mid); line-height: 1.5; margin: 0; }
.port-img-area {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  letter-spacing: -1px;
}
.port-card-foot {
  padding: 12px 16px 16px;
}
.btn-coming-soon {
  display: block;
  text-align: center;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--light);
  color: var(--mid);
  border: 1px solid var(--border);
}

.port-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--mid);
  font-style: italic;
  padding: 16px;
  background: var(--light);
  border-radius: var(--radius);
  max-width: 600px;
  margin: 0 auto;
}


/* ============================================================
   WHY SJC
   ============================================================ */
.why-section { background: var(--dark); padding: 88px 32px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.why-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--wc, var(--orange));
}
.why-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: 20px; }
.why-card h4 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light); padding: 88px 32px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.testi-rainbow {
  height: 4px;
  position: absolute;
  top: 0; left: 0; right: 0;
}
.testi-stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-size: 0.95rem; line-height: 1.75; color: var(--body); margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); display: block; margin-bottom: 2px; }
.testi-biz { font-size: 0.78rem; color: var(--mid); }


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 96px 32px;
  background: var(--orange) url('../Assets/SJC_OrangeBG_with_overlay.png') center/cover;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.08);
}
.cta-banner-inner { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 520px; margin: 0 auto 40px; }
.cta-banner .eyebrow { color: rgba(255,255,255,0.6); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark) url('../Assets/SJC_BlackBG_with_overlay.png') center/cover; }
.footer-rainbow { height: 5px; background: var(--rainbow); }
.footer-inner { padding: 64px 32px 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .footer-logo { height: auto; width: 100%; max-width: 300px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.75; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.s-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.s-icon:hover { background: var(--orange); color: white; }
.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.4); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-love { color: rgba(255,255,255,0.4); }
.footer-love span { color: var(--orange); }


/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 32px 72px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero.has-photo {
  background-size: cover;
  background-position: center;
}
.page-hero.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  z-index: 0;
}
.page-hero.has-photo.overlay-med::before { background: rgba(0,0,0,0.52); }
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--rainbow);
  z-index: 2;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { color: rgba(255,107,0,0.8); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }


/* ============================================================
   SERVICES PAGE — FULL PRICING
   ============================================================ */
.pricing-full { background: var(--white); padding: 88px 32px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.price-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.price-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--orange); }
.price-top { height: 6px; }
.price-header { padding: 36px 32px 28px; }
.price-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.price-badge.hot { background: var(--orange); color: white; }
.price-badge.start { background: var(--light); color: var(--mid); }
.price-badge.custom { background: var(--dark); color: white; }
.price-card h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 6px; }
.price-for { font-size: 0.85rem; color: var(--mid); margin-bottom: 24px; }
.price-amt {
  font-weight: 900;
  font-size: 3rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}
.price-amt.talk { font-size: 2rem; color: var(--orange); }
.price-note-sm { font-size: 0.78rem; color: var(--mid); }
.price-body { padding: 0 32px 32px; flex: 1; display: flex; flex-direction: column; }
.price-includes {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.price-body ul { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; flex: 1; }
.price-body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--body);
}
.price-body li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; }
.price-body .btn { display: block; text-align: center; }

/* Add-ons grid */
.addons-section { background: var(--light); padding: 88px 32px; }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.addon-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.addon-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.addon-icon { font-size: 2rem; flex-shrink: 0; }
.addon-info h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 3px; }
.addon-info p { font-size: 0.82rem; color: var(--mid); margin: 0; }
.addon-price {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--orange);
  white-space: nowrap;
  margin-left: auto;
}

/* Mini FAQ */
.mini-faq { background: var(--white); padding: 72px 32px; }
.mini-faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--dark);
  transition: var(--transition);
}
.faq-q:hover { color: var(--orange); }
.faq-toggle {
  width: 26px; height: 26px; min-width: 26px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 18px;
  font-weight: 300;
  transition: var(--transition);
}
.faq-item.open .faq-toggle { background: var(--orange); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 0.95rem; color: var(--mid); line-height: 1.75; }


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { background: var(--white); padding: 88px 32px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-photo-area {
  position: relative;
}
.about-logo-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-logo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--rainbow);
}
.about-logo-card img { margin: 0 auto; height: 100px; }
.about-tagline {
  font-family: 'Poiret One', sans-serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  margin-top: 24px;
  letter-spacing: 1px;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--mid); font-size: 1rem; margin-bottom: 16px; }

.values-section { background: var(--light); padding: 88px 32px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.value-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  border-top: 5px solid transparent;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.6; margin: 0; }

.diffs-section { background: var(--white); padding: 88px 32px; }
.diffs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.diff-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
}
.diff-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.diff-card h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 6px; }
.diff-card p { font-size: 0.88rem; color: var(--mid); margin: 0; line-height: 1.65; }


/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-full { background: var(--white); padding: 88px 32px; }
.port-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.port-full-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.port-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.port-full-band { height: 6px; }
.port-full-top {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: var(--light);
}
.port-full-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.port-full-body h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 4px; }
.port-full-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.port-full-body p { font-size: 0.9rem; color: var(--mid); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.port-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.port-tag {
  display: inline-block;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--charcoal);
}
.port-demo-note {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 24px 32px;
  background: var(--orange-lt);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(255,107,0,0.2);
}
.port-demo-note p { color: var(--charcoal); font-size: 0.95rem; margin: 0; }
.port-demo-note strong { color: var(--orange); }


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--white); padding: 88px 32px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--mid); margin-bottom: 32px; font-size: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}
.c-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--orange-lt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.response-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  font-size: 0.9rem;
  color: var(--charcoal);
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.form-rainbow { height: 5px; background: var(--rainbow); }
.form-inner { padding: 40px; }
.form-inner h3 { margin-bottom: 28px; font-size: 1.3rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
  background: var(--light);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; text-align: center; display: block; padding: 16px; margin-top: 8px; }
.form-note { font-size: 0.78rem; color: var(--mid); text-align: center; margin-top: 12px; }


/* About page photo — replaces logo card */
.about-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-photo-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--rainbow);
  z-index: 1;
}
.about-photo {
  width: 100%;
  height: auto;
  display: block;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

/* Portfolio page — supplemental photo section */
.port-spotlight {
  background: var(--dark);
  padding: 80px 32px;
}
.port-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.port-spotlight-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.port-spotlight-img img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 460px;
  object-fit: cover;
}
.port-spotlight-text .eyebrow { color: rgba(255,107,0,0.85); }
.port-spotlight-text h2 { color: var(--white); margin-bottom: 20px; }
.port-spotlight-text p { color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 16px; }
.port-spotlight-text .btn-group { margin-top: 32px; }

/* Demo logos inside portfolio cards */
.port-demo-logo {
  max-height: 65px;
  max-width: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.port-full-logo {
  max-height: 90px;
  max-width: 65%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-brand-block { grid-column: 1 / -1; }
  .port-spotlight-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .browser-wrap { max-width: 500px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .port-full-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .diffs-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .hero-brand-block img { max-width: 320px; }
  .nav-links, .nav-links + .btn { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .form-2col { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
}
