/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --bg-elevated: #0a0a0f;
  --bg-blue: #0a101c;
  --bg-indigo: #0e0a1a;
  --bg-slate: #0c121f;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-tint: rgba(168, 200, 232, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --border-accent: rgba(168, 200, 232, 0.2);
  --text: #f0f0f5;
  --text-muted: rgba(240, 240, 245, 0.55);
  --silver: #e8e8f0;
  --blue: #a8c8e8;
  --lavender: #c4b5fd;
  --accent: #b8d4f0;
  --gradient: linear-gradient(135deg, var(--silver) 0%, var(--blue) 50%, var(--lavender) 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(232,232,240,0.15) 0%, rgba(168,200,232,0.15) 50%, rgba(196,181,253,0.15) 100%);
  --gradient-section: linear-gradient(180deg, rgba(168, 200, 232, 0.06) 0%, transparent 40%, rgba(196, 181, 253, 0.04) 100%);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 80px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) var(--bg);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(168, 200, 232, 0.3);
  color: var(--text);
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 200, 232, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

html.loading,
body.loading {
  overflow: hidden;
  height: 100%;
  touch-action: none;
  overscroll-behavior: none;
}

body.loading {
  position: fixed;
  inset: 0;
  width: 100%;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  background: #000;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.loader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: loaderOrb 6s ease-in-out infinite;
}

.loader-orb-1 {
  width: 320px;
  height: 320px;
  background: rgba(168, 200, 232, 0.15);
  top: 20%;
  left: 20%;
}

.loader-orb-2 {
  width: 280px;
  height: 280px;
  background: rgba(196, 181, 253, 0.12);
  bottom: 20%;
  right: 15%;
  animation-delay: -2s;
}

.loader-orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(232, 232, 240, 0.08);
  top: 50%;
  left: 50%;
  animation: loaderOrb3 6s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes loaderOrb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate(10px, -8px) scale(1.05); opacity: 1; }
}

@keyframes loaderOrb3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(calc(-50% + 8px), calc(-50% - 8px)) scale(1.05); opacity: 1; }
}

.loader-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
}

.loader-logo-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  perspective: 600px;
}

.loader-logo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(168, 200, 232, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

.loader-logo-ring {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(168, 200, 232, 0.25);
  border-radius: 28%;
  animation: loaderRingSpin 8s linear infinite;
}

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

.loader-logo {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  animation: loaderLogoPulse 2.5s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(168, 200, 232, 0.4));
}

@keyframes loaderLogoPulse {
  0%, 100% { transform: scale(1) rotateY(0deg); }
  50% { transform: scale(1.05) rotateY(180deg); }
}

@keyframes loaderLogoFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.05) translateY(-6px); }
}

.loader-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.loader-progress-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
}

.loader-bar {
  width: 100%;
  max-width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 3px;
  transition: width 0.25s ease-out;
  box-shadow: 0 0 12px rgba(168, 200, 232, 0.5);
}

.loader-percent {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  min-width: 3ch;
}

.loader-status {
  font-size: 0.8125rem;
  color: rgba(240, 240, 245, 0.4);
  letter-spacing: 0.08em;
  animation: loaderStatusPulse 1.5s ease-in-out infinite;
  max-width: 100%;
  overflow-wrap: break-word;
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-logo img {
  width: 36px;
  height: 36px;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient);
  transition: width 0.3s;
}

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

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

.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-cta:hover {
  border-color: var(--border-hover);
  background: rgba(168, 200, 232, 0.1);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.nav-mobile-cta {
  display: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--gradient);
  color: #000;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff 0%, var(--blue) 50%, var(--lavender) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 200, 232, 0.25);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.03);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--nav-height) + 16px) 24px 48px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(168, 200, 232, 0.12);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(196, 181, 253, 0.1);
  bottom: 10%;
  left: -10%;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(232, 232, 240, 0.08);
  top: 40%;
  left: 50%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  min-height: calc(100vh - var(--nav-height) - 64px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 clamp(24px, 6vw, 80px);
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  max-width: 560px;
}

.hero-text-frame {
  position: relative;
  padding: 36px 40px;
  text-align: left;
  background:
    linear-gradient(145deg, rgba(168, 200, 232, 0.08) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(196, 181, 253, 0.06) 100%);
  border: 1px solid rgba(168, 200, 232, 0.22);
  border-radius: 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-text-frame::before,
.hero-text-frame::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
}

.hero-text-frame::before {
  top: 14px;
  left: 14px;
  border-top: 2px solid rgba(168, 200, 232, 0.55);
  border-left: 2px solid rgba(168, 200, 232, 0.55);
  border-radius: 6px 0 0 0;
}

.hero-text-frame::after {
  bottom: 14px;
  right: 14px;
  border-bottom: 2px solid rgba(196, 181, 253, 0.55);
  border-right: 2px solid rgba(196, 181, 253, 0.55);
  border-radius: 0 0 6px 0;
}

.hero-bottom {
  display: none;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(168, 200, 232, 0.18);
  background: none;
  border-radius: 0;
  backdrop-filter: none;
}

.hero-text-frame .stat {
  text-align: left;
  flex: 1;
}

.hero-text-frame .stat-num {
  font-size: 1.5rem;
}

.hero-text-frame .stat-suffix {
  font-size: 1rem;
}

.hero-text-frame .stat-label {
  font-size: 0.625rem;
  margin-top: 2px;
}

.hero-text-frame .stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(168, 200, 232, 0.15);
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(168, 200, 232, 0.15);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}

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

.hero-logo-wrap {
  position: absolute;
  top: 50%;
  left: 72%;
  width: min(96vw, 92vh, 860px);
  height: min(96vw, 92vh, 860px);
  perspective: 1600px;
  z-index: 1;
  pointer-events: none;
  margin: 0;
}

.hero-logo-wrap.reveal {
  opacity: 0;
  transform: translate(-50%, -48%);
}

.hero-logo-wrap.reveal.visible {
  opacity: 1;
  transform: translate(-50%, -52%);
}

.hero-logo-3d {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
  transform: rotateX(var(--tilt-x, 12deg)) rotateY(var(--tilt-y, -24deg));
}

.hero-logo-scene {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: logoSpin3d 14s ease-in-out infinite, logoFloat3d 5s ease-in-out infinite;
}

.hero-logo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 28%;
  border: 1px solid rgba(168, 200, 232, 0.15);
  transform: translateZ(-30px) rotateX(70deg);
  box-shadow: 0 0 40px rgba(168, 200, 232, 0.08);
}

.hero-logo {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  transform: translateZ(60px);
  filter: drop-shadow(0 20px 50px rgba(168, 200, 232, 0.4));
  backface-visibility: hidden;
}

.hero-logo-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 24%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0) 45%,
    rgba(196, 181, 253, 0.12) 100%
  );
  transform: translateZ(62px);
  pointer-events: none;
  mix-blend-mode: soft-light;
  animation: logoShine 6s ease-in-out infinite;
}

.hero-logo-shadow {
  position: absolute;
  left: 50%;
  bottom: -8%;
  width: 55%;
  height: 8%;
  transform: translateX(-50%) translateZ(-80px) rotateX(90deg);
  background: radial-gradient(ellipse, rgba(168, 200, 232, 0.35) 0%, transparent 70%);
  filter: blur(20px);
}

.hero-logo-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(168, 200, 232, 0.28) 0%, transparent 68%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
  transform: translateZ(-80px);
  pointer-events: none;
}

@keyframes logoSpin3d {
  0%, 100% { transform: rotateX(0deg) rotateY(0deg); }
  25% { transform: rotateX(6deg) rotateY(42deg); }
  50% { transform: rotateX(-4deg) rotateY(84deg); }
  75% { transform: rotateX(6deg) rotateY(126deg); }
}

@keyframes logoFloat3d {
  0%, 100% { transform: translateY(0) translateZ(0); }
  50% { transform: translateY(-12px) translateZ(8px); }
}

@keyframes logoShine {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}

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

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--silver);
}

.hero-accent {
  font-weight: 500;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: rgba(240, 240, 245, 0.8);
  max-width: 100%;
  margin: 0 0 28px;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: fadeInUp 1s ease 2s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 20px 0;
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-accent);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  background:
    linear-gradient(90deg, rgba(168, 200, 232, 0.08) 0%, rgba(196, 181, 253, 0.1) 50%, rgba(168, 200, 232, 0.08) 100%),
    var(--bg-blue);
}

.marquee {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.marquee-dot {
  color: var(--accent);
  font-size: 0.5rem;
}

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

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 200, 232, 0.35), rgba(196, 181, 253, 0.35), transparent);
  opacity: 0.6;
}

.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(168, 200, 232, 0.08);
  border: 1px solid rgba(168, 200, 232, 0.15);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

/* ===== SERVICES ===== */
.services {
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(168, 200, 232, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 100%, rgba(196, 181, 253, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #060810 0%, var(--bg-blue) 45%, #0a0e18 100%);
}

.services .container,
.process .container,
.work .container,
.pricing .container,
.contact .container,
.cta-banner .container {
  position: relative;
  z-index: 1;
}

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

.service-card {
  position: relative;
  padding: 36px 28px;
  background: linear-gradient(145deg, rgba(168, 200, 232, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 200, 232, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.service-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

/* ===== PROCESS ===== */
.process {
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(196, 181, 253, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(168, 200, 232, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0a0814 0%, var(--bg-indigo) 50%, #0c1018 100%);
}

.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--lavender), transparent);
}

.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.process-step:hover .step-marker {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(168, 200, 232, 0.2);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== WORK ===== */
.work {
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(168, 200, 232, 0.09) 0%, transparent 60%),
    linear-gradient(180deg, #080a12 0%, var(--bg-slate) 55%, #0a0c14 100%);
}

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

.work-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  transition: all var(--transition);
  background: linear-gradient(160deg, rgba(168, 200, 232, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  color: inherit;
}

.work-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.work-visual {
  aspect-ratio: 16/10;
  padding: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a12 0%, #12121f 100%);
}

.work-browser {
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.5s;
}

.work-card:hover .work-browser {
  transform: scale(1.02);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-bar span:first-child { background: rgba(255, 100, 100, 0.5); }
.browser-bar span:nth-child(2) { background: rgba(255, 200, 100, 0.5); }
.browser-bar span:nth-child(3) { background: rgba(100, 255, 100, 0.5); }

.browser-url {
  flex: 1;
  margin-left: 8px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

.work-preview {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-preview--worktube {
  background: linear-gradient(145deg, #0f1a3d 0%, #1e3a6e 40%, #2d1f5e 100%);
}

.work-preview--myhomi {
  background: linear-gradient(145deg, #1a1510 0%, #3d2e1f 40%, #2a3d35 100%);
}

.work-preview--stepinstyle {
  background: linear-gradient(145deg, #1a0f14 0%, #3d1f2e 40%, #1f1a3d 100%);
}

.work-preview-brand {
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-preview-brand {
  transform: scale(1.05);
}

.work-preview-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--silver);
  letter-spacing: -0.02em;
}

.work-preview-domain {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: rgba(240, 240, 245, 0.45);
  letter-spacing: 0.05em;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--silver);
}

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

.mockup-gallery div:nth-child(3) {
  background: linear-gradient(135deg, rgba(168, 200, 232, 0.15), rgba(196, 181, 253, 0.15));
}

.work-info {
  padding: 24px;
}

.work-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.work-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 8px 0;
}

.work-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing {
  background:
    radial-gradient(ellipse 70% 50% at 15% 30%, rgba(168, 200, 232, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 70%, rgba(196, 181, 253, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #080a10 0%, #0e1220 50%, #0a0c14 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: all var(--transition);
}

.pricing-card-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.4s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card:hover .pricing-card-glow {
  opacity: 0.55;
}

.pricing-card--starter {
  --card-accent: #7eb8e8;
  --card-accent-soft: rgba(126, 184, 232, 0.15);
}

.pricing-card--business {
  --card-accent: #a8c8e8;
  --card-accent-soft: rgba(168, 200, 232, 0.2);
  border-color: rgba(168, 200, 232, 0.35);
  background: linear-gradient(160deg, rgba(168, 200, 232, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  transform: scale(1.03);
  z-index: 1;
  box-shadow: 0 20px 60px rgba(168, 200, 232, 0.12);
}

.pricing-card--business:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-card--premium {
  --card-accent: #b8a0f0;
  --card-accent-soft: rgba(196, 181, 253, 0.18);
}

.pricing-card--custom {
  --card-accent: #e8c4a0;
  --card-accent-soft: rgba(232, 196, 160, 0.12);
  background: linear-gradient(160deg, rgba(196, 181, 253, 0.08) 0%, rgba(232, 196, 160, 0.06) 100%);
}

.pricing-card--starter .pricing-card-glow { background: #7eb8e8; }
.pricing-card--business .pricing-card-glow { background: #a8c8e8; }
.pricing-card--premium .pricing-card-glow { background: #c4b5fd; }
.pricing-card--custom .pricing-card-glow { background: linear-gradient(135deg, #c4b5fd, #e8c4a0); }

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a0e16;
  background: var(--gradient);
  border-radius: 100px;
}

.pricing-tier {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--card-accent);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--card-accent), var(--silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-currency {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--card-accent);
  margin-top: 8px;
}

.pricing-price--custom {
  align-items: center;
  min-height: 48px;
}

.pricing-custom-label {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  background: linear-gradient(135deg, #c4b5fd, #e8c4a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 0.875rem;
  color: rgba(240, 240, 245, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--card-accent);
  box-shadow: 0 0 8px var(--card-accent-soft);
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%, rgba(168, 200, 232, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, #0c1018 0%, #12101f 50%, #0a0e16 100%);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(196, 181, 253, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(168, 200, 232, 0.08) 0%, transparent 40%);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 80px 40px;
  background: linear-gradient(145deg, rgba(168, 200, 232, 0.08) 0%, rgba(196, 181, 253, 0.06) 100%);
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  backdrop-filter: blur(20px);
}

.cta-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  opacity: 0.8;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-inner p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 1.0625rem;
}

/* ===== CONTACT ===== */
.contact {
  background:
    radial-gradient(ellipse 55% 45% at 15% 50%, rgba(168, 200, 232, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 90% 30%, rgba(196, 181, 253, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0a0c14 0%, #0e1420 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-title,
.contact-info .section-desc {
  text-align: left;
  margin-left: 0;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color 0.3s;
}

.contact-link svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.contact-link:hover {
  color: var(--text);
}

.contact-form {
  padding: 40px;
  background: linear-gradient(145deg, rgba(168, 200, 232, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 240, 245, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(168, 200, 232, 0.4);
  box-shadow: 0 0 0 3px rgba(168, 200, 232, 0.08);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(240,240,245,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--bg-elevated);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 72px) 24px 64px;
  overflow: hidden;
  text-align: center;
}

.page-hero--compact {
  padding-bottom: 48px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-hero-bg .orb {
  opacity: 0.6;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.page-hero .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.pricing--page {
  padding-top: 0;
}

.pricing--page .pricing-grid {
  margin-top: 0;
}

.pricing-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-note a:hover {
  color: var(--text);
}

/* ===== START PAGE ===== */
.start-section {
  padding-top: 0;
}

.start-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.start-info h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.start-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.start-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.start-benefits svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.start-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.start-note a {
  color: var(--accent);
}

.start-note a:hover {
  color: var(--text);
}

.project-form {
  padding: 36px 32px;
}

.form-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 28px 0 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.form-section-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row .form-group {
  margin-bottom: 20px;
}

.form-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: border-color 0.3s, background 0.3s;
}

.form-checkbox:hover {
  border-color: rgba(168, 200, 232, 0.3);
  background: rgba(168, 200, 232, 0.04);
}

.form-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox:has(input:checked) {
  border-color: rgba(168, 200, 232, 0.35);
  color: var(--text);
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border-accent);
  background:
    linear-gradient(180deg, #0e121c 0%, #080810 60%, #000 100%);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-logo img {
  width: 32px;
  height: 32px;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all 0.3s;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
}

.footer-social a:hover {
  border-color: var(--accent);
  background: rgba(168, 200, 232, 0.05);
}

.footer-social a:hover svg {
  stroke: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

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

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card--business {
    transform: none;
  }

  .pricing-card--business:hover {
    transform: translateY(-6px);
  }

  .nav-container {
    padding: 0 20px;
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-mobile-cta {
    display: list-item;
    margin-top: 8px;
  }

  .nav-mobile-cta a {
    display: block;
    text-align: center;
    padding: 12px 24px;
    background: var(--gradient-subtle);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    color: var(--text) !important;
  }

  .nav-mobile-cta a::after {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
  }

  .section {
    padding: 88px 0;
  }

  .container {
    padding: 0 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-inner {
    padding: 56px 32px;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 24px;
  }

  .start-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Laptop / Nest Hub — μικρότερο 3D logo, χωρίς overlap (desktop 1440px+ αμετάβλητο) */
@media (max-width: 1366px) and (min-width: 1025px) {
  .hero-logo-wrap {
    left: 84%;
    width: min(360px, 34vw, 50vh);
    height: min(360px, 34vw, 50vh);
  }

  .hero-content {
    padding: 0 clamp(20px, 4vw, 48px);
  }

  .hero-text {
    max-width: 500px;
  }
}

/* Tablet: 768px – 1024px */
@media (max-width: 1024px) and (min-width: 768px) {
  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 32px) 20px 64px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-logo-wrap {
    position: relative;
    top: auto;
    left: auto;
    width: min(280px, 44vw);
    height: min(280px, 44vw);
    margin: 0 auto 32px;
    flex-shrink: 0;
  }

  .hero-logo-wrap.reveal {
    opacity: 0;
    transform: translateY(24px);
  }

  .hero-logo-wrap.reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-content {
    min-height: auto;
    padding: 0;
    align-items: center;
    width: 100%;
  }

  .hero-text {
    max-width: min(640px, 100%);
    width: 100%;
  }

  .hero-text-frame {
    padding: 32px 28px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  }

  .hero-text-frame .stat-num {
    font-size: 1.5rem;
  }

  .hero-text-frame .stat-label {
    font-size: 0.625rem;
  }

  .orb-1 { width: 360px; height: 360px; }
  .orb-2 { width: 300px; height: 300px; }
  .orb-3 { width: 240px; height: 240px; }

  .scroll-indicator {
    bottom: 20px;
  }
}

@media (max-width: 1024px) and (min-width: 768px) and (orientation: landscape) {
  .hero {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 100svh;
    padding: calc(var(--nav-height) + 20px) 24px 48px;
  }

  .hero-logo-wrap {
    order: 2;
    width: min(260px, 34vw);
    height: min(260px, 34vw);
    margin: 0;
  }

  .hero-content {
    order: 1;
    flex: 1 1 58%;
    max-width: 58%;
    align-items: flex-start;
  }

  .hero-text {
    max-width: 100%;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 767px) {
  .loader-orb {
    filter: blur(50px);
  }

  .loader-orb-1 {
    width: 180px;
    height: 180px;
    top: 15%;
    left: 5%;
  }

  .loader-orb-2 {
    width: 160px;
    height: 160px;
    bottom: 15%;
    right: 5%;
  }

  .loader-orb-3 {
    width: 140px;
    height: 140px;
  }

  .loader-inner {
    padding: 20px 16px;
  }

  .loader-brand {
    font-size: 1.5rem;
  }

  .loader-tagline {
    margin-bottom: 28px;
    font-size: 0.75rem;
  }

  .cursor-glow {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: calc(var(--nav-height) + 20px) 16px 32px;
    align-items: stretch;
  }

  .hero-logo-wrap {
    display: none !important;
  }

  .orb-1,
  .orb-2,
  .orb-3 {
    opacity: 0.5;
    filter: blur(60px);
  }

  .orb-1 { width: 280px; height: 280px; }
  .orb-2 { width: 220px; height: 220px; }
  .orb-3 { width: 180px; height: 180px; }

  .hero-content {
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0;
    width: 100%;
  }

  .hero-text {
    max-width: 100%;
    width: 100%;
  }

  .hero-text-frame {
    padding: 28px 20px;
    text-align: center;
    width: 100%;
  }

  .hero-text-frame::before,
  .hero-text-frame::after {
    width: 22px;
    height: 22px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .hero-sub {
    font-size: 0.875rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-text-frame .hero-stats {
    justify-content: space-between;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .hero-text-frame .stat {
    text-align: center;
    flex: 1;
    min-width: 0;
  }

  .hero-text-frame .stat-num {
    font-size: 1.125rem;
  }

  .hero-text-frame .stat-suffix {
    font-size: 0.875rem;
  }

  .hero-text-frame .stat-label {
    font-size: 0.5625rem;
    letter-spacing: 0.06em;
  }

  .hero-text-frame .stat-divider {
    height: 28px;
    flex-shrink: 0;
  }

  .scroll-indicator {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: clamp(1.625rem, 6vw, 2.25rem);
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

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

  .cta-inner {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .hero-text-frame {
    padding: 24px 16px;
  }

  .hero-text-frame .stat-label {
    font-size: 0.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .contact-form,
  .project-form {
    padding: 24px 20px;
  }

  .form-checkboxes {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: calc(var(--nav-height) + 48px) 16px 40px;
  }
}

/* ===== FORM SUCCESS ===== */
.form-success {
  text-align: center;
  padding: 40px;
}

.form-success svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent);
  margin: 0 auto 16px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

.form-error svg {
  stroke: #f87171;
}

.form-error-msg {
  color: #f87171;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 12px;
}

.botcheck {
  display: none;
}
