/* ============================================
   JERRY SCHRADER CONSULTING — Main Stylesheet
   ============================================ */

:root {
  --bg: #07070f;
  --bg2: #0d0d1a;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-bright: rgba(160,100,255,0.25);
  --purple: #8b46ff;
  --purple-light: #a855f7;
  --purple-dim: #6d28d9;
  --violet: #7c3aed;
  --glow: rgba(139,70,255,0.35);
  --glow-soft: rgba(139,70,255,0.12);
  --text: #f0eefa;
  --text-muted: rgba(200,190,230,0.55);
  --text-sub: rgba(200,190,230,0.35);
  --grad: linear-gradient(135deg, #8b46ff, #c026d3);
  --grad-text: linear-gradient(120deg, #c084fc, #f0abfc, #a855f7);
  --font-head: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 18px;
  --radius-sm: 10px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

/* ── ORBS ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(109,40,217,0.18), transparent 70%); top: -200px; left: -150px; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(168,85,247,0.12), transparent 70%); top: 30%; right: -150px; animation-delay: -5s; }
.orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(192,38,211,0.1), transparent 70%); bottom: 15%; left: 20%; animation-delay: -9s; }

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
section { position: relative; z-index: 1; }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title .accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 17px; color: var(--text-muted); font-weight: 300;
  max-width: 520px; line-height: 1.7;
}
.glow-divider {
  width: 80px; height: 3px;
  background: var(--grad);
  border-radius: 3px;
  margin: 20px 0;
  box-shadow: 0 0 12px var(--glow);
}

/* ── GLASS CARD ── */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.glass-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 30px var(--glow-soft);
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--grad);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px; font-weight: 600;
  box-shadow: 0 0 30px var(--glow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; border: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--glow); color: #fff; }
.btn-secondary {
  color: var(--text-muted);
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--text); }
.btn-secondary svg { transition: transform 0.2s; }
.btn-secondary:hover svg { transform: translateX(4px); }
.btn-outline {
  color: var(--text-muted);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px; font-weight: 600;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--border-bright); color: var(--text); }

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes barGrow {
  from { width: 0 !important; }
}
@keyframes floatA {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-14px); }
}
@keyframes floatB {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(12px); }
}
@keyframes floatC {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7,7,15,0.75);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(7,7,15,0.95); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 40px; height: 40px;
  background: var(--grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800; font-size: 16px; color: #fff;
  box-shadow: 0 0 20px var(--glow);
  flex-shrink: 0;
}
.nav-logo-text { font-family: var(--font-head); font-weight: 700; font-size: 17px; letter-spacing: -0.3px; }
.nav-logo-text span { color: var(--purple-light); }

.main-nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
.main-nav ul a { color: var(--text-muted); font-size: 14px; font-weight: 500; letter-spacing: 0.2px; transition: color 0.2s; }
.main-nav ul a:hover { color: var(--text); }
.main-nav .nav-cta {
  background: var(--grad); color: #fff !important;
  padding: 9px 22px; border-radius: 50px;
  font-size: 14px !important; font-weight: 600 !important;
  box-shadow: 0 0 20px var(--glow);
  transition: opacity 0.2s, transform 0.2s !important;
}
.main-nav .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 4px; }

/* Mobile nav */
@media (max-width: 960px) {
  .main-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: rgba(7,7,15,0.98); padding: 20px 32px 32px; border-bottom: 1px solid var(--border); backdrop-filter: blur(20px); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-toggle { display: block; }
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,70,255,0.12);
  border: 1px solid rgba(139,70,255,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--purple-light);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--purple-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-sub {
  font-size: 18px; font-weight: 300;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px;
  animation: fadeUp 0.8s 0.3s ease both;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 520px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hw-main {
  position: absolute; top: 0; right: 0;
  width: 310px; padding: 24px;
  animation: floatA 6s ease-in-out infinite alternate;
}
.hw-main-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hw-dots { display: flex; gap: 6px; }
.hw-dot { width: 10px; height: 10px; border-radius: 50%; }
.hw-dot:nth-child(1) { background: #ff5f57; }
.hw-dot:nth-child(2) { background: #ffbd2e; }
.hw-dot:nth-child(3) { background: #28ca41; }
.hw-label { font-size: 11px; color: var(--text-sub); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.hw-stat-row { display: flex; gap: 10px; margin-bottom: 16px; }
.hw-stat-box {
  flex: 1;
  background: rgba(139,70,255,0.08);
  border: 1px solid rgba(139,70,255,0.15);
  border-radius: 10px; padding: 12px;
}
.hw-stat-val { font-family: var(--font-head); font-size: 22px; font-weight: 700; }
.hw-stat-lbl { font-size: 11px; color: var(--text-sub); margin-top: 2px; }
.hw-bar-row { margin-bottom: 10px; }
.hw-bar-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-sub); margin-bottom: 5px; }
.hw-bar-track { height: 5px; background: rgba(255,255,255,0.07); border-radius: 5px; overflow: hidden; }
.hw-bar-fill { height: 100%; border-radius: 5px; background: var(--grad); animation: barGrow 2s 1s ease both; transform-origin: left; }

.hw-ventures {
  position: absolute; top: 200px; left: -20px;
  width: 200px; padding: 18px;
  animation: floatB 7s ease-in-out infinite alternate;
}
.hw-ventures-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-sub); margin-bottom: 14px; }
.hw-venture-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 12px; color: var(--text-muted);
}
.hw-venture-item:last-child { border-bottom: none; }
.hw-vc-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }

.hw-profile {
  position: absolute; bottom: 30px; right: 20px;
  width: 260px; padding: 20px;
  animation: floatC 8s ease-in-out infinite alternate;
}
.hw-profile-inner { display: flex; align-items: center; gap: 14px; }
.hw-avatar { width: 52px; height: 52px; border-radius: 12px; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(139,70,255,0.35); }
.hw-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hw-profile-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; }
.hw-profile-role { font-size: 11px; color: var(--text-sub); margin-top: 2px; }
.hw-profile-badges { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.hw-badge {
  font-size: 10px; font-weight: 600;
  padding: 4px 9px; border-radius: 50px;
  background: rgba(139,70,255,0.15);
  border: 1px solid rgba(139,70,255,0.25);
  color: var(--purple-light);
}

/* ═══════════════════════════════
   STATS BAR
═══════════════════════════════ */
.stats-bar { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.stat-item {
  text-align: center; padding: 30px 20px;
  border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.stat-item:hover { border-color: var(--border-bright); transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-head); font-size: 48px; font-weight: 800; line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--text-sub); font-weight: 500; }

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
.about { padding: 120px 0; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-photo-wrap { position: relative; border-radius: var(--radius); overflow: visible; }
.about-photo-bg {
  position: absolute; inset: -30px;
  background: radial-gradient(ellipse at center, rgba(139,70,255,0.2), transparent 70%);
  border-radius: 50%; filter: blur(40px);
}
.about-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-bright);
  aspect-ratio: 3/4;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about-photo-placeholder {
  width: 100%; height: 100%; min-height: 400px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(139,70,255,0.05);
  color: var(--text-sub); font-size: 14px; text-align: center; gap: 12px;
}
.about-photo-placeholder svg { opacity: 0.3; }
.about-photo-badge {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--bg2);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  backdrop-filter: blur(20px);
  display: flex; align-items: center; gap: 12px;
}
.apb-icon {
  width: 36px; height: 36px;
  background: var(--grad); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.apb-val { font-family: var(--font-head); font-size: 18px; font-weight: 800; }
.apb-lbl { font-size: 11px; color: var(--text-sub); }
.about-content p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.about-content p strong { color: var(--text); font-weight: 600; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.about-tag {
  font-size: 13px; font-weight: 500;
  padding: 7px 15px; border-radius: 50px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.about-tag:hover { border-color: var(--border-bright); color: var(--text); }

/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
.services { padding: 120px 0; }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card {
  padding: 36px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,70,255,0.5), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: var(--border-bright); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(135deg, rgba(109,40,217,0.15), rgba(124,58,237,0.08));
  border-color: rgba(139,70,255,0.3);
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.sc-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(139,70,255,0.12); border: 1px solid rgba(139,70,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 22px;
}
.sc-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.sc-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; font-weight: 300; margin-bottom: 24px; }
.sc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sc-list li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.sc-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--purple-light); flex-shrink: 0; }

/* ═══════════════════════════════
   PORTFOLIO
═══════════════════════════════ */
.portfolio { padding: 120px 0; }
.portfolio-header { margin-bottom: 64px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-card {
  padding: 32px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.portfolio-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to top, rgba(139,70,255,0.06), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-card:hover { border-color: var(--border-bright); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.portfolio-card:hover::after { opacity: 1; }
.pc-logo {
  width: 56px; height: 56px; border-radius: 14px; overflow: hidden;
  margin-bottom: 20px;
  background: rgba(139,70,255,0.08); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.pc-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }
.pc-tag {
  font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 50px;
  background: rgba(139,70,255,0.12); border: 1px solid rgba(139,70,255,0.2);
  color: var(--purple-light); display: inline-block;
}
.portfolio-card.coming-soon {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; border-style: dashed; border-color: rgba(255,255,255,0.1); min-height: 200px;
}
.portfolio-card.coming-soon .plus-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--text-sub); margin-bottom: 14px;
}
.portfolio-card.coming-soon p { font-size: 14px; color: var(--text-sub); }

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testimonials { padding: 120px 0; overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-sub { margin: 0 auto; }
.testi-track-wrap { overflow: hidden; position: relative; }
.testi-track-wrap::before,
.testi-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.testi-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.testi-track-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.testi-track {
  display: flex; gap: 20px; width: max-content;
  animation: scrollTrack 40s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes scrollTrack {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testi-card {
  width: 340px; flex-shrink: 0;
  padding: 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
}
.testi-stars { color: #f59e0b; font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 20px; font-weight: 300; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(139,70,255,0.15); border: 1px solid rgba(139,70,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--purple-light);
}
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 11px; color: var(--text-sub); }

/* ═══════════════════════════════
   CTA SECTION
═══════════════════════════════ */
.cta-section { padding: 140px 0; text-align: center; position: relative; overflow: hidden; }
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(109,40,217,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .section-title { font-size: clamp(36px, 5vw, 64px); max-width: 700px; margin: 0 auto 24px; }
.cta-section .section-sub { margin: 0 auto 48px; text-align: center; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  background: rgba(0,0,0,0.3);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-sub); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 13px; color: var(--text-sub); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-sub);
  flex-wrap: wrap; gap: 16px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-sub); font-size: 14px; font-style: normal;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--border-bright); color: var(--text); }

/* ── INNER PAGES ── */
.page-hero { padding: 160px 0 80px; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -2px; line-height: 1.05; }
.entry-content { padding: 60px 0 120px; max-width: 780px; }
.entry-content h2 { font-family: var(--font-head); font-size: 28px; font-weight: 700; margin: 40px 0 16px; }
.entry-content p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.entry-content a { color: var(--purple-light); }
.entry-content ul, .entry-content ol { color: var(--text-muted); padding-left: 24px; margin-bottom: 20px; }
.entry-content li { margin-bottom: 8px; line-height: 1.7; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about .container { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 380px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stat-num { font-size: 36px; }
  .about-photo-badge { left: 0; bottom: -20px; }
}
