* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html {
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #e8e8e8;
  background-color: #0e0e0e;
  overflow-x: clip;
  cursor: none;
}

/* PROGRESS BAR */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, #4f8ef7, #a78bfa);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: #4f8ef7;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(79, 142, 247, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor.cursor-hover {
  width: 12px;
  height: 12px;
}

.follower-hover {
  width: 48px;
  height: 48px;
  border-color: rgba(79, 142, 247, 0.8);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  position: fixed;
  top: 2px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(14, 14, 14, 0.9);
  backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-sun {
  color: #4f8ef7;
  font-size: 22px;
}

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

.nav-links a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background-color: #4f8ef7 !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background-color 0.3s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
  background-color: #3a7de6 !important;
  transform: translateY(-1px);
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-content {
  flex: 1.2;
}

.hero-tag {
  display: inline-block;
  background-color: rgba(79, 142, 247, 0.1);
  color: #4f8ef7;
  border: 1px solid rgba(79, 142, 247, 0.2);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.typed-text {
  color: #4f8ef7;
}

.cursor-blink {
  color: #4f8ef7;
  animation: blink 1s infinite;
}

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

.hero-content p {
  font-size: 17px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  background-color: #4f8ef7;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid #4f8ef7;
  cursor: none;
  font-family: 'DM Sans', sans-serif;
}

.btn:hover {
  background-color: #3a7de6;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 142, 247, 0.3);
}

.btn-ghost {
  background-color: transparent;
  color: #e8e8e8;
  border-color: rgba(255,255,255,0.15);
}

.btn-ghost:hover {
  background-color: rgba(255,255,255,0.05);
  box-shadow: none;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: #fff;
}

.stat-label {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.5px;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
}

/* HERO VISUAL */
.hero-visual {
  flex: 1;
  position: relative;
  height: 500px;
}

.hero-mockup {
  width: 100%;
  height: 380px;
  background-color: #1a1a1a;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: absolute;
  top: 60px;
}

.mockup-bar {
  height: 32px;
  background-color: #242424;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: block;
}

.mockup-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-nav {
  height: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
}

.mockup-hero {
  height: 120px;
  background: rgba(79,142,247,0.08);
  border-radius: 6px;
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mockup-cards div {
  height: 60px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
}

.floating-card {
  position: absolute;
  background-color: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ccc;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 2;
}

.card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.card-dot.green { background-color: #4ade80; }
.card-dot.blue { background-color: #4f8ef7; }
.card-dot.yellow { background-color: #fbbf24; }

.card-1 {
  top: 10px;
  left: -20px;
  animation: float 3s ease-in-out infinite;
}

.card-2 {
  top: 200px;
  right: -20px;
  animation: float 3s ease-in-out infinite 1s;
}

.card-3 {
  bottom: 20px;
  left: 20px;
  animation: float 3s ease-in-out infinite 2s;
}

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

/* MARQUEE */
.marquee-section {
  background-color: #4f8ef7;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 30px;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

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

/* WORK */
#work {
  padding: 120px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4f8ef7;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.work-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.work-image {
  height: 240px;
  position: relative;
  overflow: hidden;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-preview {
  width: 85%;
  height: 85%;
  background-color: rgba(255,255,255,0.03);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

.wp-nav {
  height: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
}

.wp-hero {
  height: 60px;
  border-radius: 4px;
}

.wp-content {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(14,14,14,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 3px;
  transition: border-color 0.3s ease;
}

.work-link:hover {
  border-color: #4f8ef7;
  color: #4f8ef7;
}

.work-info {
  padding: 24px;
}

.work-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4f8ef7;
  display: block;
  margin-bottom: 8px;
}

.work-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
}

.work-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* SERVICES */
#services {
  padding: 120px 60px;
  background-color: #0a0a0a;
}

.services-container {
  display: flex;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.services-left {
  flex: 1;
  position: sticky;
  top: 120px;
}

.services-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.services-left p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 36px;
}

.services-right {
  flex: 1.4;
  display: flex;
  flex-direction: column;
}

.service-item {
  display: flex;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.service-item:hover {
  padding-left: 12px;
}

.service-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: rgba(79,142,247,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
  transition: color 0.3s ease;
}

.service-item:hover .service-num {
  color: rgba(79,142,247,0.6);
}

.service-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* PROCESS */
#process {
  padding: 120px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  background-color: #111;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover {
  border-color: rgba(79,142,247,0.3);
  transform: translateY(-4px);
}

.step-number {
  font-size: 11px;
  letter-spacing: 2px;
  color: #4f8ef7;
  margin-bottom: 16px;
  font-weight: 600;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.process-arrow {
  color: rgba(79,142,247,0.4);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 80px;
}

/* WHY */
#why {
  padding: 120px 60px;
  background-color: #0a0a0a;
}

.why-container {
  display: flex;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.why-text {
  flex: 1.2;
}

.why-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.why-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 16px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-point span {
  color: #4f8ef7;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-point p {
  font-size: 14px;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

.why-visual {
  flex: 1;
}

.why-card {
  background-color: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.why-card-icon {
  color: #4f8ef7;
  font-size: 20px;
}

.why-card-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.why-card-stat:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.big-num {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  color: #4f8ef7;
  line-height: 1;
}

.why-card-stat span:last-child {
  font-size: 13px;
  color: #555;
}

/* CONTACT */
#contact {
  padding: 120px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 24px;
}

.contact-info-item div h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4f8ef7;
  margin-bottom: 4px;
}

.contact-info-item div p {
  font-size: 14px;
  color: #888;
}

.contact-promise {
  background-color: #111;
  border: 1px solid rgba(79,142,247,0.2);
  border-radius: 12px;
  padding: 28px;
  margin-top: 10px;
}

.contact-promise h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.contact-promise p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.contact-form {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.form-group label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  background-color: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  color: #e8e8e8;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #4f8ef7;
  box-shadow: 0 0 0 3px rgba(79,142,247,0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #444;
}

.contact-form select option {
  background-color: #111;
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

/* FOOTER */
footer {
  background-color: #080808;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 50px 60px 24px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo span {
  color: #4f8ef7;
}

.footer-brand p {
  font-size: 13px;
  color: #444;
  max-width: 280px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #4f8ef7;
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* MOBILE */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }

  .navbar {
    padding: 16px 20px;
    background-color: rgba(14,14,14,0.95);
    backdrop-filter: blur(20px);
  }

  .nav-links {
    display: none;
  }

  #hero {
    flex-direction: column;
    padding: 120px 20px 60px;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-visual {
    width: 100%;
    height: 300px;
  }

  .hero-mockup {
    position: relative;
    top: auto;
    height: 260px;
  }

  .floating-card {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  #work {
    padding: 80px 20px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  #services {
    padding: 80px 20px;
  }

  .services-container {
    flex-direction: column;
    gap: 50px;
  }

  .services-left {
    position: relative;
    top: auto;
  }

  #process {
    padding: 80px 20px;
  }

  .process-steps {
    flex-direction: column;
    gap: 16px;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  #why {
    padding: 80px 20px;
  }

  .why-container {
    flex-direction: column;
    gap: 50px;
  }

  #contact {
    padding: 80px 20px;
  }

  .contact-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  footer {
    padding: 40px 20px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    cursor: auto;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .section-header h2 {
    font-size: 34px;
  }

  .hero-stats {
    flex-wrap: wrap;
  }
}