@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --black: #050505;
  --black-card: rgba(20, 20, 20, 0.6);
  --black-mid: #0A0A0A;
  --gray-border: rgba(255, 255, 255, 0.08);
  --orange: #F57C00;
  --orange-dim: #D86B00;
  --orange-glow: rgba(245, 124, 0, 0.4);
  --red-orange: linear-gradient(135deg, #FF3D00, #F57C00);
  --white: #FFFFFF;
  --white-dim: rgba(255, 255, 255, 0.65);
  
  --ff-heading: 'Bebas Neue', sans-serif;
  --ff-body: 'DM Sans', sans-serif;
  
  --max-w: 1280px;
  --pad-x: clamp(20px, 5vw, 80px);
  --section-py: clamp(60px, 12vw, 160px);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none; /* Hide default cursor for custom cursor */
}

/* Custom Cursor */
#custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}
#custom-cursor.hovering {
  width: 60px; height: 60px;
  background: rgba(245, 124, 0, 0.3);
  backdrop-filter: blur(2px);
  border: 1px solid var(--orange);
}

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

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

/* Background Gradients */
.bg-mesh {
  position: absolute;
  top: -20%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(245,124,0,0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Typography */
.t-hero {
  font-family: var(--ff-heading);
  font-size: clamp(48px, 12vw, 160px);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.t-hero .word { display: inline-block; }

.t-h1 {
  font-family: var(--ff-heading);
  font-size: clamp(40px, 8vw, 100px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.t-h2 {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.t-h3 {
  font-family: var(--ff-body);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.t-body {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--white-dim);
  font-weight: 400;
}

.text-orange { color: var(--orange); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 2;
}

.section { padding: var(--section-py) 0; position: relative; }

.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(14px, 3vw, 18px) clamp(24px, 5vw, 40px);
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 10px 40px var(--orange-glow);
}

.btn-outline {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid var(--gray-border);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: scale(1.05);
}

/* Navbar */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 32px 0;
  transition: var(--transition);
}
.nav.scrolled {
  padding: 20px 0;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: clamp(40px, 10vw, 72px) !important;
  max-width: 60vw;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  background: rgba(255,255,255,0.03);
  padding: 12px 32px;
  border-radius: 100px;
  border: 1px solid var(--gray-border);
  backdrop-filter: blur(10px);
}
.nav-links a {
  font-weight: 500;
  color: var(--white-dim);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
}
.nav-hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--white);
  transition: 0.3s ease-in-out;
}
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 10vw, 48px);
  color: var(--white);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative;
  padding-top: 80px;
}
#particles-js { position: absolute; inset: 0; z-index: 1; }
.hero .container { text-align: center; max-width: 1100px; }
.hero-sub { margin-bottom: 56px; max-width: 700px; margin-inline: auto; font-size: 22px; }
.hero-actions { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }

/* Marquee */
.marquee-wrap {
  width: 100%; overflow: hidden;
  background: var(--orange);
  padding: 32px 0;
  white-space: nowrap;
  display: flex; align-items: center;
  transform: rotate(-2deg) scale(1.05);
  box-shadow: 0 0 50px rgba(245, 124, 0, 0.2);
  margin: 60px 0;
}
.marquee-inner { display: flex; animation: marquee-scroll 25s linear infinite; }
.marquee-item {
  font-family: var(--ff-heading);
  font-size: 48px;
  color: var(--black);
  text-transform: uppercase;
  padding: 0 48px;
  display: flex; align-items: center;
}
.marquee-item::after { content: '✦'; margin-left: 96px; color: rgba(0,0,0,0.3); }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* About / Stats */
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 80px;
}
.stat-box {
  padding: clamp(32px, 6vw, 48px);
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  border-top: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.stat-num {
  font-family: var(--ff-heading);
  font-size: clamp(56px, 10vw, 80px);
  background: var(--red-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 16px;
}
.stat-label { font-weight: 500; font-size: 18px; color: var(--white-dim); }

@media(max-width: 768px) { .stats-grid { grid-template-columns: 1fr; } }

/* Bento Grid Services */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(320px, auto);
  gap: 24px;
  margin-top: 80px;
}

.bento-card {
  background: var(--black-card);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 6vw, 48px);
  display: flex; flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
  opacity: 0; transition: opacity 0.3s;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover { border-color: rgba(245, 124, 0, 0.5); transform: translateY(-5px); }

.bento-card h3 { margin-bottom: 16px; font-family: var(--ff-heading); font-size: clamp(28px, 6vw, 40px); letter-spacing: 0.02em; }
.bento-icon { font-size: clamp(32px, 6vw, 48px); color: var(--orange); margin-bottom: clamp(24px, 5vw, 40px); }

/* Bento Sizes */
.bento-large { grid-column: span 8; }
.bento-medium { grid-column: span 4; }
.bento-half { grid-column: span 6; }

@media(max-width: 1024px) {
  .bento-large, .bento-medium, .bento-half { grid-column: span 12; }
}

/* Sticky Process */
.process-container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-top: 80px;
}
.process-title {
  flex: 1;
  position: sticky;
  top: 160px;
}
.process-steps {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.process-step {
  background: var(--black-card);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  backdrop-filter: blur(20px);
  position: sticky;
  top: 160px;
  box-shadow: 0 -20px 40px rgba(0,0,0,0.5);
}
.process-step:nth-child(1) { top: 160px; }
.process-step:nth-child(2) { top: 180px; }
.process-step:nth-child(3) { top: 200px; }
.process-step:nth-child(4) { top: 220px; }

.process-num {
  font-family: var(--ff-heading);
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke: 2px var(--gray-border);
  margin-bottom: 24px;
  line-height: 1;
  transition: var(--transition);
}
.process-step:hover .process-num { color: var(--orange); -webkit-text-stroke: 0; }
.process-step h3 { font-family: var(--ff-heading); font-size: 48px; margin-bottom: 16px; }

@media(max-width: 992px) {
  .process-container { flex-direction: column; gap: 32px; }
  .process-title { position: static; }
  .process-step { position: static; box-shadow: none; padding: clamp(24px, 6vw, 40px); }
}

/* FAQ Section */
.faq-container {
  max-width: 900px;
  margin-inline: auto;
  margin-top: 64px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-border);
  padding: 32px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--white-dim);
  font-size: 18px;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 24px;
}

.faq-icon {
  transition: transform 0.4s ease;
  color: var(--orange);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* CTA Banner */
.cta-banner {
  margin: clamp(64px, 10vw, 120px) 0;
  background: var(--red-orange);
  padding: clamp(64px, 10vw, 120px) 20px;
  text-align: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.15; pointer-events: none; mix-blend-mode: overlay;
}
.cta-banner .t-h1 { color: var(--black); margin-bottom: 24px; font-size: clamp(64px, 10vw, 120px); }
.cta-banner .t-body { color: rgba(0,0,0,0.8); font-weight: 500; font-size: 24px; margin-bottom: 48px; }
.cta-banner .btn-primary { background: var(--black); color: var(--white); border: none; padding: 24px 56px; font-size: 20px; }

/* Footer */
.footer {
  padding: 100px 0 40px;
  border-top: 1px solid var(--gray-border);
  background: var(--black-mid);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
}

/* Contact Buttons Grid */
.contact-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gray-border);
  padding: 16px 24px;
  border-radius: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.contact-btn i { font-size: 20px; color: var(--orange); }
.contact-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateX(10px);
}

.footer-bottom {
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white-dim);
}

@media(max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Animations */
.fade-up { opacity: 0; transform: translateY(60px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
