*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  background-color: #000000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-loading {
  overflow: hidden;
}

/* ==================== PRELOADER ==================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.preloader-text {
  font-size: 2rem;
  font-weight: 900;
  color: #FF4D2E;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 2rem;
  opacity: 0;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.preloader-bar {
  width: 300px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 77, 46, 0.3);
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #FF4D2E, #ff6b4e, #FF4D2E);
  background-size: 200% 100%;
  animation: shimmer 1s linear infinite;
  border-radius: 9999px;
}

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

/* ==================== CUSTOM CURSOR ==================== */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -4px;
  background: #FF4D2E;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.25s, height 0.25s, margin 0.25s, background 0.25s;
  mix-blend-mode: difference;
  box-shadow: 0 0 20px rgba(255, 77, 46, 0.5);
}

.cursor.is-hover {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  background: rgba(255, 77, 46, 0.3);
  box-shadow: 0 0 40px rgba(255, 77, 46, 0.6);
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border: 2px solid rgba(255, 77, 46, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transition: width 0.35s, height 0.35s, margin 0.35s, border-color 0.3s, opacity 0.3s;
  opacity: 0.6;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cursor-follower.is-hover {
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
  border-color: rgba(255, 77, 46, 0.2);
  opacity: 0.4;
  animation-duration: 3s;
}

@media (max-width: 768px) {
  .cursor, .cursor-follower {
    display: none !important;
  }
}

/* ==================== NOISE OVERLAY ==================== */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==================== TEXT ANIMATION STYLES ==================== */
.hero-title .letter {
  display: inline-block;
  perspective: 500px;
}

.hero-subtitle .subtitle-word {
  display: inline;
}

.mission-text .word {
  display: inline-block;
}

/* ==================== BASE RESET ==================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #FF4D2E;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background-color: #FF4D2E;
  color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111111;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF4D2E, #ff6b4e);
  border-radius: 9999px;
  box-shadow: 0 0 10px rgba(255, 77, 46, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: #FF4D2E;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: background 0.3s ease, transform 0.3s ease;
}

.navbar.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.navbar .navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}

.navbar .navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FF4D2E;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.navbar .navbar-brand:hover::after {
  transform: translateX(0);
}

.navbar .navbar-brand:hover {
  color: #FF4D2E;
}

.navbar .navbar-nav {
  gap: 3rem;
}

.navbar .navbar-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #aaaaaa;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
  overflow: hidden;
}

.navbar .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 77, 46, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: -1;
  border-radius: 4px;
}

.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FF4D2E;
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar .navbar-nav .nav-link:hover {
  color: #FFFFFF;
}

.navbar .navbar-nav .nav-link:hover::before {
  transform: translateY(0);
}

.navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar .navbar-toggler {
  border: none;
  padding: 0;
}

.navbar .navbar-toggler:focus {
  box-shadow: none;
}

.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FF4D2E;
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.btn-contact::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-contact .arrow-icon {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-contact:hover {
  border-color: #FF4D2E;
  color: #FFFFFF;
}

.btn-contact:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-contact:hover::after {
  width: 300px;
  height: 300px;
}

.btn-contact:hover .arrow-icon {
  transform: translate(5px, -5px) rotate(45deg);
}

@media (max-width: 991px) {
  .navbar .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    margin-top: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  .navbar .navbar-nav {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 77, 46, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: heroGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-section .hero-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-section .hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section .hero-image {
  position: relative;
  width: 70vw;
  max-width: 900px;
  aspect-ratio: 16/9;
  overflow: visible;
  border-radius: 0;
  transform-origin: center center;
  will-change: transform;
  animation: float 6s ease-in-out infinite;
}

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

.hero-section .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-section .hero-text-wrapper {
  position: relative;
  margin-top: -3.5rem;
  z-index: 10;
}

.hero-section .hero-title {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0;
  color: #FFFFFF;
  text-align: center;
  text-shadow: 0 0 40px rgba(255, 77, 46, 0.2);
}

.hero-section .hero-subtitle {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.35);
  margin-top: 0.25rem;
  text-transform: uppercase;
  text-align: center;
  animation: strokePulse 3s ease-in-out infinite;
}

@keyframes strokePulse {
  0%, 100% { -webkit-text-stroke-color: rgba(255, 255, 255, 0.35); }
  50% { -webkit-text-stroke-color: rgba(255, 77, 46, 0.6); }
}

.hero-section .hero-image .hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(255, 77, 46, 0.35) 0%, rgba(255, 77, 46, 0.08) 60%, transparent 80%);
  z-index: -1;
  opacity: 0.9;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

@media (max-width: 991px) {
  .hero-section .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .hero-section .hero-subtitle {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .hero-section .hero-image {
    max-width: 350px;
    margin-top: 3rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 100px;
  }
  .hero-section .hero-image {
    max-width: 280px;
  }
}

.mission-section {
  padding: 8rem 0;
  text-align: center;
  background: #FAFAFA;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 77, 46, 0.03) 0%, transparent 70%);
  animation: missionBg 10s linear infinite;
  pointer-events: none;
}

@keyframes missionBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.mission-section .mission-text {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  line-height: 1.6;
  color: #1a1a1a;
  max-width: 900px;
  margin: 0 auto;
}

.mission-section .mission-text .highlight {
  font-weight: 600;
  color: #000000;
  position: relative;
}

.mission-section .mission-text .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #FF4D2E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.mission-section .mission-text .highlight.is-visible::after {
  transform: scaleX(1);
}

/* ==================== SERVICES — CARD DECK ==================== */
.services-section {
  padding: 8rem 0;
  overflow: hidden;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 77, 46, 0.05) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(255, 77, 46, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-section .services-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 4rem;
  color: #FFFFFF;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.services-section .services-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #FF4D2E;
  box-shadow: 0 0 20px rgba(255, 77, 46, 0.5);
}

.services-section .services-deck-wrapper {
  position: relative;
  min-height: 400px;
}

.services-section .services-deck {
  position: relative;
  width: 100%;
}

.service-deck-card {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-deck-card.active {
  display: block;
  opacity: 1;
}

.service-deck-card .sdc-inner {
  display: flex;
  align-items: center;
  background: #111111;
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-deck-card .sdc-inner:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(255, 77, 46, 0.15);
  border-color: rgba(255, 77, 46, 0.3);
}

.service-deck-card .sdc-left {
  flex: 1;
  padding: 3rem;
}

.service-deck-card .sdc-title {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}

.service-deck-card .sdc-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #FF4D2E;
  transition: width 0.3s ease;
}

.service-deck-card .sdc-inner:hover .sdc-title::after {
  width: 80px;
}

.service-deck-card .sdc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-deck-card .sdc-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: #1a1a1a;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #aaaaaa;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-deck-card .sdc-tag:hover {
  background: #FF4D2E;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 77, 46, 0.3);
}

.service-deck-card .sdc-right {
  width: 45%;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.service-deck-card .sdc-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 77, 46, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-deck-card .sdc-inner:hover .sdc-right::after {
  opacity: 1;
}

.service-deck-card .sdc-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-deck-card .sdc-inner:hover .sdc-right img {
  transform: scale(1.1) rotate(1deg);
}

.sdc-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.sdc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
}

.sdc-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #FF4D2E;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sdc-dot.active {
  background: rgba(255, 77, 46, 0.3);
  transform: scale(1.3);
}

.sdc-dot.active::before {
  opacity: 1;
}

.sdc-dot:hover {
  background: rgba(255, 77, 46, 0.6);
  transform: scale(1.2);
}

.services-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 4rem;
  text-transform: uppercase;
}

.services-deck-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.services-deck {
  position: relative;
  width: 100%;
  max-width: 860px;
  height: 340px;
}

.service-deck-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  background: #000000;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    opacity   0.5s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.5s ease;
}

.service-deck-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: rotate(0deg) translate(0, 0);
  z-index: 3;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.service-deck-card.is-behind-1 {
  opacity: 1;
  pointer-events: none;
  transform: rotate(-2.5deg) translate(-18px, 10px);
  z-index: 2;
}

.service-deck-card.is-behind-2 {
  opacity: 1;
  pointer-events: none;
  transform: rotate(-5deg) translate(-34px, 20px);
  z-index: 1;
}

.service-deck-card.is-exiting {
  opacity: 0;
  pointer-events: none;
  transform: rotate(6deg) translate(120%, -10px);
  z-index: 4;
  transition:
    transform 0.55s cubic-bezier(0.55, 0, 1, 0.45),
    opacity   0.45s ease;
}

.sdc-inner {
  display: flex;
  height: 340px;
}

.sdc-left {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  background: #000000;
}

.sdc-right {
  flex: 1;
  overflow: hidden;
  border-left: 2px solid rgba(255, 255, 255, 0.85);
}

.sdc-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-deck-card.is-active:hover .sdc-right img {
  transform: scale(1.05);
}

.sdc-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.sdc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sdc-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: #FF4D2E;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.sdc-tag:not(.sdc-tag--accent) {
  background: #FF4D2E;
}

.sdc-tag--accent {
  background: #FF4D2E;
}

.sdc-nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.sdc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.sdc-dot.active {
  background: #FF4D2E;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .services-deck {
    height: 280px;
  }

  .sdc-inner {
    height: 280px;
  }

  .sdc-left {
    padding: 1.5rem;
  }

  .sdc-title {
    font-size: 1.1rem;
  }

  .service-deck-card.is-behind-1 {
    transform: rotate(-2deg) translate(-12px, 8px);
  }

  .service-deck-card.is-behind-2 {
    transform: rotate(-4deg) translate(-22px, 14px);
  }
}

@media (max-width: 480px) {
  .sdc-inner {
    flex-direction: column;
    height: auto;
  }

  .sdc-left {
    flex: none;
    padding: 1.5rem;
    justify-content: flex-start;
  }

  .sdc-right {
    flex: none;
    height: 200px;
    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.85);
  }

  .services-deck {
    height: 420px;
  }
}

.ticker-section {
  padding: 4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.ticker-section::before,
.ticker-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker-section::before {
  left: 0;
  background: linear-gradient(90deg, #000000, transparent);
}

.ticker-section::after {
  right: 0;
  background: linear-gradient(-90deg, #000000, transparent);
}

.ticker-section .ticker-wrapper {
  width: 100%;
  overflow: hidden;
}

.ticker-section .ticker-track {
  display: flex;
  width: max-content;
}

.ticker-section .ticker-track:hover {
  animation-play-state: paused;
}

.ticker-section .ticker-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.ticker-section .ticker-item {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1), text-shadow 0.3s, transform 0.3s;
}

.ticker-section .ticker-item:hover {
  color: #FFFFFF;
  text-shadow: 0 0 30px rgba(255, 77, 46, 0.5);
  transform: scale(1.1);
}

.ticker-section .ticker-dot {
  width: 6px;
  height: 6px;
  background: #FF4D2E;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 77, 46, 0.5);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

.projects-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.projects-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 77, 46, 0.03) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.projects-section .section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
}

.projects-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #FF4D2E;
  box-shadow: 0 0 15px rgba(255, 77, 46, 0.5);
}

.projects-section .projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111111;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-card:hover {
  transform: translateY(-8px) translateZ(0) scale(1.02);
  box-shadow: 0 30px 80px rgba(255, 77, 46, 0.12), 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 77, 46, 0.3);
}

.project-card .project-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card .project-image .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card .project-image .project-overlay .project-category {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0.9rem;
  background: rgba(255, 77, 46, 0.9);
  border-radius: 9999px;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 77, 46, 0.3);
}

.project-card:hover .project-overlay .project-category {
  transform: translateY(0);
}

.project-card .project-info {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.project-card .project-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FF4D2E, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-info::before {
  opacity: 1;
}

.project-card .project-info .project-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: color 0.3s ease, transform 0.3s ease;
}

.project-card:hover .project-name {
  color: #FF4D2E;
  transform: translateX(5px);
}

.project-card:hover .project-image img {
  transform: scale(1.1) translateZ(0) rotate(0.5deg);
}

.project-card:hover .project-image .project-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .projects-section .projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .project-card .project-info {
    padding: 1rem;
  }
  .project-card .project-info .project-name {
    font-size: 1.1rem;
  }
}

.tools-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.tools-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 77, 46, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.tools-section .tools-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.tools-section .tool-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.tools-section .tool-icon svg {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.tools-section .tool-icon:hover svg {
  filter: drop-shadow(0 8px 24px rgba(255, 77, 46, 0.4));
  transform: scale(1.15) rotate(5deg);
}

.tools-section .tool-icon .tool-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #888888;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.tools-section .tool-icon:hover {
  transform: translateY(-10px);
}

.tools-section .tool-icon:hover .tool-name {
  opacity: 1;
  transform: translateY(0);
  color: #FF4D2E;
}

.process-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 77, 46, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.process-section .section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
}

.process-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #FF4D2E;
  box-shadow: 0 0 15px rgba(255, 77, 46, 0.5);
}

.process-section .process-list {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #FF4D2E, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step:hover::before {
  opacity: 1;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding-left: 1rem;
  padding-right: 1rem;
  transform: translateX(10px);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step .step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 77, 46, 0.15);
  min-width: 60px;
  padding-top: 0;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.process-step:hover .step-number {
  color: rgba(255, 77, 46, 0.4);
  transform: scale(1.1);
}

.process-step .step-content {
  flex: 1;
}

.process-step .step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  transition: color 0.3s ease, transform 0.3s ease;
}

.process-step:hover .step-title {
  color: #FF4D2E;
  transform: translateX(5px);
}

.process-step .step-description {
  font-size: 0.95rem;
  font-weight: 300;
  color: #aaaaaa;
  margin-bottom: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.process-step:hover .step-description {
  color: #cccccc;
}

@media (max-width: 576px) {
  .process-step {
    gap: 2rem;
    padding: 2rem 0;
  }
  .process-step .step-number {
    font-size: 0.85rem;
    min-width: 32px;
  }
  .process-step .step-title {
    font-size: 1rem;
  }
  .process-step .step-description {
    font-size: 0.9rem;
  }
}

.footer-section {
  padding: 8rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 77, 46, 0.03) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(255, 77, 46, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-section .footer-content {
  margin-bottom: 6rem;
}

.footer-section .footer-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-section .footer-brand .footer-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  position: relative;
  display: inline-block;
}

.footer-section .footer-brand .footer-name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF4D2E;
  transition: width 0.5s ease;
}

.footer-section .footer-brand:hover .footer-name::after {
  width: 100%;
}

.footer-section .footer-brand .footer-title {
  font-size: 1rem;
  font-weight: 300;
  color: #888888;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.footer-section .footer-brand:hover .footer-title {
  color: #aaaaaa;
}

.footer-section .footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFFFFF;
  transition: color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.footer-section .footer-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FF4D2E;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.footer-section .footer-link:hover::before {
  transform: translateX(0);
}

.footer-section .footer-link svg {
  transition: transform 0.2s ease;
}

.footer-section .footer-link:hover {
  color: #FF4D2E;
}

.footer-section .footer-link:hover svg {
  transform: translate(5px, -5px) rotate(45deg);
}

.footer-section .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

.footer-section .footer-contact .contact-email {
  font-size: 0.95rem;
  font-weight: 500;
  color: #888888;
  transition: color 0.2s ease;
  position: relative;
}

.footer-section .footer-contact .contact-email::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #FF4D2E;
  transition: width 0.3s ease;
}

.footer-section .footer-contact .contact-email:hover::after {
  width: 100%;
}

.footer-section .footer-contact .contact-email:hover {
  color: #FFFFFF;
}

.footer-section .footer-contact .contact-linkedin {
  display: inline-flex;
  color: #888888;
  transition: color 0.2s ease, transform 0.3s ease;
}

.footer-section .footer-contact .contact-linkedin svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.footer-section .footer-contact .contact-linkedin:hover {
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-section .footer-contact .contact-linkedin:hover svg {
  transform: scale(1.1);
}

.footer-section .footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-section .footer-image {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.footer-section .footer-image:hover {
  transform: scale(1.05);
}

.footer-section .footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.6s ease;
}

.footer-section .footer-image:hover img {
  transform: scale(1.1);
}

.footer-section .footer-image .footer-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(255, 77, 46, 0.25) 0%, rgba(255, 77, 46, 0.05) 60%, transparent 80%);
  z-index: -1;
  opacity: 0.8;
  animation: footerGlow 6s ease-in-out infinite;
}

@keyframes footerGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.2); }
}

.footer-section .footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-section .footer-bottom .copyright {
  font-size: 0.85rem;
  font-weight: 300;
  color: #888888;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .footer-section .footer-right {
    justify-content: center;
    margin-top: 4rem;
  }
  .footer-section .footer-image {
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .footer-section .footer-brand .footer-name {
    font-size: 2rem;
  }
  .footer-section .footer-image {
    max-width: 200px;
  }
}
