/* ========== RESET & VARIABLES ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important; /* Custom Cursor */
}

:root {
  /* Dark Premium Palette */
  --bg-dark: #050505;
  --bg-darker: #020202;
  --bg-card: #0a0a0a;
  
  --text-main: #f5f5f5;
  --text-muted: #888888;
  
  --neon-blue: #3b82f6;
  --electric-blue: #1d4ed8;
  
  /* Gradients */
  --grad-text: linear-gradient(90deg, #fff 0%, #888 100%);
  --grad-blue: linear-gradient(135deg, var(--neon-blue) 0%, var(--electric-blue) 100%);
  --grad-card: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', 'Noto Sans SC', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Noto Sans SC', sans-serif;
  
  /* Borders */
  --border-glass: 1px solid rgba(255,255,255,0.05);
  
  /* Transitions */
  --ease-out: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-dark);
}

body.dark-theme {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-dark);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-fluid {
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

/* ========== CUSTOM CURSOR ========== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--neon-blue);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s;
}

.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-hover .cursor-dot {
  width: 10px;
  height: 10px;
}

.cursor-hover .cursor-outline {
  width: 50px;
  height: 50px;
  background-color: rgba(59, 130, 246, 0.1);
  border-color: transparent;
}

@media (hover: none), (pointer: coarse) {
  *, *::before, *::after { cursor: auto !important; }
  .cursor-dot, .cursor-outline { display: none; }
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 100;
  transition: all var(--ease-fast);
  background: transparent;
}

.navbar.scrolled {
  padding: 15px 0;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: var(--border-glass);
}

.navbar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-brand-name .dot {
  color: var(--neon-blue);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color var(--ease-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  background: transparent;
  border: var(--border-glass);
  color: var(--text-main);
  min-height: 48px;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--ease-fast);
}

.lang-toggle:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  z-index: 101;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: var(--text-main);
  transition: all var(--ease-fast);
}

/* ========== MOBILE MENU ========== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  z-index: 98;
  transition: opacity var(--ease-fast);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100dvh;
  background: var(--bg-darker);
  border-left: var(--border-glass);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
  right: 0;
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-muted);
  transition: color var(--ease-fast);
}

.mobile-menu a:hover {
  color: var(--text-main);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-dark) 0%, rgba(5,5,5,0.8) 40%, transparent 100%);
}

.marquee-bg {
  position: absolute;
  top: 15%;
  left: 0;
  width: 200%;
  z-index: 0;
  opacity: 0.03;
  pointer-events: none;
  transform: rotate(-5deg);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 12rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 10vh;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.05);
  border: var(--border-glass);
  border-radius: 40px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.neon-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-blue);
}

.hero-title {
  font-size: 6.25rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 30px;
}

.hero-title span {
  display: block;
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 50px;
}

.btn-neon {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 48px;
  padding: 20px 40px;
  background: var(--text-main);
  color: var(--bg-dark);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all var(--ease-fast);
}

.btn-neon:hover {
  background: var(--neon-blue);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mouse-line {
  width: 2px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.mouse-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--neon-blue);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ========== STATS ========== */
.stats-section {
  padding: 80px 0;
  border-bottom: var(--border-glass);
}

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

.stat-box {
  padding-left: 30px;
  border-left: var(--border-glass);
}

.stat-num {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 10px;
}

.glow-text {
  color: var(--neon-blue);
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.stat-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== ABOUT (SPLIT) ========== */
.about-section {
  padding: 150px 0;
}

.about-split {
  display: flex;
  gap: 80px;
}

.about-left {
  flex: 1;
  position: relative;
}

.sticky-content {
  position: sticky;
  top: 150px;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--neon-blue);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-size: 3.35rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
}

.feature-line {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: var(--border-glass);
}

.feature-line i {
  color: var(--neon-blue);
  width: 32px;
  height: 32px;
}

.feature-line h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.feature-line p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-right {
  flex: 1;
  padding-top: 50px;
}

.about-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 50px;
  aspect-ratio: 4/5;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 30px;
  border: var(--border-glass);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.large-p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 500;
}

.fade-p {
  color: var(--text-muted);
  margin-top: 20px;
}

/* ========== SERVICES BENTO ========== */
.services-section {
  padding: 100px 0;
  background: var(--bg-darker);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 300px);
  gap: 20px;
  margin-top: 60px;
}

.bento-item {
  border-radius: 24px;
  background: var(--bg-card);
  border: var(--border-glass);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease-fast), border-color var(--ease-fast);
}

.bento-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-medium {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-small {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transition: opacity var(--ease-out), transform var(--ease-out);
}

.bento-item:hover .bento-bg {
  opacity: 0.6;
  transform: scale(1.05);
}

.ship-bg { background-image: url('../assets/ship-dark.png'); }
.plane-bg { background-image: url('../assets/plane-dark.png'); }

.bento-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-icon {
  margin-bottom: auto;
  width: 40px;
  height: 40px;
  color: var(--text-main);
}

.bento-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.bento-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.dark-box {
  background: var(--grad-card);
}

.neon-box {
  background: var(--grad-blue);
}

.neon-box h3, .neon-box p, .neon-box .bento-icon {
  color: var(--bg-dark);
}

/* ========== ADVANTAGES ========== */
.benefit-section {
  padding: 150px 0;
}

.benefit-list {
  margin-top: 60px;
  border-top: var(--border-glass);
}

.benefit-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  padding: 40px 0;
  position: relative;
  cursor: pointer;
}

.benefit-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.05);
}

.benefit-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--neon-blue);
  transition: width var(--ease-out);
}

.benefit-row:hover .benefit-line::after {
  width: 100%;
}

.benefit-icon {
  font-size: 2rem;
  color: var(--text-muted);
  transition: color var(--ease-fast), transform var(--ease-out);
}

.benefit-row:hover .benefit-icon {
  color: var(--neon-blue);
  transform: translateX(10px);
}

.benefit-text {
  display: block;
  min-width: 0;
}

.benefit-text h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  transition: transform var(--ease-out);
}

.benefit-row:hover .benefit-text h3 {
  transform: translateX(10px);
}

.benefit-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ========== BIG CTA ========== */
.big-cta {
  padding: 150px 0;
  background: var(--neon-blue);
  color: var(--bg-dark);
  text-align: center;
}

.giant-text {
  font-size: 8.5rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.cta-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 50px;
  font-weight: 600;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 25px 60px;
  background: var(--bg-dark);
  color: var(--text-main);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 60px;
  transition: transform var(--ease-fast);
}

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

/* ========== FOOTER ========== */
.footer-dark {
  padding: 100px 0 40px;
  background: var(--bg-darker);
  border-top: var(--border-glass);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.footer-logo {
  font-size: 4rem;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 20px;
}

.footer-logo span { color: var(--neon-blue); }

.footer-brand p {
  color: var(--text-muted);
  max-width: 300px;
}

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

.link-group h4 {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.link-group a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 15px;
  transition: color var(--ease-fast);
}

.link-group a:hover {
  color: var(--neon-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: var(--border-glass);
  padding-top: 40px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Text block reveal */
.block-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-image-wrapper { width: 100%; opacity: 0.4; }
  .marquee-track span { font-size: 9rem; }
  .hero-title { font-size: 5rem; }
  .section-title { font-size: 3rem; }
  .giant-text { font-size: 6.5rem; }
  .about-split { flex-direction: column; gap: 40px; }
  .sticky-content { position: static; }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-large { grid-column: span 2; grid-row: span 1; min-height: 300px; }
  .footer-top { flex-direction: column; gap: 50px; }
}

@media (max-width: 768px) {
  .container, .container-fluid { padding: 0 20px; }
  .navbar { padding: 18px 0; }
  .navbar.scrolled { padding: 12px 0; }
  .nav-links { display: none; }
  .nav-actions { gap: 10px; }
  .lang-toggle {
    display: inline-flex;
    min-height: 48px;
    padding: 10px 14px;
  }
  .hamburger {
    display: flex;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 14px 9px;
  }
  .mobile-menu {
    padding: max(96px, calc(env(safe-area-inset-top) + 72px)) 28px 40px;
  }
  .mobile-menu a {
    font-size: 2.2rem;
    line-height: 1.1;
  }
  .hero {
    height: auto;
    min-height: 100dvh;
    align-items: flex-end;
  }
  .hero-image-wrapper {
    width: 100%;
    opacity: 0.38;
  }
  .hero-img { object-position: center; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.78) 48%, var(--bg-dark) 100%);
  }
  .marquee-bg {
    top: 20%;
    width: 220%;
  }
  .marquee-track span { font-size: 6rem; }
  .hero-content {
    margin-top: 0;
    padding: 128px 0 88px;
  }
  .hero-badge {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 24px;
  }
  .hero-title {
    font-size: 3.3rem;
    line-height: 1.04;
    margin-bottom: 24px;
  }
  .hero-desc {
    max-width: 100%;
    font-size: 1rem;
    margin-bottom: 34px;
  }
  .btn-neon, .btn-solid {
    min-height: 48px;
    padding: 16px 24px;
    touch-action: manipulation;
  }
  .scroll-indicator { display: none; }
  .stats-section { padding: 56px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-box { padding-left: 18px; }
  .stat-num { font-size: 2.5rem; }
  .about-section, .benefit-section, .big-cta { padding: 80px 0; }
  .about-split { gap: 28px; }
  .about-right { padding-top: 0; }
  .about-img-box {
    border-radius: 18px;
    margin-bottom: 32px;
    aspect-ratio: 4 / 3;
  }
  .glass-badge {
    left: 18px;
    bottom: 18px;
    padding: 12px 16px;
  }
  .section-title {
    font-size: 2.4rem;
    margin-bottom: 28px;
  }
  .large-p { font-size: 1.1rem; }
  .services-section { padding: 76px 0; }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
    margin-top: 40px;
  }
  .bento-large, .bento-medium, .bento-small {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 260px;
  }
  .bento-item {
    border-radius: 20px;
    padding: 28px;
  }
  .bento-icon {
    width: 34px;
    height: 34px;
  }
  .benefit-list { margin-top: 36px; }
  .benefit-row { grid-template-columns: 60px 1fr; padding: 30px 0; }
  .benefit-icon { font-size: 1.5rem; }
  .benefit-text h3 { font-size: 1.4rem; }
  .benefit-text p { font-size: 1rem; }
  .giant-text {
    font-size: 4.6rem;
    line-height: 0.95;
  }
  .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 34px;
  }
  .footer-dark { padding: 72px 0 32px; }
  .footer-top {
    margin-bottom: 52px;
  }
  .footer-logo { font-size: 3rem; }
  .footer-links { flex-direction: column; gap: 40px; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .container, .container-fluid { padding: 0 16px; }
  .nav-brand-name { font-size: 1.45rem; }
  .lang-toggle {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .mobile-menu {
    max-width: none;
    padding: max(88px, calc(env(safe-area-inset-top) + 64px)) 22px 36px;
  }
  .mobile-menu a { font-size: 1.85rem; }
  .hero-content { padding: 116px 0 72px; }
  .hero-badge {
    padding: 9px 14px;
    letter-spacing: 0.5px;
  }
  .hero-title { font-size: 2.4rem; }
  .hero-title .block-reveal {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hero-desc { font-size: 1rem; }
  .btn-neon, .btn-solid {
    width: 100%;
    padding: 15px 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stat-box {
    padding: 22px 0;
    border-left: 0;
    border-bottom: var(--border-glass);
  }
  .section-title { font-size: 2rem; }
  .section-label { letter-spacing: 2px; }
  .about-img-box { aspect-ratio: 1 / 1; }
  .bento-grid {
    gap: 14px;
    margin-top: 32px;
  }
  .bento-item {
    min-height: 220px;
    padding: 24px;
    border-radius: 18px;
  }
  .bento-item h3 { font-size: 1.25rem; }
  .benefit-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
    cursor: default;
  }
  .benefit-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: var(--border-glass);
    border-radius: 50%;
  }
  .benefit-row:hover .benefit-icon,
  .benefit-row:hover .benefit-text h3 {
    transform: none;
  }
  .giant-text { font-size: 3.4rem; }
  .footer-links { gap: 30px; }
  .footer-bottom { font-size: 0.82rem; }
}
