:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #8a8f98;
  --green: #00ff9d;
  --green-2: #00d2ff;
  --soft-green: #00ff9d1a;
  --dark-card: #0a0b10;
  --dark-card-2: #0f111a;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(15, 15, 20, 0.4);
  --glass-hover: rgba(25, 25, 30, 0.6);
  --radius: 24px;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-intense: 0 20px 80px rgba(0, 0, 0, 0.7);
  --royal-blue: #4169e1;
  --royal-blue-glow: rgba(65, 105, 225, 0.2);
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background: transparent;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

/* --- Masterpiece Design Layers --- */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 255, 157, 0.04) 0%, transparent 30%);
  transition: background 0.2s ease;
}

.aurora-bg::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, var(--royal-blue-glow) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 157, 0.05) 0%, transparent 40%);
  animation: aurora-drift 20s infinite alternate ease-in-out;
}

@keyframes aurora-drift {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(10deg) scale(1.1); }
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  background: var(--bg);
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  z-index: -1;
}

.floating-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--royal-blue);
  filter: blur(150px);
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
  animation: orb-float 15s infinite alternate ease-in-out;
}

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

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

/* Glass Card Utility */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow-soft);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--glass-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-intense), 0 0 0 1px rgba(0, 255, 157, 0.1) inset;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

main {
  padding-bottom: 6rem;
}

.section {
  margin-top: 8rem;
}

/* Topbar */
.topbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  z-index: 100;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3,4,7,0.8) 0%, transparent 100%);
}

.topbar-blocks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  pointer-events: auto;
}

/* Scroll Animasyon Geçişleri */
.topbar-blocks {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-menu {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}


body.is-scrolled .topbar-blocks {
  max-width: 100%;
  width: 100%;
  padding: 0 3vw;
}

/* Typewriter Effect Styles */
.hero-typewriter {
  font-size: clamp(3rem, 6vw, 5.5rem) !important;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 4rem;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dynamic-group {
  display: block;
  text-align: center;
  min-height: 2.3em; /* 2 satırlık alanı şimdiden rezerve et */
}

.static-text {
  color: #fff;
}

.dynamic-text {
  color: #fff;
  min-width: 2ch;
  text-shadow: 
    0 0 20px rgba(0, 255, 157, 0.4),
    0 0 40px rgba(0, 255, 157, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #00ff9d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.cursor {
  color: var(--green);
  animation: blink 0.8s infinite;
  margin-left: -5px;
}

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

.liquid-glass {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 
    0 10px 40px -10px rgba(0, 0, 0, 0.5), 
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.liquid-glass:hover {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.nav-logo {
  padding: 0.6rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
}

.nav-menu {
  padding: 0.6rem 1.5rem;
  gap: 2.5rem;
}

.nav-menu a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

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

.nav-cta {
  padding: 0.6rem 1.5rem;
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 
    0 4px 15px rgba(0, 255, 157, 0.15), 
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 255, 157, 0.2);
}

.nav-cta:hover {
  background: rgba(0, 255, 157, 0.08);
  border-color: rgba(0, 255, 157, 0.4);
  box-shadow: 
    0 8px 25px rgba(0, 255, 157, 0.3), 
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  color: #00ff9d;
}

/* Dropdown Menu Extensions */
.nav-cta {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 130%;
  right: 0;
  min-width: 250px;
  background: rgba(10, 11, 16, 0.9);
  border: 1px solid rgba(0, 255, 157, 0.15);
  border-radius: 16px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05) inset;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-wrapper:hover .dropdown-menu,
.dropdown-wrapper:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-wrapper:hover .nav-cta svg {
  transform: rotate(180deg);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.8rem 1.2rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}

.dropdown-item svg {
  color: var(--green);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.dropdown-item:hover {
  background: rgba(0, 255, 157, 0.08);
  color: var(--green);
  transform: translateX(4px);
}

.dropdown-item:hover svg {
  opacity: 1;
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
}

#mobile-login-btn {
  display: none;
}

/* Hero Section */
.hero {
  padding-top: 14rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 1.05;
  text-align: center;
  margin: 0 auto 5rem;
  max-width: 1000px;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff 40%, rgba(255, 255, 255, 0.3) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}

/* 3D Dashboard Mockup */
.dashboard-wrap {
  position: relative;
  min-height: 600px;
  display: flex;
  justify-content: center;
  perspective: 1200px;
  width: 96vw;
  max-width: 1350px;
}

.dashboard-card {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(145deg, rgba(20, 22, 30, 0.8) 0%, rgba(10, 11, 16, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 3rem;
  --mx: 50%;
  --my: 45%;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(0, 255, 157, 0.05) inset,
    0 30px 120px rgba(0, 255, 157, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  will-change: transform;
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  position: relative;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: inherit;
  /* Mouse proximity dynamic lightning + subtle static frame */
  background: 
    radial-gradient(350px circle at var(--mx) var(--my), rgba(0, 255, 157, 0.6) 0%, rgba(255,255,255,0.2) 20%, transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 40%, rgba(0,255,157,0.1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 10;
}

.dashboard-glow-mouse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  /* Authentic glass glare with sharp white core and blurred neon dispersion */
  background: 
    radial-gradient(180px circle at var(--mx) var(--my), rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(600px circle at var(--mx) var(--my), rgba(0, 255, 157, 0.04) 0%, transparent 70%);
  mix-blend-mode: screen;
  z-index: 2;
  transition: opacity 0.3s;
}

/* Dim glow a bit dynamically or keep subtle */
.dashboard-card:hover .dashboard-glow-mouse {
  opacity: 1;
}

/* Chart internals */
.card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  align-items: center;
  padding: 0 0.5rem;
}

.card-top span {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.card-top .domain {
  background: rgba(0, 255, 157, 0.05);
  border-color: rgba(0, 255, 157, 0.2);
  color: var(--green);
  text-shadow: 0 0 10px rgba(0,255,157,0.5);
}

.chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.chart-block {
  background: rgba(20, 22, 30, 0.5);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2) inset;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.chart-header h3 {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.kpi-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
}

.kpi-badge.positive {
  color: var(--green);
  background: rgba(0, 255, 157, 0.1);
  border: 1px solid rgba(0, 255, 157, 0.2);
}

.kpi-value {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

/* Mock Graphics */
.mock-area-chart {
  position: relative;
  width: 100%;
  height: 80px;
  border-radius: 8px;
}

.mock-bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 80px;
  gap: 8px;
}

.bar-wrapper {
  flex: 1;
  height: 100%;
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: flex-end;
  padding: 4px;
  transition: background 0.3s;
  cursor: pointer;
}

.bar-wrapper:hover {
  background: rgba(255,255,255,0.08);
}

.mock-bar {
  width: 100%;
  height: var(--h);
  background: var(--c);
  border-radius: 2px;
  opacity: 0.5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom;
}

.mock-bar.active, .bar-wrapper:hover .mock-bar {
  opacity: 1;
  box-shadow: 0 0 20px var(--c);
  transform: scaleY(1.05);
}

/* Activity & Vehicles */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  transition: background 0.3s;
  cursor: pointer;
}

.activity-item:hover {
  background: rgba(255,255,255,0.06);
}

.act-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.act-info strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.act-info span {
  color: var(--muted);
  font-size: 0.8rem;
}

.act-time {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}

/* Vehicle Bars */
.vehicle-bars {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 0.8rem;
}

.v-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.v-row span {
  color: var(--muted);
  font-size: 0.85rem;
  width: 65px;
}

.v-row strong {
  color: #fff;
  font-size: 0.85rem;
  width: 35px;
  text-align: right;
  font-weight: 700;
}

.v-track {
  flex-grow: 1;
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.v-fill {
  height: 100%;
  border-radius: 4px;
}

/* Partner Logos */
.partners {
  margin-top: 6rem;
  text-align: center;
}

.partners-title {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  font-weight: 600;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.3s;
}

.partner-logos:hover {
  opacity: 1;
}

.partner-item {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Section Common */
.section-header {
  text-align: center;
  margin: 0 auto 5rem;
  max-width: 800px;
}

.badge {
  display: inline-flex;
  padding: 0.5rem 1.2rem;
  background: var(--soft-green);
  border: 1px solid rgba(0, 255, 157, 0.2);
  color: var(--green);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1.5rem;
  background: linear-gradient(180deg, #fff 50%, #999 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 1.5rem;
}

.bento-item {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

.bento-item.wide {
  grid-column: span 3;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--green);
  background: rgba(0, 255, 157, 0.1);
  border: 1px solid rgba(0, 255, 157, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.1);
}

.bento-item h3 {
  font-size: 1.6rem;
  color: #fff;
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.bento-item.large h3 {
  font-size: 2.5rem;
  letter-spacing: -0.03em;
}

.bento-item p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.05rem;
  margin: 0;
}

/* Decor in Bento */
.bento-visual {
  margin-top: 2rem;
  flex-grow: 1;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Communication Mock UI */
.communication-mock {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.4) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 10px 30px rgba(0,0,0,0.5);
}

.mock-message {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(10px);
  animation: floatMessage 0.6s forwards cubic-bezier(0.2,0.8,0.2,1);
}

.mock-message:nth-child(1) { animation-delay: 0.2s; }
.mock-message:nth-child(2) { animation-delay: 0.4s; }
.mock-message:nth-child(3) { animation-delay: 0.6s; }

.mock-message.right {
  flex-direction: row-reverse;
}

.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.mock-msg-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-message.right .mock-msg-content {
  align-items: flex-end;
}

.mock-msg-title {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

.mock-msg-title span {
  font-size: 0.65rem;
  opacity: 0.6;
}

.mock-msg-text {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: 12px 12px 12px 2px;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.4;
  backdrop-filter: blur(10px);
}

.mock-message.right .mock-msg-text {
  border-radius: 12px 12px 2px 12px;
}

@keyframes floatMessage {
  to { opacity: 1; transform: translateY(0); }
}

/* Wide bento arrangement */
.bento-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  height: 100%;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-item.large, .bento-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bento-split {
    grid-template-columns: 1fr;
  }
}

/* Steps / Why Us? */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  padding: 3rem 2.5rem;
  text-align: center;
}

.step-no {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1;
}

.step-card h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: #fff;
}

.step-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   PRICING / PACKAGES  — Masterpiece Edition
   ═══════════════════════════════════════════ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

/* Card shell */
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.25) 100%);
  backdrop-filter: blur(20px);
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.35s;
}

.package-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  border-radius: 20px 20px 0 0;
  transition: background 0.4s;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.55);
}

/* Popular / featured card */
.package-card.is-popular {
  border-color: rgba(0,255,157,0.3);
  background: linear-gradient(160deg, rgba(0,255,157,0.04) 0%, rgba(0,0,0,0.3) 100%);
  box-shadow: 0 0 50px rgba(0,255,157,0.07) inset;
}
.package-card.is-popular::after {
  background: linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
  box-shadow: 0 0 20px rgba(0,255,157,0.5);
}
.package-card.is-popular:hover {
  box-shadow: 0 0 60px rgba(0,255,157,0.1) inset, 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(0,255,157,0.12);
}

/* Popular ribbon */
.pkg-ribbon {
  position: absolute;
  top: 16px; right: -26px;
  background: var(--green);
  color: #000;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 4px 34px;
  transform: rotate(45deg);
  box-shadow: 0 4px 14px rgba(0,255,157,0.5);
  z-index: 10;
}

/* Card sections */
.pkg-header { padding: 1.75rem 1.75rem 1.5rem; }

.pkg-body {
  padding: 0 1.75rem 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Package name */
.package-name {
  color: rgba(255,255,255,0.38);
  font-size: 0.68rem;
  font-weight: 800;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.is-popular .package-name { color: var(--green); }

/* Price block */
.pkg-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pkg-original-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pkg-original {
  font-size: 1rem;
  color: rgba(255,255,255,0.28);
  text-decoration: line-through;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.pkg-discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--green);
  background: rgba(0,255,157,0.08);
  border: 1px solid rgba(0,255,157,0.22);
}
.package-price {
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0;
}
.package-price span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.38);
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 2px;
}

/* Divider */
.pkg-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 1.25rem 0 1.1rem;
}

/* Features */
.package-features-wrap {
  position: relative;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}
.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 196px;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.package-features.expanded { max-height: 2000px; }

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.5rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.45;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.package-features li:last-child { border-bottom: none; }

.pkg-check {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(0,255,157,0.08);
  border: 1px solid rgba(0,255,157,0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.package-features-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  background: linear-gradient(to top, rgba(6,8,15,0.96) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.3s;
}
.package-features-fade.hidden { opacity: 0; }

/* Toggle button */
.pkg-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin: 0.5rem 0 1rem;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
  font-family: inherit;
}
.pkg-toggle-btn:hover { opacity: 0.6; }
.pkg-toggle-btn svg {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pkg-toggle-btn.open svg { transform: rotate(180deg); }




.btn-primary, .btn-secondary {
  display: block;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* CTA */
.cta {
  margin-top: 8rem;
}

.cta-box {
  padding: 6rem 3rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(0, 255, 157, 0.15) 0%, transparent 70%), var(--glass);
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem;
}

.cta-box p {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Aurora Background */
.aurora-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1400px;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
}

.aurora {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.45;
  animation: auroraMove 20s infinite alternate ease-in-out;
}

.aurora.a1 {
  background: radial-gradient(circle, #00ff9d, #00d2ff);
  top: -10%;
  left: 5%;
}

.aurora.a2 {
  background: radial-gradient(circle, #8e71ff, #ff007a);
  top: 20%;
  right: -5%;
  animation-delay: -5s;
  animation-duration: 25s;
}

@keyframes auroraMove {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15%, 15%) scale(1.2); }
  100% { transform: translate(-10%, -5%) scale(0.9); }
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 157, 0.1) 0%, rgba(142, 113, 255, 0.05) 30%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: screen;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  will-change: transform;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

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

/* Typing Effect */
.type-wrap .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  animation: typeReveal 0.6s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.type-wrap .char.space {
  width: 0.25em;
}

@keyframes typeReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Footer */
.site-footer {
  margin-top: 5rem;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, transparent, rgba(5, 7, 12, 0.8));
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.link-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.link-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.link-col a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

@media (max-width: 1200px) {
  .packages-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 900px) {
  .menu { display: none; }
  .packages-grid, .steps-grid, .chart-grid { grid-template-columns: 1fr; }
  .dashboard-wrap { min-height: 400px; }
  .section { margin-top: 5rem; }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* Floating Progress Button */
.progress-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(3, 4, 7, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.progress-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 255, 157, 0.15);
  background: rgba(3, 4, 7, 0.9);
}

.progress-ring {
  position: absolute;
  top: -1px;
  left: -1px;
  transform: rotate(-90deg);
  pointer-events: none;
}

.progress-ring__circle {
  transition: stroke-dashoffset 0.1s linear;
  stroke-dasharray: 138.23; /* 2 * pi * 22 */
  stroke-dashoffset: 138.23;
  stroke-linecap: round;
}

.progress-btn-icon {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  transition: transform 0.3s;
}

.progress-btn:hover .progress-btn-icon {
  color: var(--green);
  transform: translateY(-2px);
}

/* Checkout Page Styles */
.checkout-header {
  padding: 6rem 0 3rem;
  text-align: center;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 3rem;
  margin-bottom: 6rem;
}

.checkout-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
}

.checkout-sidebar {
  background: var(--dark-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  height: max-content;
  position: sticky;
  top: 100px;
}

.checkout-sidebar h3 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--muted);
}

.summary-row.total {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

.checkout-form h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(0,255,157,0.05);
  box-shadow: 0 0 15px rgba(0,255,157,0.1);
}

.form-btn {
  width: 100%;
  padding: 1.2rem;
  background: var(--green);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 2rem;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,255,157,0.3);
}

/* Success Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3,4,7,0.9);
  backdrop-filter: blur(10px);
  z-index: 9999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-modal {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4rem;
  text-align: center;
  max-width: 500px;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .success-modal {
  transform: scale(1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(0,255,157,0.1);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
}

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

/* Mobile Menu Base */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(3, 4, 7, 0.8), rgba(3, 4, 7, 0.6));
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: right 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  pointer-events: auto; /* Fix: Enable clicks inside the overlay */
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-inner {
  width: 100%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu-inner a {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.mobile-menu-inner a:hover {
  color: var(--green);
}

@media (max-width: 900px) {
  .topbar-wrapper {
    padding-top: max(0.75rem, env(safe-area-inset-top, 0px));
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .topbar-blocks.container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-logo {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    justify-self: start;
    padding: 0.5rem 1rem;
    font-size: clamp(1rem, 4.2vw, 1.35rem);
  }

  .nav-actions {
    justify-self: end;
    flex-shrink: 0;
    gap: 0.5rem;
  }

  #mobile-login-btn {
    display: inline-flex;
    align-items: center;
    padding: 0 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    border-radius: 12px;
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow: 0 4px 15px rgba(0, 255, 157, 0.15);
  }

  .menu-btn {
    display: flex;
    flex-shrink: 0;
  }

  .mobile-menu-inner {
    padding: calc(3rem + env(safe-area-inset-top, 0px)) 1.5rem 2rem 1.5rem;
  }

  .mobile-menu-inner a {
    font-size: clamp(1.35rem, 5vw, 2rem);
  }
}

@media (max-width: 380px) {
  .nav-logo {
    padding: 0.45rem 0.75rem;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
  }
}

