* {
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: #000;
}

/* Minimal nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-menu {
  gap: 40px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #3b82f6;
}

.nav-btn {
  padding: 12px 32px;
  background: #3b82f6;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
}

/* Simplification Section */
.simplification {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 120px 48px;
}

.simplification-container {
  max-width: 1400px;
  margin: 0 auto;
}

.simplification-header {
  text-align: center;
  margin-bottom: 80px;
}

.simplification-header h2 {
  font-size: 64px;
  line-height: 1;
  letter-spacing: -2px;
  color: #0f172a;
}

.simplification-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
}

.complexity-label,
.simple-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.complexity-label {
  color: #64748b;
}

.complexity-items {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.complexity-item {
  padding: 20px;
  border-radius: 12px;
  color: #475569;
  border: 2px solid #e2e8f0;
  animation: floatItem 3s ease-in-out infinite;
}

.complexity-item:nth-child(1) { animation-delay: 0s; }
.complexity-item:nth-child(2) { animation-delay: 0.5s; }
.complexity-item:nth-child(3) { animation-delay: 1s; }
.complexity-item:nth-child(4) { animation-delay: 1.5s; }
.complexity-item:nth-child(5) { animation-delay: 2s; }
.complexity-item:nth-child(6) { animation-delay: 2.5s; }

@keyframes floatItem {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.transform-arrow {
  justify-content: center;
}

.arrow-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.simple-steps {
  flex-direction: column;
  gap: 24px;
}

.simple-step-item {
  padding: 24px;
  border-radius: 16px;
  gap: 20px;
  border: 3px solid #3b82f6;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
  animation: slideInRight 0.6s ease-out forwards;
  opacity: 0;
}

.simple-step-item:nth-child(1) { animation-delay: 0.2s; }
.simple-step-item:nth-child(2) { animation-delay: 0.4s; }
.simple-step-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.simple-step-item:hover {
  transform: translateX(-8px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25);
}

.step-circle {
  width: 56px;
  height: 56px;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.step-info {
  flex: 1;
}

.step-title {
  margin-bottom: 4px;
}

.step-desc {
}

/* Hero with massive text */
.hero {
  min-height: 100vh;
  padding: 120px 48px 80px;
  position: relative;
}

.hero-bg {
  position: absolute;
  width: 50%;
  height: 100%;
  background: transparent;
  z-index: 2;
  padding: 60px 20px;
  overflow: visible;
}

.hero-visual {
  width: 100%;
  padding: 40px;
}

.services-display {
  gap: 80px;
  max-width: 600px;
}

.service-group {
  gap: 18px;
  animation: fadeIn 0.8s ease-out forwards;
}

.service-group:first-child {
  animation-delay: 0.2s;
}

.service-group:last-child {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.group-title {
  font-size: 13px;
  letter-spacing: 2.5px;
  margin-bottom: 8px;
}

.service-name {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.6;
}

.service-name:hover {
  transform: translateX(6px);
}

@keyframes highlight {
  0%, 100% { 
    color: #64748b;
    transform: scale(1);
  }
  10%, 20% { 
    color: #3b82f6;
    transform: scale(1.05);
    font-weight: 600;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-12px) translateX(6px); }
}

@keyframes rotateWheel {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes slideCarousel {
  0% { transform: translateX(0) translateY(-50%); }
  100% { transform: translateX(-50%) translateY(-50%); }
}

@keyframes orbit {
  from { transform: translate(-50%, -50%) rotate(0deg) translateY(-180px) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateY(-180px) rotate(-360deg); }
}

.radial-service {
  background: rgba(255, 255, 255, 0.95);
  padding: 16px 24px;
  border-radius: 50px;
  border: 2px solid #3b82f6;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  white-space: nowrap;
}

.radial-service:hover {
  transform: translate(-50%, -50%) scale(1.2) !important;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
  z-index: 20;
  animation: none;
}

.radial-service-purple {
  border-color: #8b5cf6;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.radial-service-purple:hover {
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

@keyframes bounceHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.service-card:hover > div:first-child {
}

.scroll-container:hover {
  animation-play-state: paused;
}

@keyframes scrollDiagonal {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-400px, -400px); }
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes typewriter {
  to { width: 100%; }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes pulse {
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    transform: translateX(40px);
  }
  50% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-40px);
  }
}

@keyframes scaleIn {
  from {
    transform: translateX(-50%) scale(0);
  }
  to {
    transform: translateX(-50%) scale(1);
  }
}

@keyframes bounce {
  50% { transform: translateY(-15px); }
}

@keyframes slideInStagger {
  from {
    transform: translateX(-20px);
  }
}

@keyframes rotateCube {
  0%, 100% { transform: rotateY(-15deg) rotateX(10deg); }
  50% { transform: rotateY(15deg) rotateX(10deg); }
}

@keyframes rotateCubeReverse {
  0%, 100% { transform: rotateY(15deg) rotateX(10deg); }
  50% { transform: rotateY(-15deg) rotateX(10deg); }
}

.expand-card:hover {
  width: 380px !important;
  background: #f8f9fa !important;
}

.expand-card:hover .card-title {
  opacity: 0 !important;
}

.expand-card:hover > div[style*="perspective: 1200px"] {
}

.expand-card:hover .card-content {
  opacity: 1 !important;
}

@keyframes pulseCenter {
  0% {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
  }
  50% { 
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.5);
  }
}

.company-icon, .ein-icon, .soi-icon, .permit-icon, .mcs-icon {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border: 2px solid #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.building-shape {
  width: 40px;
  height: 48px;
  background: #64748b;
  border-radius: 3px 3px 0 0;
}

.building-shape::before {
  content: '';
  width: 10px;
  height: 10px;
  top: 8px;
  left: 6px;
  box-shadow: 14px 0 0 #fff, 0 14px 0 #fff, 14px 14px 0 #fff;
}

.doc-shape {
  width: 50px;
  height: 58px;
  border-radius: 6px;
}

.badge-shape {
  background: #10b981;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.form-shape {
  border: 2px solid #8b5cf6;
  color: #8b5cf6;
}

.form-shape::before {
  top: 10px;
  right: 6px;
  height: 2px;
  background: #e2e8f0;
  box-shadow: 0 6px 0 #e2e8f0, 0 12px 0 #e2e8f0;
}

.result-card {
  background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
  border: 3px solid #10b981;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.check-shape {
  height: 40px;
}

.check-shape::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 35px;
  border-right: 5px solid #10b981;
  border-bottom: 5px solid #10b981;
  transform: rotate(45deg);
  left: 15px;
  top: 5px;
}

.complex-stack {
  width: 100px;
  height: 120px;
}

.paper-sheet {
  width: 85px;
  height: 110px;
  background: linear-gradient(135deg, #fff, #f8fafc);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: scatter 4s ease-in-out infinite;
}

.paper-sheet::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: linear-gradient(90deg, #cbd5e1, #e2e8f0);
  border-radius: 1px;
  box-shadow: 
    0 10px 0 #e2e8f0,
    0 20px 0 #e2e8f0,
    0 30px 0 #cbd5e1;
}

.sheet-1 {
  z-index: 3;
  animation-delay: 0s;
}

.sheet-2 {
  top: 6px;
  opacity: 0.8;
}

.sheet-3 {
  left: 20px;
  z-index: 1;
  animation-delay: 0.8s;
  opacity: 0.6;
}

@keyframes scatter {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-6px); }
}

.simple-card {
  border: 4px solid #3b82f6;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.checkmark {
  font-size: 52px;
  color: #10b981;
}

.hero-content {
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 700px;
}

.hero-sub {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.7;
  color: #666;
}

.hero-cta {
}

.btn-hero {
  padding: 24px 56px;
  border: 2px solid #000;
  transition: all 0.3s;
  display: inline-block;
}

.btn-black {
  border-color: #3b82f6;
}

.btn-black:hover {
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0 #000;
}

.btn-white {
}

.btn-white:hover {
}

/* Ticker */
.ticker {
  padding: 24px 0;
  overflow: hidden;
  border-top: 2px solid #3b82f6;
  border-bottom: 2px solid #3b82f6;
}

.ticker-content {
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.ticker-item {
}

.ticker-item::before {
  content: '●';
  color: #2563eb;
}

@keyframes scroll {
}

/* Services - Bold grid */
.services {
}

.services-header {
  margin: 0 auto 80px;
}

.services-header h2 {
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -3px;
}

.services-grid {
  gap: 2px;
  background: #000;
}

.service {
  padding: 60px;
}

.service:hover {
  background: #2563eb;
}

.service-number {
  font-size: 120px;
  opacity: 0.1;
  top: 20px;
  right: 40px;
}

.service h3 {
  margin-bottom: 24px;
}

.service-price {
}

.service p {
}

.service:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.service-link {
  font-size: 16px;
  color: inherit;
  display: inline-flex;
  gap: 12px;
}

.service-link::after {
  content: '→';
  transition: transform 0.3s;
}

.service:hover .service-link::after {
  transform: translateX(8px);
}

/* Stats - Big numbers */
.stats {
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat {
}

.stat-value {
  font-size: 96px;
  margin-bottom: 16px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
}

/* Process - Horizontal scroll */
.process {
  padding: 120px 0;
}

.process-header {
  padding: 0 48px;
}

.process-header h2 {
}

.process-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.process-scroll::-webkit-scrollbar {
  display: none;
}

.process-step {
  min-width: 400px;
  background: #f8f9fa;
  scroll-snap-align: start;
}

.step-num {
  font-size: 200px;
  opacity: 0.05;
  top: -40px;
  right: 20px;
}

.process-step h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.process-step p {
}

/* CTA - Full width impact */
.cta {
  padding: 160px 48px;
}

.cta::before {
  content: 'FILE NOW';
  font-size: 300px;
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-content {
  max-width: 900px;
}

.cta h2 {
}

.cta p {
  margin-bottom: 56px;
  opacity: 0.9;
}

.cta-btn {
  padding: 32px 80px;
}

.cta-btn:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #fefefe 0%, #f0f9ff 50%, #faf5ff 100%);
  padding: 100px 48px 50px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899) 1;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05), transparent 50%);
  pointer-events: none;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-bottom: 60px;
}

.footer-brand {
  font-size: 38px;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-text {
  line-height: 1.8;
}

.footer-links h4 {
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  margin-bottom: 14px;
}

.footer-links a:hover {
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 50px;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 60px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
