
/* Block 1 */
.futuristic-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  background-color: #0a0e17;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
  filter: contrast(1.1) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 14, 23, 0.95) 0%, rgba(10, 14, 23, 0.7) 50%, rgba(10, 14, 23, 0.4) 100%);
  backdrop-filter: blur(2px);
  z-index: 2;
}

.hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 3;
}

.hero-content-wrapper {
  max-width: 800px;
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #00f2ea;
  border-radius: 50%;
  margin-right: 0.75rem;
  box-shadow: 0 0 10px #00f2ea;
  animation: pulse 2s infinite;
}

.badge-text {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-title {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(90deg, #00f2ea 0%, #ff0055 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-description {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, #00f2ea, #00a8a3);
  color: #0a0e17;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 242, 234, 0.3);
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 242, 234, 0.5);
}

.btn-primary-glow i {
  margin-left: 0.75rem;
  transition: transform 0.3s ease;
}

.btn-primary-glow:hover i {
  transform: translateX(4px);
}

.btn-secondary-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
  .futuristic-hero {
    min-height: 80vh;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary-glow, .btn-secondary-glass {
    width: 100%;
  }
}

/* Block 2 */
.holographic-interface {
--glass-bg: rgba(20, 20, 30, 0.6);
--glass-border: rgba(255, 255, 255, 0.1);
--accent-primary: #00f2ff;
--accent-secondary: #7000ff;
--text-main: #ffffff;
--text-muted: #a0a0b0;
--grid-color: rgba(0, 242, 255, 0.05);
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
color: var(--text-main);
padding: 80px 20px;
position: relative;
overflow: hidden;
background: #05050a;
display: flex;
justify-content: center;
}

.grid-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(var(--grid-color) 1px, transparent 1px),
linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
background-size: 40px 40px;
z-index: 0;
mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 100%);
-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 100%);
pointer-events: none;
}

.interface-wrapper {
width: 100%;
max-width: 1200px;
position: relative;
z-index: 1;
}

.content-layer {
display: flex;
flex-direction: column;
gap: 40px;
}

.interface-header {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
border-left: 3px solid var(--accent-primary);
padding-left: 20px;
}

.system-status {
font-size: 0.85rem;
color: var(--accent-primary);
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 700;
display: flex;
align-items: center;
gap: 8px;
}

.system-status::before {
content: '';
display: block;
width: 8px;
height: 8px;
background-color: var(--accent-primary);
border-radius: 50%;
box-shadow: 0 0 10px var(--accent-primary);
animation: pulse 2s infinite;
}

.section-title {
font-size: 2.5rem;
font-weight: 800;
margin: 0;
background: linear-gradient(90deg, #fff, var(--text-muted));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
line-height: 1.1;
}

.bento-grid {
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: auto auto;
gap: 20px;
}

.bento-card {
background: var(--glass-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 24px;
padding: 24px;
display: flex;
flex-direction: column;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
border-color: rgba(255, 255, 255, 0.2);
}

.card-large {
grid-row: span 2;
}

.card-media-wrapper {
position: relative;
width: 100%;
height: 250px;
border-radius: 16px;
overflow: hidden;
margin-bottom: 20px;
}

.card-media {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.bento-card:hover .card-media {
transform: scale(1.05);
}

.media-overlay {
position: absolute;
top: 15px;
right: 15px;
display: flex;
align-items: center;
gap: 8px;
padding: 6px 12px;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(8px);
border-radius: 20px;
border: 1px solid var(--accent-primary);
}

.pulse-ring {
width: 8px;
height: 8px;
background-color: #00ff6a;
border-radius: 50%;
animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.processing-label {
font-size: 0.75rem;
color: #fff;
font-weight: 600;
letter-spacing: 0.5px;
}

.card-body {
flex-grow: 1;
display: flex;
flex-direction: column;
gap: 12px;
}

.card-title {
font-size: 1.5rem;
font-weight: 700;
margin: 0;
color: #fff;
}

.card-text {
font-size: 1rem;
line-height: 1.6;
color: var(--text-muted);
margin: 0;
}

.card-text.small {
font-size: 0.9rem;
}

.bento-column {
display: flex;
flex-direction: column;
gap: 20px;
}

.card-tall {
flex: 1;
justify-content: center;
gap: 16px;
background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
}

.icon-container {
width: 50px;
height: 50px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
color: #fff;
margin-bottom: 8px;
}

.bg-accent-1 {
background: linear-gradient(135deg, #ff0055, #ff5500);
box-shadow: 0 8px 16px rgba(255, 0, 85, 0.3);
}

.bg-accent-2 {
background: linear-gradient(135deg, #7000ff, #00d4ff);
box-shadow: 0 8px 16px rgba(112, 0, 255, 0.3);
}

.card-subtitle {
font-size: 1.1rem;
font-weight: 600;
margin: 0;
color: #fff;
}

.card-wide {
grid-column: 1 / -1;
flex-direction: row;
align-items: center;
justify-content: space-around;
background: linear-gradient(90deg, rgba(0, 242, 255, 0.05), rgba(112, 0, 255, 0.05));
border: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-container {
padding: 30px 24px;
}

.stat-item {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
flex: 1;
}

.stat-value {
font-size: 2.5rem;
font-weight: 800;
background: linear-gradient(180deg, #fff, var(--text-muted));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
line-height: 1;
margin-bottom: 5px;
}

.stat-label {
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--text-muted);
font-weight: 600;
}

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

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

@keyframes pulse-ring {
0% { transform: scale(0.33); }
80%, 100% { opacity: 0; }
}

@media (max-width: 992px) {
.bento-grid {
grid-template-columns: 1fr;
}
.card-large {
grid-row: auto;
}
.card-wide {
flex-direction: column;
gap: 30px;
}
.stat-divider {
width: 100%;
height: 1px;
}
}

/* Block 3 */
.adaptive-reality-layer {
position: relative;
width: 100%;
min-height: 85vh;
background: #030305;
color: #e0e0e0;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 4rem 2rem;
box-sizing: border-box;
}

.ar-wrapper {
max-width: 1200px;
width: 100%;
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 2;
}

.environment-scan-line {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, #00f2ff, transparent);
animation: scan 4s linear infinite;
z-index: 1;
opacity: 0.5;
}

@keyframes scan {
0% { top: 0%; opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { top: 100%; opacity: 0; }
}

.ar-content-layout {
display: flex;
flex-direction: row;
gap: 2rem;
width: 100%;
}

.narrative-block {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.ar-badge {
display: inline-flex;
align-items: center;
padding: 0.5rem 1rem;
background: rgba(0, 242, 255, 0.05);
border: 1px solid rgba(0, 242, 255, 0.3);
color: #00f2ff;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
font-size: 0.75rem;
letter-spacing: 0.15em;
text-transform: uppercase;
width: fit-content;
border-radius: 2px;
}

.ar-headline {
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
font-size: 3rem;
font-weight: 700;
line-height: 1.1;
margin: 0;
background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.ar-text {
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
font-size: 1.1rem;
line-height: 1.6;
color: #9ca3af;
margin: 0;
}

.feature-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 1rem;
}

.feature-item {
display: flex;
align-items: center;
gap: 1rem;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
font-size: 0.95rem;
color: #d1d5db;
}

.indicator {
width: 8px;
height: 8px;
border-radius: 50%;
background: #374151;
transition: all 0.3s ease;
}

.indicator.active {
background: #10b981;
box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.ar-trigger-btn {
margin-top: 1rem;
padding: 1rem 2rem;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.2);
color: #ffffff;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
font-size: 1rem;
letter-spacing: 0.05em;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.75rem;
width: fit-content;
border-radius: 4px;
}

.ar-trigger-btn:hover {
background: rgba(255, 255, 255, 0.05);
border-color: #ffffff;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.visual-synthesis-grid {
display: flex;
flex-direction: column;
gap: 1.5rem;
position: relative;
}

.grid-frame {
position: relative;
width: 100%;
aspect-ratio: 4/3;
border: 1px solid rgba(255, 255, 255, 0.1);
background: #0a0a0c;
overflow: hidden;
border-radius: 8px;
}

.border-glow {
box-shadow: 0 0 30px rgba(0, 242, 255, 0.05);
}

.corner-marker {
position: absolute;
width: 20px;
height: 20px;
border-color: #00f2ff;
border-style: solid;
transition: all 0.5s ease;
}

.corner-marker.top-left {
top: 20px;
left: 20px;
border-width: 2px 0 0 2px;
}

.corner-marker.top-right {
top: 20px;
right: 20px;
border-width: 2px 2px 0 0;
}

.corner-marker.bottom-left {
bottom: 20px;
left: 20px;
border-width: 0 0 2px 2px;
}

.corner-marker.bottom-right {
bottom: 20px;
right: 20px;
border-width: 0 2px 2px 0;
}

.grid-frame:hover .corner-marker {
width: 40px;
height: 40px;
opacity: 1;
box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

.ar-scene-image {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.7;
transition: opacity 0.5s ease, transform 0.5s ease;
}

.grid-frame:hover .ar-scene-image {
opacity: 0.9;
transform: scale(1.02);
}

.data-overlay-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}

.data-point {
position: absolute;
width: 12px;
height: 12px;
display: flex;
align-items: center;
justify-content: center;
}

.point-1 {
top: 30%;
left: 40%;
}

.point-2 {
bottom: 25%;
right: 30%;
}

.point-ping {
width: 100%;
height: 100%;
background-color: #00f2ff;
border-radius: 50%;
position: relative;
}

.point-ping::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
border-radius: 50%;
border: 1px solid #00f2ff;
animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
75%, 100% {
transform: translate(-50%, -50%) scale(3);
opacity: 0;
}
}

.tooltip-text {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(4px);
padding: 4px 8px;
font-size: 0.7rem;
color: #ffffff;
white-space: nowrap;
border-left: 2px solid #00f2ff;
opacity: 0;
transition: opacity 0.3s ease;
}

.grid-frame:hover .tooltip-text {
opacity: 1;
}

.system-metrics {
display: flex;
flex-direction: column;
gap: 0.75rem;
background: rgba(255, 255, 255, 0.02);
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 4px;
}

.metric-row {
display: flex;
justify-content: space-between;
font-family: 'Courier New', monospace;
font-size: 0.75rem;
color: #6b7280;
}

.metric-value {
color: #00f2ff;
font-weight: bold;
}

.progress-track {
width: 100%;
height: 4px;
background: #1f2937;
border-radius: 2px;
overflow: hidden;
}

.progress-fill {
height: 100%;
background: linear-gradient(90deg, #00f2ff, #3b82f6);
border-radius: 2px;
transition: width 1s ease-in-out;
}

@media (max-width: 992px) {
.ar-wrapper {
grid-template-columns: 1fr;
gap: 3rem;
}

.ar-content-layout {
flex-direction: column;
}

.ar-headline {
font-size: 2.25rem;
}

.grid-frame {
aspect-ratio: 16/9;
}
}

/* Block 4 */
.quantum-contact-layer {
position: relative;
width: 100%;
padding: 8rem 0;
background-color: #05050a;
color: #e0e6ed;
overflow: hidden;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.quantum-wrapper {
position: relative;
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
z-index: 2;
}

.grid-mesh {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: 
linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
background-size: 40px 40px;
z-index: 1;
pointer-events: none;
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.narrative-panel {
display: flex;
flex-direction: column;
gap: 2rem;
}

.protocol-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
width: fit-content;
background: rgba(0, 243, 255, 0.1);
border: 1px solid rgba(0, 243, 255, 0.3);
border-radius: 2rem;
color: #00f3ff;
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
}

.panel-title {
font-size: 3rem;
line-height: 1.1;
font-weight: 700;
margin: 0;
background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.panel-text {
font-size: 1.1rem;
line-height: 1.6;
color: #94a3b8;
margin: 0;
}

.transmission-steps {
display: flex;
flex-direction: column;
gap: 0;
position: relative;
}

.step-connector {
width: 2px;
height: 2rem;
background: linear-gradient(to bottom, #00f3ff, transparent);
margin-left: 1rem;
}

.step-node {
display: flex;
align-items: center;
gap: 1rem;
}

.node-icon {
width: 2.5rem;
height: 2.5rem;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: #00f3ff;
font-size: 0.9rem;
flex-shrink: 0;
transition: all 0.3s ease;
}

.step-node:hover .node-icon {
background: rgba(0, 243, 255, 0.2);
box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
border-color: #00f3ff;
}

.node-content {
display: flex;
flex-direction: column;
}

.step-count {
font-size: 0.75rem;
color: #00f3ff;
opacity: 0.7;
font-weight: 700;
}

.step-label {
font-size: 1rem;
color: #e0e6ed;
font-weight: 500;
}

.form-hologram {
position: relative;
background: rgba(20, 20, 35, 0.6);
backdrop-filter: blur(12px);
padding: 2.5rem;
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
overflow: hidden;
}

.frame-borders {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 10;
}

.border-corner {
position: absolute;
width: 10px;
height: 10px;
border: 2px solid #00f3ff;
transition: all 0.3s ease;
}

.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.quantum-form {
display: flex;
flex-direction: column;
gap: 2rem;
position: relative;
z-index: 5;
}

.form-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}

.form-title {
margin: 0;
font-size: 1.5rem;
color: #fff;
font-weight: 600;
}

.status-indicator {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.8rem;
color: #4ade80;
font-weight: 500;
}

.led {
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #4ade80;
box-shadow: 0 0 10px #4ade80;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
70% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.input-group-wrapper {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.floating-label-field {
position: relative;
}

.cyber-input {
width: 100%;
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 0.5rem;
padding: 1rem 1rem 1rem 1rem;
color: #fff;
font-size: 1rem;
outline: none;
transition: all 0.3s ease;
}

.cyber-input:focus {
border-color: #00f3ff;
box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.1);
background: rgba(0, 243, 255, 0.02);
}

.floating-label-field label {
position: absolute;
left: 1rem;
top: 1rem;
color: #64748b;
pointer-events: none;
transition: all 0.3s ease;
font-size: 1rem;
background: transparent;
padding: 0 0.25rem;
}

.cyber-input:focus ~ label,
.cyber-input:not(:placeholder-shown) ~ label {
top: -0.6rem;
left: 0.8rem;
font-size: 0.75rem;
color: #00f3ff;
background: #0a0a12;
}

.input-line {
position: absolute;
bottom: 0;
left: 0;
width: 0%;
height: 2px;
background: #00f3ff;
transition: width 0.4s ease;
}

.cyber-input:focus ~ .input-line {
width: calc(100% - 2rem);
margin: 0 1rem;
box-shadow: 0 0 10px #00f3ff;
}

.submit-btn {
position: relative;
background: transparent;
color: #00f3ff;
border: 1px solid #00f3ff;
padding: 1rem 2rem;
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
cursor: pointer;
border-radius: 0.5rem;
overflow: hidden;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
margin-top: 1rem;
}

.submit-btn:hover {
background: rgba(0, 243, 255, 0.1);
box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
transform: translateY(-2px);
}

.btn-glow {
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s ease;
}

.submit-btn:hover .btn-glow {
left: 100%;
}

@media (max-width: 991px) {
.contact-layout {
grid-template-columns: 1fr;
gap: 3rem;
}

.panel-title {
font-size: 2.5rem;
}
}
