
/* ── TAILWIND-LIKE RESET + BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #020617;
  color: #fff;
  overflow-x: hidden;
  font-synthesis: none;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea { font-family: inherit; }
::selection { background: #f97316; color: #fff; }

/* ── SCROLL REVEAL ── */
.sr { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
.sr.sr-left { transform: translateX(-40px); }
.sr.sr-right { transform: translateX(40px); }
.sr.sr-scale { transform: scale(0.94); }
.sr.visible { opacity: 1; transform: none !important; }
.sr.d1 { transition-delay: 0.1s; }
.sr.d2 { transition-delay: 0.2s; }
.sr.d3 { transition-delay: 0.3s; }
.sr.d4 { transition-delay: 0.4s; }
.sr.d5 { transition-delay: 0.5s; }
.sr.d6 { transition-delay: 0.6s; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s;
  border-bottom: 1px solid transparent;
  padding: 16px 0;
}
#navbar.scrolled {
  background: rgba(2,6,23,0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.05);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; cursor: pointer; z-index: 50; position: relative;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff; letter-spacing: -1px;
}
.nav-logo-text {
  font-size: 22px; font-weight: 800;
  background: linear-gradient(to right, #fff, #9ca3af);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -0.5px;
}
.nav-logo-text span { color: #f97316; -webkit-text-fill-color: #f97316; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-link {
  color: #d1d5db; font-size: 14px; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #f97316;
  transition: width 0.3s;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  background: #fff; color: #020617;
  padding: 10px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.nav-cta:hover {
  background: #f97316; color: #fff;
  box-shadow: 0 0 30px rgba(249,115,22,0.4);
}
.nav-cta svg { transition: transform 0.3s; }
.nav-cta:hover svg { transform: translateX(3px); }

/* ── HERO (FOUNDER SECTION) ── */
#founder {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 80px 0;
  position: relative; overflow: hidden;
  background: #020617;
}
.hero-bg-1 {
  position: absolute; top: 0; right: 0;
  width: 75%; height: 75%;
  background: rgba(249,115,22,0.05);
  border-radius: 50%; filter: blur(150px);
  transform: translate(33%, -25%);
  pointer-events: none;
}
.hero-bg-2 {
  position: absolute; bottom: 0; left: 0;
  width: 75%; height: 75%;
  background: rgba(30,58,138,0.1);
  border-radius: 50%; filter: blur(150px);
  transform: translate(-33%, 25%);
  pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 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.15'/%3E%3C/svg%3E");
  opacity: 0.2; mix-blend-mode: soft-light; pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 96px;
  position: relative; z-index: 10;
  width: 100%;
}
.hero-content { flex: 1; }
.hero-label {
  display: inline-block; margin-bottom: 24px;
  position: relative; cursor: default;
}
.hero-label-text {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(to right, #fb923c, #fde68a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800; line-height: 1.1; letter-spacing: -1.5px;
  color: #fff; margin-bottom: 40px;
}
.hero-body { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.hero-p { font-size: 18px; font-weight: 300; line-height: 1.75; color: #d1d5db; }
.hero-p.drop-cap::first-letter {
  font-size: 56px; font-style: italic; color: #f97316;
  float: left; margin-right: 10px; margin-top: -10px; font-weight: 700; line-height: 1;
}
.hero-quote {
  border-left: 2px solid #f97316;
  padding-left: 16px;
  font-weight: 500; color: #fff;
}
.hero-footer {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.hero-tagline { font-size: 22px; font-style: italic; color: #9ca3af; font-family: Georgia, serif; opacity: 0.8; }
.hero-brand { text-align: right; }
.hero-brand-name { font-size: 30px; font-style: italic; color: #f97316; font-weight: 700; font-family: Georgia, serif; opacity: 0.9; transform: rotate(-2deg); display: inline-block; }
.hero-brand-role { font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: 4px; font-weight: 600; margin-top: 4px; }

/* Hero image */
.hero-img-col {
  flex-shrink: 0; width: 45%; max-width: 440px;
  display: flex; justify-content: flex-end;
}
.hero-img-wrap {
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: 20px; overflow: hidden;
}
.hero-img-glow {
  position: absolute; inset: -4px;
  background: linear-gradient(135deg, #f97316, #9333ea);
  border-radius: 24px; opacity: 0.2; filter: blur(20px);
  transition: opacity 0.7s;
}
.hero-img-wrap:hover .hero-img-glow { opacity: 0.4; }
.hero-img-inner {
  position: relative; width: 100%; height: 100%;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  background: #0f172a;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,0.9) 0%, transparent 100%);
  z-index: 1; opacity: 0.8; mix-blend-mode: multiply;
}
.hero-img-overlay2 {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.2), transparent);
  z-index: 1; opacity: 0; mix-blend-mode: overlay;
  transition: opacity 0.7s;
}
.hero-img-wrap:hover .hero-img-overlay2 { opacity: 1; }
.hero-img-photo {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(0.9) contrast(1.25);
  transform: scale(1.05); transition: all 0.7s ease;
}
.hero-img-wrap:hover .hero-img-photo { filter: grayscale(0) brightness(1); transform: scale(1); }
.hero-img-corner-tr {
  position: absolute; top: 32px; right: 32px; z-index: 2;
  width: 96px; height: 96px;
  border-top: 1px solid rgba(249,115,22,0.6); border-right: 1px solid rgba(249,115,22,0.6);
  border-radius: 0 24px 0 0; opacity: 0.6;
}
.hero-img-corner-bl {
  position: absolute; bottom: 32px; left: 32px; z-index: 2;
  width: 96px; height: 96px;
  border-bottom: 1px solid rgba(249,115,22,0.6); border-left: 1px solid rgba(249,115,22,0.6);
  border-radius: 0 0 0 24px; opacity: 0.6;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  cursor: pointer; z-index: 20;
}
.scroll-label { font-size: 10px; color: #6b7280; text-transform: uppercase; letter-spacing: 4px; transition: color 0.3s; }
.scroll-indicator:hover .scroll-label { color: #f97316; }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, #4b5563, transparent);
  position: relative; overflow: hidden;
}
.scroll-dot {
  position: absolute; top: 0; left: 0; width: 100%; height: 33%;
  background: #f97316;
  box-shadow: 0 0 10px rgba(249,115,22,0.8);
  animation: scrollDot 2s cubic-bezier(0.76,0,0.24,1) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(300%); opacity: 0; }
}

/* ── ABOUT ── */
#about {
  padding: 128px 0;
  background: #020617;
  position: relative; overflow: hidden;
}
.about-noise { position: absolute; inset: 0; opacity: 0.1; mix-blend-mode: soft-light; pointer-events: none; }
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; }
.section-label-tag { font-size: 11px; font-weight: 700; font-family: monospace; text-transform: uppercase; letter-spacing: 4px; color: #f97316; margin-bottom: 16px; display: block; }
.about-headline {
  font-size: clamp(32px, 4.5vw, 56px); font-weight: 800; line-height: 1.2;
  color: #fff; margin-bottom: 32px; max-width: 700px;
}
.about-headline .grad { background: linear-gradient(to right, #fb923c, #ea580c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-desc {
  font-size: 18px; font-weight: 300; color: #9ca3af; line-height: 1.75;
  max-width: 640px;
  border-left: 2px solid rgba(249,115,22,0.3); padding-left: 32px;
}
.about-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 96px; }
.about-card {
  padding: 40px; border-radius: 28px;
  background: #0f172a; border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.5s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.about-card-blob {
  position: absolute; top: 0; right: 0;
  width: 128px; height: 128px;
  border-radius: 0 0 0 100%;
  margin: -32px -32px 0 0;
  transition: transform 0.5s;
  pointer-events: none;
}
.about-card:hover .about-card-blob { transform: scale(1.1); }
.about-card.orange { --accent: #f97316; }
.about-card.purple { --accent: #a855f7; }
.about-card.blue { --accent: #3b82f6; }
.about-card.orange .about-card-blob { background: rgba(249,115,22,0.05); }
.about-card.purple .about-card-blob { background: rgba(168,85,247,0.05); }
.about-card.blue .about-card-blob { background: rgba(59,130,246,0.05); }
.about-card.orange:hover { border-color: rgba(249,115,22,0.3); }
.about-card.purple:hover { border-color: rgba(168,85,247,0.3); }
.about-card.blue:hover { border-color: rgba(59,130,246,0.3); }
.about-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: #1e293b; border: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px; flex-shrink: 0; transition: all 0.4s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.about-card.orange .about-card-icon { color: #f97316; }
.about-card.purple .about-card-icon { color: #a855f7; }
.about-card.blue .about-card-icon { color: #3b82f6; }
.about-card:hover .about-card-icon { background: var(--accent); color: #fff; transform: scale(1.1); }
.about-card h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.about-card p { font-size: 15px; color: #9ca3af; line-height: 1.7; font-weight: 300; }
.about-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-card li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: #9ca3af; font-weight: 300; transition: color 0.3s; }
.about-card:hover li { color: #d1d5db; }
.about-card li svg { color: #3b82f6; flex-shrink: 0; margin-top: 2px; }

/* Workgroup banner */
.workgroup-banner {
  position: relative; border-radius: 32px; padding: 80px;
  overflow: hidden;
}
.workgroup-bg { position: absolute; inset: 0; background: linear-gradient(to right, #0f172a, #1e293b); border: 1px solid rgba(255,255,255,0.05); border-radius: 32px; }
.workgroup-noise { position: absolute; inset: 0; opacity: 0.2; mix-blend-mode: soft-light; border-radius: 32px; }
.workgroup-inner { position: relative; z-index: 10; display: flex; gap: 64px; align-items: center; justify-content: space-between; }
.workgroup-content { flex: 1; }
.workgroup-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2);
  color: #f97316; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 4px;
  margin-bottom: 32px;
}
.workgroup-content h3 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; color: #fff; margin-bottom: 32px; letter-spacing: -1px; }
.workgroup-content p { font-size: 18px; color: #9ca3af; font-weight: 300; line-height: 1.75; margin-bottom: 40px; }
.workgroup-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.workgroup-tag {
  padding: 10px 24px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  font-size: 14px; color: #d1d5db; cursor: default;
  transition: all 0.3s;
}
.workgroup-tag:hover { background: rgba(255,255,255,0.1); border-color: rgba(249,115,22,0.3); }
.workgroup-visual {
  flex-shrink: 0; width: 380px; height: 380px;
  position: relative; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
}
.workgroup-ring1 {
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.05); border-radius: 50%;
  animation: spin 10s linear infinite;
}
.workgroup-ring2 {
  position: absolute; width: 60%; height: 60%;
  border: 1px solid rgba(249,115,22,0.2); border-radius: 50%;
  animation: spin 15s linear infinite reverse;
}
.workgroup-glow {
  position: absolute; inset: 0;
  background: rgba(249,115,22,0.05); border-radius: 50%; filter: blur(60px);
  animation: pulse 3s ease-in-out infinite;
}
.workgroup-center {
  background: rgba(30,41,59,0.5); backdrop-filter: blur(8px);
  padding: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  position: relative; z-index: 10;
  color: #f97316;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ── WHY US ── */
#why-us { padding: 128px 0; background: #020617; position: relative; overflow: hidden; }
.why-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 800px; background: rgba(249,115,22,0.05); border-radius: 50%; filter: blur(150px); pointer-events: none; }
.why-header { max-width: 896px; margin: 0 auto 96px; text-align: center; }
.why-header h2 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; margin-bottom: 40px; line-height: 1.1; letter-spacing: -2px; }
.why-quote-wrap { position: relative; display: inline-block; max-width: 768px; padding: 0 24px; }
.why-big-q { font-size: 96px; color: rgba(249,115,22,0.2); position: absolute; top: -48px; left: -16px; font-family: Georgia, serif; font-weight: 700; font-style: italic; line-height: 1; }
.why-big-q2 { font-size: 96px; color: rgba(249,115,22,0.2); position: absolute; bottom: -64px; right: -8px; font-family: Georgia, serif; font-weight: 700; font-style: italic; line-height: 1; }
.why-quote-text { font-size: clamp(16px, 2.5vw, 28px); color: #d1d5db; font-weight: 300; font-style: italic; line-height: 1.6; position: relative; z-index: 1; }
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  position: relative; padding: 40px; border-radius: 28px;
  background: #0f172a; border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden; transition: all 0.5s;
  display: flex; flex-direction: column; justify-content: space-between;
}
.why-card:hover { border-color: rgba(249,115,22,0.3); transform: translateY(-8px); box-shadow: 0 25px 50px rgba(249,115,22,0.05); }
.why-card-num-bg {
  position: absolute; top: 0; right: 0; padding: 32px;
  font-size: 80px; font-weight: 700; color: #fff; opacity: 0.1;
  font-family: monospace; line-height: 1; pointer-events: none;
  transition: opacity 0.3s;
}
.why-card:hover .why-card-num-bg { opacity: 0.2; }
.why-card-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: #f97316; transition: all 0.5s; box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.why-card:hover .why-card-icon-wrap { transform: scale(1.1); background: #f97316; color: #fff; }
.why-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.why-card h3 { font-size: 22px; font-weight: 700; color: #fff; transition: color 0.3s; }
.why-card:hover h3 { color: #fb923c; }
.why-card p { font-size: 15px; color: #9ca3af; font-weight: 300; line-height: 1.7; }
.why-progress-wrap { width: 100%; height: 4px; background: rgba(255,255,255,0.05); border-radius: 999px; margin-top: 32px; overflow: hidden; }
.why-progress { height: 100%; background: #f97316; width: 0; transition: width 0.7s ease-in-out; border-radius: 999px; }
.why-card:hover .why-progress { width: 100%; }

/* ── SERVICES ── */
#services { padding: 128px 0; background: #020617; position: relative; overflow: hidden; }
.services-bg1 { position: absolute; top: 10%; right: 10%; width: 400px; height: 400px; background: rgba(234,88,12,0.1); border-radius: 50%; filter: blur(100px); pointer-events: none; opacity: 0.3; }
.services-bg2 { position: absolute; bottom: 20%; left: 5%; width: 500px; height: 500px; background: rgba(30,58,138,0.1); border-radius: 50%; filter: blur(120px); pointer-events: none; opacity: 0.3; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 96px; gap: 32px; }
.services-header-left { max-width: 640px; }
.services-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px; backdrop-filter: blur(4px);
}
.services-pill-dot { width: 8px; height: 8px; border-radius: 50%; background: #f97316; box-shadow: 0 0 8px rgba(249,115,22,0.8); }
.services-pill-text { font-size: 11px; color: #f97316; font-family: monospace; letter-spacing: 4px; text-transform: uppercase; }
.services-h2 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -1px; }
.services-h2 em { background: linear-gradient(to right, #fb923c, #ea580c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: Georgia, serif; padding-right: 8px; }
.services-header-right { max-width: 320px; font-size: 18px; color: #9ca3af; font-weight: 300; line-height: 1.75; border-left: 1px solid rgba(249,115,22,0.3); padding-left: 24px; }
.services-body { display: flex; gap: 64px; }
.services-nav { flex-shrink: 0; width: 33%; display: flex; flex-direction: column; gap: 4px; position: relative; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 24px; }
.services-nav-indicator {
  position: absolute; left: -1px; width: 2px;
  background: #f97316; border-radius: 999px;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.service-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; border-radius: 12px;
  text-align: left; transition: all 0.3s; width: 100%;
}
.service-btn:hover { background: rgba(255,255,255,0.02); transform: translateX(6px); }
.service-btn.active { background: rgba(255,255,255,0.05); }
.service-btn-num { font-family: monospace; font-size: 13px; transition: color 0.3s; color: #4b5563; }
.service-btn.active .service-btn-num { color: #f97316; font-weight: 700; }
.service-btn-label { font-size: 17px; font-weight: 500; transition: color 0.3s; color: #6b7280; }
.service-btn:hover .service-btn-label { color: #e5e7eb; }
.service-btn.active .service-btn-label { color: #fff; }
.services-panel { flex: 1; }
.service-detail {
  position: relative; width: 100%; min-height: 400px;
  background: rgba(15,23,42,0.3); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 28px; padding: 48px;
  overflow: hidden; backdrop-filter: blur(4px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.service-detail-bg { position: absolute; top: 0; right: 0; width: 256px; height: 256px; background: linear-gradient(135deg, rgba(249,115,22,0.05), transparent); border-radius: 0 0 0 100%; pointer-events: none; }
.service-detail-inner { display: flex; flex-direction: column; height: 100%; position: relative; z-index: 10; }
.service-detail-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.service-detail-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(249,115,22,0.05));
  border: 1px solid rgba(249,115,22,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #fb923c;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
}
.service-detail-num-bg { font-size: 96px; font-family: Georgia, serif; font-weight: 700; color: rgba(255,255,255,0.03); line-height: 1; letter-spacing: -3px; }
.service-detail-body { margin-top: auto; }
.service-detail-body h3 { font-size: clamp(24px, 3vw, 44px); font-weight: 700; color: #fff; margin-bottom: 24px; line-height: 1.2; }
.service-detail-body p { font-size: clamp(14px, 1.5vw, 18px); color: #9ca3af; font-weight: 300; line-height: 1.75; }
.service-detail-link {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-family: monospace; color: #6b7280;
  transition: color 0.3s; cursor: pointer; width: fit-content;
}
.service-detail-link:hover { color: #fb923c; }
.service-detail-link:hover svg { transform: translateX(8px); }
.service-detail-link svg { transition: transform 0.3s; }
/* Transition for panel */
.service-panel-enter { animation: panelIn 0.4s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes panelIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ── CONTACT ── */
#contact { padding: 64px 0 128px; background: #020617; position: relative; overflow: hidden; }
.contact-bg1 { position: absolute; top: 0; right: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, #0f172a, #020617, #020617); opacity: 0.8; pointer-events: none; }
.contact-bg2 { position: absolute; bottom: 0; right: 0; width: 600px; height: 600px; background: rgba(234,88,12,0.1); border-radius: 50%; filter: blur(120px); transform: translate(33%, 33%); pointer-events: none; }
.contact-card {
  background: rgba(15,23,42,0.4); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px; box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  overflow: hidden; display: flex;
  max-width: 1280px; margin: 0 auto;
}
.contact-left {
  width: 42%; padding: 64px; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.contact-left-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(249,115,22,0.05), transparent); pointer-events: none; }
.contact-left h2 { font-size: clamp(28px, 4vw, 56px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 24px; margin-top: 16px; }
.contact-left h2 .grad { background: linear-gradient(to right, #fb923c, #ea580c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.contact-left p { font-size: 17px; color: #9ca3af; font-weight: 300; line-height: 1.75; max-width: 400px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-top: auto; }
.contact-item {
  display: flex; align-items: center; gap: 24px;
  padding: 20px; border-radius: 16px;
  background: rgba(2,6,23,0.5); border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s; text-decoration: none;
}
.contact-item:hover { border-color: rgba(249,115,22,0.3); background: rgba(255,255,255,0.05); }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: #1e293b; display: flex; align-items: center; justify-content: center;
  color: #9ca3af; flex-shrink: 0; transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.contact-item:hover .contact-item-icon { background: #f97316; color: #fff; }
.contact-item-label { font-size: 10px; color: #6b7280; text-transform: uppercase; letter-spacing: 4px; font-weight: 700; margin-bottom: 4px; }
.contact-item-value { font-size: 16px; color: #fff; font-weight: 500; transition: color 0.3s; }
.contact-item:hover .contact-item-value { color: #fb923c; }
.contact-right {
  flex: 1; background: rgba(15,23,42,0.8); padding: 64px;
  border-left: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-right h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-group { display: flex; flex-direction: column; }
.form-label {
  font-size: 11px; font-weight: 700; color: #6b7280;
  text-transform: uppercase; letter-spacing: 4px;
  margin-bottom: 8px; transition: color 0.2s;
}
.form-group:focus-within .form-label { color: #f97316; }
.form-input {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid #374151;
  padding: 12px 0; color: #fff; font-size: 17px;
  outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: #f97316; }
.form-input::placeholder { color: #374151; }
textarea.form-input { height: 96px; resize: none; }
.form-submit {
  width: 100%; background: #fff; color: #020617;
  padding: 20px; border-radius: 12px;
  font-size: 17px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: all 0.3s; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  margin-top: 16px;
}
.form-submit:hover { background: #f97316; color: #fff; box-shadow: 0 20px 40px rgba(249,115,22,0.25); }
.form-submit svg { transition: transform 0.3s; }
.form-submit:hover svg { transform: translateX(4px); }

/* ── FOOTER ── */
footer {
  background: #020617; color: #9ca3af;
  padding: 96px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
  font-weight: 300;
}
.footer-top-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent); }
.footer-glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: rgba(249,115,22,0.05); border-radius: 50%; filter: blur(100px); pointer-events: none; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 80px; }
.footer-brand-text { font-size: 15px; color: #6b7280; line-height: 1.75; max-width: 400px; margin: 20px 0 32px; }
.footer-socials { display: flex; gap: 16px; }
.footer-social {
  width: 40px; height: 40px; border-radius: 50%;
  background: #0f172a; border: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; transition: all 0.3s;
}
.footer-social:hover { background: #f97316; color: #fff; border-color: #f97316; transform: translateY(-4px); }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 32px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-col a { font-size: 14px; color: #6b7280; transition: color 0.2s; display: flex; align-items: center; gap: 8px; width: fit-content; }
.footer-col a:hover { color: #f97316; }
.footer-col a:hover span { transform: translateX(4px); }
.footer-col a .dot { width: 4px; height: 4px; border-radius: 50%; background: #f97316; opacity: 0; transition: opacity 0.2s; flex-shrink: 0; }
.footer-col a:hover .dot { opacity: 1; }
.footer-col a span { transition: transform 0.2s; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 16px; font-size: 14px; }
.footer-contact-item svg { color: #f97316; flex-shrink: 0; margin-top: 1px; }
.footer-contact-main { color: #d1d5db; transition: color 0.2s; }
a.footer-contact-item:hover .footer-contact-main { color: #fb923c; }
.footer-contact-sub { font-size: 12px; color: #4b5563; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #4b5563;
}
.footer-bottom-links { display: flex; gap: 32px; align-items: center; }
.footer-bottom-links a { color: #4b5563; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #f97316; }
.footer-scroll-top {
  width: 40px; height: 40px; border-radius: 50%;
  background: #0f172a; border: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; transition: all 0.3s; cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.footer-scroll-top:hover { background: #f97316; color: #fff; border-color: #f97316; box-shadow: 0 5px 20px rgba(249,115,22,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-img-col { display: none; }
  .hero-inner { gap: 0; }
  .about-cards-row { grid-template-columns: 1fr; }
  .workgroup-visual { display: none; }
  .why-cards { grid-template-columns: 1fr; }
  .services-body { flex-direction: column; }
  .services-nav { width: 100%; border-left: none; padding-left: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; overflow-x: auto; flex-direction: row; flex-wrap: nowrap; }
  .services-nav-indicator { display: none; }
  .service-btn { flex-shrink: 0; }
  .contact-card { flex-direction: column; }
  .contact-left { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .section-container { padding: 0 16px; }
  #founder, #about, #why-us, #services, #contact { padding: 64px 0; }
  .workgroup-banner { padding: 40px 24px; }
  .hero-inner { padding: 0 16px; }
  .about-cards-row { gap: 16px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-header-right { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 24px; }
  .contact-left, .contact-right { padding: 32px 24px; }
}
