/* ============================================
   McBride Digital — Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-deep:      #070c18;
  --bg-base:      #0d1627;
  --bg-card:      #131e35;
  --bg-card-hover:#182444;
  --primary:      #3b82f6;
  --primary-light:#60a5fa;
  --primary-glow: rgba(59,130,246,0.25);
  --accent:       #1d4ed8;
  --text-primary: #f1f5f9;
  --text-secondary:#94a3b8;
  --text-muted:   #64748b;
  --border:       rgba(59,130,246,0.15);
  --border-light: rgba(255,255,255,0.06);
  --nav-height:   72px;
  --max-width:    1200px;
  --radius:       12px;
  --radius-lg:    20px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 100px;
}

.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(7, 12, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-light);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.85; }

.nav-logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  padding: 9px 22px !important;
  background: var(--primary) !important;
  color: white !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  background: #2563eb !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(59,130,246,0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(59,130,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(29,78,216,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-title .accent {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 40%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-quote {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 460px;
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--primary);
  background: rgba(59,130,246,0.06);
  transform: translateY(-2px);
}

/* ============================================
   LIGHTBULB ANIMATION
   ============================================ */
.hero-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 500px;
}

.bulb-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
}

/* Outer glow rings */
.bulb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.15);
  animation: ring-pulse 3s ease-in-out infinite;
}

.bulb-ring:nth-child(1) { width: 340px; height: 340px; animation-delay: 0s; }
.bulb-ring:nth-child(2) { width: 420px; height: 420px; animation-delay: 0.5s; opacity: 0.6; }
.bulb-ring:nth-child(3) { width: 500px; height: 500px; animation-delay: 1s; opacity: 0.3; }

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: var(--base-opacity, 0.5); }
  50% { transform: scale(1.03); opacity: 0.15; }
}

/* Light rays */
.bulb-rays {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rays-rotate 20s linear infinite;
}

.bulb-rays::before,
.bulb-rays::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
  transform-origin: left center;
}

.bulb-rays::before { transform: translateY(-50%) rotate(0deg); }
.bulb-rays::after  { transform: translateY(-50%) rotate(45deg); }

@keyframes rays-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* The SVG bulb itself */
.bulb-svg-wrap {
  position: relative;
  z-index: 2;
  animation: bulb-float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(59,130,246,0.6)) drop-shadow(0 0 80px rgba(59,130,246,0.25));
}

@keyframes bulb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.bulb-glow-core {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(147,197,253,0.9) 0%, rgba(59,130,246,0.5) 40%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  animation: glow-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -60%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -60%) scale(1.15); }
}

/* Data points floating around */
.float-tag {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float-drift 5s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.float-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: dot-blink 1.5s ease-in-out infinite;
}

.float-tag:nth-child(5) { top: 10%; left: -20px; animation-delay: 0s; }
.float-tag:nth-child(6) { bottom: 20%; right: -30px; animation-delay: 1.2s; }
.float-tag:nth-child(7) { top: 55%; left: -40px; animation-delay: 0.6s; }

@keyframes float-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================
   MARQUEE / LOGO STRIP
   ============================================ */
.logos-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  background: rgba(255,255,255,0.01);
}

.logos-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  flex-shrink: 0;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.8);
  transition: opacity 0.3s, filter 0.3s;
}

.marquee-logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

.marquee-logo img {
  max-height: 46px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   SERVICES SECTION (homepage teaser)
   ============================================ */
.services-section {
  padding: 120px 0;
}

.section-header {
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(59,130,246,0.1);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(59,130,246,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s, transform 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(59,130,246,0.2);
  transform: scale(1.05);
}

.service-icon svg { color: var(--primary); }

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s;
}

.service-card:hover .service-link { gap: 10px; }

/* ============================================
   POSTERS SECTION
   ============================================ */
.posters-section {
  padding: 100px 0;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.posters-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59,130,246,0.06), transparent 60%);
  pointer-events: none;
}

.posters-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 56px;
}

.poster-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 2/3;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.poster-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: saturate(0.7) brightness(0.85);
}

.poster-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  z-index: 2;
}

.poster-item:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.05);
}

.poster-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 20px 12px 14px;
  opacity: 0;
  transition: opacity 0.3s;
}

.poster-item:hover .poster-overlay { opacity: 1; }

.poster-overlay span {
  font-size: 11px;
  font-weight: 600;
  color: white;
  display: block;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 120px 0;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(59,130,246,0.07), transparent 55%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 400px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 14px;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: rgba(59,130,246,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--text-primary);
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: rgba(59,130,246,0.05);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 8px;
  font-family: inherit;
}

.form-submit:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.45);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-status {
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  display: none;
}

.form-status.success {
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.2);
  display: block;
}

.form-status.error {
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.2);
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border-light);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
  color: var(--primary);
  border-color: var(--border);
  background: rgba(59,130,246,0.08);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--text-primary); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 40%, rgba(59,130,246,0.1), transparent 55%);
  pointer-events: none;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.page-hero-content h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.07;
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 460px;
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background: var(--bg-card-hover);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.founder-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.founder-card .title {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-story {
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.story-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.stat-card .number {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
}

.stat-card .label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-full {
  padding: 60px 0 120px;
}

.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 64px;
}

.service-full-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
  position: relative;
}

.service-full-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-full-card:hover {
  border-color: var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-full-card:hover::before { opacity: 1; }

.service-full-card:nth-child(even) .service-visual { order: -1; }

.service-full-card h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.service-full-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,0.04);
  border-radius: var(--radius);
  height: 260px;
  position: relative;
  overflow: hidden;
}

/* Service visual animations */
.anim-social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
}

.anim-post {
  background: var(--bg-card-hover);
  border-radius: 8px;
  aspect-ratio: 1;
  animation: post-pop 3s ease-in-out infinite;
  border: 1px solid var(--border-light);
}

.anim-post:nth-child(1) { animation-delay: 0s; }
.anim-post:nth-child(2) { animation-delay: 0.3s; }
.anim-post:nth-child(3) { animation-delay: 0.6s; }
.anim-post:nth-child(4) { animation-delay: 0.9s; }
.anim-post:nth-child(5) { animation-delay: 1.2s; }
.anim-post:nth-child(6) { animation-delay: 1.5s; }

@keyframes post-pop {
  0%, 80%, 100% { transform: scale(1); border-color: var(--border-light); }
  40% { transform: scale(1.06); border-color: rgba(59,130,246,0.5); box-shadow: 0 0 14px rgba(59,130,246,0.25); }
}

.anim-email {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  width: 100%;
}

.anim-envelope {
  width: 80px;
  height: 56px;
  background: var(--bg-card-hover);
  border-radius: 8px;
  border: 2px solid var(--border);
  position: relative;
  animation: envelope-open 4s ease-in-out infinite;
}

.anim-envelope::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(135deg, var(--bg-card) 50%, transparent 50%),
              linear-gradient(-135deg, var(--bg-card) 50%, transparent 50%);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  background-position: left, right;
}

@keyframes envelope-open {
  0%, 60%, 100% { transform: scale(1); }
  30% { transform: scale(1.08); border-color: var(--primary); box-shadow: 0 0 20px var(--primary-glow); }
}

.anim-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 140px;
  padding: 20px;
  align-self: flex-end;
}

.anim-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  animation: bar-grow 3s ease-in-out infinite;
}

.anim-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.anim-bar:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.anim-bar:nth-child(3) { height: 55%; animation-delay: 0.3s; }
.anim-bar:nth-child(4) { height: 90%; animation-delay: 0.45s; }
.anim-bar:nth-child(5) { height: 65%; animation-delay: 0.6s; }

@keyframes bar-grow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; filter: drop-shadow(0 0 6px rgba(59,130,246,0.5)); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-animation { height: 360px; }
  .bulb-scene { width: 220px; height: 220px; }
  .bulb-ring:nth-child(1) { width: 270px; height: 270px; }
  .bulb-ring:nth-child(2) { width: 330px; height: 330px; }
  .bulb-ring:nth-child(3) { width: 390px; height: 390px; }
  .float-tag:nth-child(7) { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .posters-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 1fr; gap: 36px; }
  .service-full-card:nth-child(even) .service-visual { order: unset; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: calc(var(--nav-height) + 40px) 0 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .posters-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .service-full-card { padding: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .float-tag { display: none; }
}

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

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(7,12,24,0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  gap: 4px;
  border-bottom: 1px solid var(--border-light);
}
