/* ═══════════════════════════════════════
   PRISM — Modern Tech for Local Business
   Light, rounded, glassmorphic design
   ═══════════════════════════════════════ */

:root {
  --bg: #f0f4f8;
  --card: #ffffff;
  --muted: #64748b;
  --accent: #4f46e5;
  --accent-2: #06b6d4;
  --accent-3: #8b5cf6;
  --text: #0f172a;
  --text-light: #334155;
  --radius: 20px;
  --radius-sm: 12px;
  --glass: rgba(255,255,255,0.55);
  --glass-border: rgba(255,255,255,0.35);
  --shadow-sm: 0 2px 8px rgba(2,6,23,0.04);
  --shadow-md: 0 8px 32px rgba(2,6,23,0.06);
  --shadow-lg: 0 20px 60px rgba(2,6,23,0.10);
  --gradient: linear-gradient(135deg, var(--accent), var(--accent-2));
  --max-w: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── Background Orbs ─── */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 20s ease-in-out infinite alternate;
}
.orb-1 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -10%; left: -8%;
  animation-duration: 22s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: var(--accent-2);
  top: 40%; right: -10%;
  animation-duration: 18s;
  animation-delay: -5s;
}
.orb-3 {
  width: 350px; height: 350px;
  background: var(--accent-3);
  bottom: -5%; left: 30%;
  animation-duration: 25s;
  animation-delay: -10s;
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ─── Glass Utility ─── */
.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
}

/* ─── Header ─── */
.site-header {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240,244,248,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,23,42,0.04);
}
.brand {
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand-icon {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 24px;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* ─── Buttons ─── */
.btn {
  padding: 11px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 6px 24px rgba(79,70,229,0.25);
}
.btn-primary:hover { box-shadow: 0 10px 32px rgba(79,70,229,0.35); }
.btn-ghost {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.8); }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* ─── Tag ─── */
.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(79,70,229,0.08);
  color: var(--accent);
  margin-bottom: 12px;
}

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 40px;
  padding: 80px 32px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.hero-ctas {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-3d {
  width: 100%;
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(79,70,229,0.08) 0%, rgba(6,182,212,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}
#heroCanvas { width: 100%; height: 100%; display: block; }

/* ─── Services ─── */
.services {
  padding: 80px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.services-grid {
  grid-template-columns: repeat(3, 1fr);
}
.card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

/* ─── Cards ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card {
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(79,70,229,0.08);
  color: var(--accent);
  margin-bottom: 12px;
}
.card-stats {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,0.06);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 12px; color: var(--muted); }

/* ─── Approach / Timeline ─── */
.approach {
  padding: 80px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.timeline {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(79, 70, 229, 0.18);
  border-radius: 1px;
}
.timeline-item {
  position: relative;
  padding-left: 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(79, 70, 229, 0.1);
  z-index: 1;
}
.timeline-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.timeline-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.timeline-body p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

/* ─── Portfolio ─── */
.portfolio {
  padding: 80px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ─── About ─── */
.about {
  padding: 80px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-grid,
.project-detail {
  display: grid;
  gap: 48px;
  align-items: center;
}
.about-grid {
  grid-template-columns: 1fr 360px;
  justify-items: center;
}
.project-detail {
  grid-template-columns: 1.1fr 0.9fr;
}
.about-text,
.project-info {
  text-align: center;
}
.about-text {
  max-width: 720px;
  margin: 0 auto;
}
.project-info .feature-list,
.project-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.feature-list li:last-child {
  border-bottom: none;
}
.about-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.2;
}
.about-text p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 auto 12px;
  text-align: center;
  max-width: 640px;
}
.about-card {
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-stat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

/* Contact styles */
.about-stat-row:last-child { border-bottom: none; }
.about-stat-num {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-stat-label {
  font-size: 15px;
  color: var(--muted);
}

/* ─── CTA Section ─── */
.cta-section {
  padding: 40px 32px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-box {
  text-align: center;
  padding: 56px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.cta-box h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
}
.cta-box p {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 16px;
}

/* ─── Footer ─── */
.site-footer {
  padding: 40px 32px;
  border-top: 1px solid rgba(15,23,42,0.06);
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

/* ─── Modal ─── */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}
.modal[aria-hidden="false"] {
  display: flex;
  animation: fadeIn 0.25s ease;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,0.4);
  backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative;
  border-radius: var(--radius);
  padding: 32px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15,23,42,0.06);
  border: 0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: var(--muted);
}
.modal-close:hover { background: rgba(15,23,42,0.12); }
.modal-header h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
}
.modal-subtitle {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 20px;
}
.modal-panel label {
  display: block;
  margin: 12px 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
.modal-panel input,
.modal-panel textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15,23,42,0.08);
  margin-top: 6px;
  font-family: inherit;
  font-size: 14px;
  background: rgba(255,255,255,0.6);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.modal-panel input:focus,
.modal-panel textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.12);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.contact-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.contact-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79,70,229,0.15);
  border-radius: 12px;
  flex-shrink: 0;
}
.contact-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}
.muted {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin-top: 12px;
}

/* ─── Animations ─── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal — only hide when JS is active */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    gap: 24px;
  }
  .hero-content h1 { font-size: 32px; }
  .hero-3d { height: 300px; }
  .services-grid,
  .portfolio-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .section-header h2 { font-size: 26px; }
  .contact-card { padding: 16px 20px; }
  .contact-value { font-size: 16px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 28px; }
  .site-header { padding: 0 16px; }
  .hero, .services, .approach, .portfolio, .about, .cta-section { padding-left: 16px; padding-right: 16px; }
}

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */

.about-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-story {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.about-story .about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
  text-align: center;
}

.about-projects {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.about-values {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

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

.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero h1 { font-size: 36px; }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 28px; }
}

/* ═══════════════════════════════════════
   PROJECTS PAGE
   ═══════════════════════════════════════ */

.projects-tabs-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 80px;
  position: relative;
  z-index: 1;
}

.projects-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border: 2px solid var(--glass-border);
  border-radius: 100px;
  background: var(--glass);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.tab-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.tab-btn.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(79,70,229,0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.project-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.project-showcase {
  position: sticky;
  top: 100px;
  width: 100%;
  max-width: 100%;
}

/* Browser Mockup */
.browser-mockup {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1a1a2e;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #2d2d44;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4a4a6a;
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  background: #1a1a2e;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  color: #8888aa;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.browser-body {
  background: #f8f9fa;
  min-height: 380px;
}

/* Mockup Screens */
.mockup-screen {
  min-height: 380px;
  padding: 0;
  position: relative;
}

.mockup-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.mockup-nav.dark {
  background: #1a1a2e;
  border-bottom: 1px solid #2d2d44;
}

.mockup-logo {
  font-weight: 700;
  font-size: 16px;
  color: #1a1a2e;
}

.mockup-nav.dark .mockup-logo {
  color: #fff;
}

.mockup-nav-links {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #64748b;
}

.mockup-nav.dark .mockup-nav-links {
  color: #8888aa;
}

.mockup-hero {
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  color: #fff;
}

.mockup-hero.dark-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.mockup-hero h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.mockup-hero p {
  font-size: 14px;
  opacity: 0.85;
  margin: 0 0 20px;
}

.mockup-btn {
  display: inline-block;
  background: #fff;
  color: #4f46e5;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
}

.mockup-search-bar {
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 20px;
  margin: 16px auto;
  max-width: 320px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-align: left;
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 24px;
  background: #fff;
}

.mockup-card {
  text-align: center;
  padding: 16px 8px;
  background: #f8f9fa;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
}

.mockup-card-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

.mockup-ride-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.mockup-ride {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
}

.mockup-quote-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.mockup-quote {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: #334155;
}

.mockup-price {
  font-size: 20px;
  font-weight: 700;
  color: #4f46e5;
  margin-top: 4px;
}

/* Project Info */
.project-info {
  padding: 8px 0;
}

.project-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 8px 0 16px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--text);
}

.project-info p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 8px;
  text-align: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 520px;
}

.feature-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  width: 100%;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.project-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

.project-stat {
  display: flex;
  flex-direction: column;
}

.project-stat-num {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

@media (max-width: 900px) {
  .project-detail {
    grid-template-columns: 1fr;
  }
  .project-showcase {
    position: static;
  }
  .mockup-quote-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .projects-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .tab-btn {
    text-align: center;
  }
  .mockup-cards {
    grid-template-columns: 1fr;
  }
  .mockup-nav-links {
    display: none;
  }
}

/* ─── Browser Screenshot Slideshow (for Gina's) ─── */
.browser-slideshow {
  position: relative;
}

.browser-screenshots {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.browser-screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.browser-screenshot.active {
  opacity: 1;
}

/* ─── Slide Arrows ─── */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #0f172a;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  line-height: 1;
  padding: 0;
}

.slide-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(-50%) scale(1.08);
}

.slide-prev {
  left: 12px;
}

.slide-next {
  right: 12px;
}

/* Gina's browser arrows */
.browser-slideshow .slide-prev {
  left: 12px;
  top: calc(50% + 16px);
}

.browser-slideshow .slide-next {
  right: 12px;
  top: calc(50% + 16px);
}

/* ─── Phone Mockup Wrapper (for Ridery) ─── */
.phone-mockup-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.phone-mockup-wrapper .slide-prev {
  position: relative;
  top: auto;
  transform: none;
  flex-shrink: 0;
}

.phone-mockup-wrapper .slide-next {
  position: relative;
  top: auto;
  transform: none;
  flex-shrink: 0;
}

.phone-mockup-wrapper .slide-arrow:hover {
  transform: scale(1.08);
}

/* ─── Phone Mockup (for Ridery) ─── */
.phone-mockup {
  width: 280px;
  margin: 0 auto;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 2px #2d2d44, 0 0 0 6px #1a1a2e;
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #2d2d44;
  border-radius: 3px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.phone-screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.phone-screenshot.active {
  opacity: 1;
}

.phone-dot {
  display: none;
}
