
/* Block 1 */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/hero-bg-2026.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg, 
      rgba(13, 17, 23, 0.95) 0%, 
      rgba(13, 17, 23, 0.75) 50%, 
      rgba(13, 17, 23, 0.6) 100%
    );
    z-index: 1;
  }

  .hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
  }

  .hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  }

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

  .hero-title {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
  }

  .text-gradient {
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
    max-width: 600px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
  }

  .btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #0d6efd;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(13, 110, 253, 0.4);
    border: 1px solid transparent;
  }

  .btn-primary-custom:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(13, 110, 253, 0.5);
  }

  .btn-icon {
    margin-left: 8px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
  }

  .btn-primary-custom:hover .btn-icon {
    transform: translateX(4px);
  }

  .btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

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

  .hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
  }

  .meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .meta-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0d6efd;
  }

  .meta-text {
    display: flex;
    flex-direction: column;
  }

  .meta-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .meta-value {
    font-size: 0.9rem;
    color: #e2e8f0;
    font-weight: 600;
  }

  .meta-separator {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
  }

  .stats-group {
    display: flex;
    gap: 24px;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
  }

  .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
  }

  .stat-label {
    font-size: 0.75rem;
    color: #64748b;
  }

  @keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(13, 110, 253, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0); }
  }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    .meta-separator {
      display: none;
    }
  }

/* Block 2 */
.future-ecosystem {
--ecosystem-bg: #050510;
--ecosystem-text: #e0e0e0;
--ecosystem-accent: #00f2ff;
--ecosystem-secondary: #7000ff;
--card-bg: rgba(255, 255, 255, 0.03);
--card-border: rgba(255, 255, 255, 0.08);
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background-color: var(--ecosystem-bg);
color: var(--ecosystem-text);
padding: 120px 0;
position: relative;
overflow: hidden;
}

.future-ecosystem::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle at center, rgba(112, 0, 255, 0.1) 0%, transparent 50%);
z-index: 0;
pointer-events: none;
}

.container-ecosystem {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
position: relative;
z-index: 1;
}

.ecosystem-header {
text-align: center;
margin-bottom: 80px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.ecosystem-tag {
display: inline-block;
padding: 8px 16px;
border-radius: 50px;
background: rgba(0, 242, 255, 0.1);
color: var(--ecosystem-accent);
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 24px;
border: 1px solid rgba(0, 242, 255, 0.2);
box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

.ecosystem-title {
font-size: 3.5rem;
font-weight: 700;
line-height: 1.1;
margin-bottom: 24px;
background: linear-gradient(135deg, #ffffff 0%, #a5a5a5 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.ecosystem-lead {
font-size: 1.25rem;
line-height: 1.6;
color: #a0a0b0;
}

.ecosystem-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 32px;
margin-bottom: 100px;
}

.ecosystem-card {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 24px;
padding: 40px;
display: flex;
flex-direction: column;
transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

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

.card-neural:hover {
border-color: var(--ecosystem-accent);
box-shadow: 0 20px 40px rgba(0, 242, 255, 0.1);
}

.card-quantum:hover {
border-color: var(--ecosystem-secondary);
box-shadow: 0 20px 40px rgba(112, 0, 255, 0.1);
}

.card-holographic:hover {
border-color: #ff0055;
box-shadow: 0 20px 40px rgba(255, 0, 85, 0.1);
}

.card-icon-wrapper {
width: 64px;
height: 64px;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
font-size: 1.75rem;
}

.card-neural .card-icon-wrapper {
background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(0, 242, 255, 0));
color: var(--ecosystem-accent);
}

.card-quantum .card-icon-wrapper {
background: linear-gradient(135deg, rgba(112, 0, 255, 0.1), rgba(112, 0, 255, 0));
color: var(--ecosystem-secondary);
}

.card-holographic .card-icon-wrapper {
background: linear-gradient(135deg, rgba(255, 0, 85, 0.1), rgba(255, 0, 85, 0));
color: #ff0055;
}

.card-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 16px;
color: #fff;
}

.card-desc {
font-size: 1rem;
line-height: 1.6;
color: #a0a0b0;
margin-bottom: 32px;
flex-grow: 1;
}

.card-link {
color: #fff;
text-decoration: none;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 8px;
transition: gap 0.3s ease;
}

.card-link i {
font-size: 0.8rem;
transition: transform 0.3s ease;
}

.ecosystem-card:hover .card-link {
gap: 12px;
}

.ecosystem-card:hover .card-link i {
transform: translateX(4px);
}

.ecosystem-visual {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
background: rgba(255, 255, 255, 0.02);
border-radius: 32px;
padding: 40px;
border: 1px solid var(--card-border);
}

.visual-wrapper {
position: relative;
border-radius: 20px;
overflow: hidden;
aspect-ratio: 4/3;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.visual-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
display: block;
}

.visual-wrapper:hover .visual-image {
transform: scale(1.05);
}

.visual-overlay {
position: absolute;
bottom: 20px;
left: 20px;
right: 20px;
background: rgba(5, 5, 16, 0.85);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
padding: 16px 24px;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: space-between;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-item {
display: flex;
flex-direction: column;
}

.overlay-label {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.5px;
color: #888;
margin-bottom: 4px;
}

.overlay-value {
font-size: 1.1rem;
font-weight: 700;
color: #fff;
font-family: 'Courier New', monospace;
}

.status-optimal {
color: #00ff9d;
text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.overlay-line {
width: 1px;
height: 30px;
background: rgba(255, 255, 255, 0.1);
}

.visual-content {
padding: 20px;
}

.visual-title {
font-size: 2rem;
font-weight: 700;
color: #fff;
margin-bottom: 20px;
line-height: 1.2;
}

.visual-text {
font-size: 1.1rem;
line-height: 1.7;
color: #a0a0b0;
margin-bottom: 32px;
}

.visual-features {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 16px;
}

.feature-item {
display: flex;
align-items: center;
gap: 12px;
font-size: 1rem;
color: #d0d0d0;
}

.feature-icon {
color: var(--ecosystem-accent);
font-size: 1.1rem;
}

@media (max-width: 992px) {
.ecosystem-title {
font-size: 2.5rem;
}
.ecosystem-visual {
grid-template-columns: 1fr;
gap: 40px;
}
}

@media (max-width: 576px) {
.ecosystem-title {
font-size: 2rem;
}
.ecosystem-grid {
grid-template-columns: 1fr;
}
.visual-overlay {
flex-direction: column;
align-items: flex-start;
gap: 12px;
}
.overlay-line {
width: 100%;
height: 1px;
}
}

/* Block 3 */
.immersive-analytics {
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
background-color: #050505;
color: #e0e0e0;
padding: 6rem 2rem;
position: relative;
overflow: hidden;
}

.analytics-container {
max-width: 1400px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 4rem;
z-index: 1;
}

.analytics-header {
display: flex;
flex-direction: column;
gap: 1.5rem;
border-left: 2px solid #3b82f6;
padding-left: 2rem;
}

.header-labels {
display: flex;
align-items: center;
gap: 1.5rem;
flex-wrap: wrap;
}

.analytics-tag {
background: rgba(59, 130, 246, 0.1);
color: #60a5fa;
padding: 0.5rem 1rem;
border-radius: 4px;
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
border: 1px solid rgba(59, 130, 246, 0.2);
}

.analytics-status {
display: flex;
align-items: center;
gap: 0.5rem;
color: #10b981;
font-size: 0.875rem;
font-weight: 500;
}

.status-dot {
width: 8px;
height: 8px;
background-color: #10b981;
border-radius: 50%;
}

.pulse {
animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.analytics-title {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 700;
margin: 0;
line-height: 1.1;
background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.analytics-subtitle {
font-size: 1.25rem;
color: #94a3b8;
max-width: 700px;
line-height: 1.6;
margin: 0;
}

.analytics-display {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 2.5rem;
align-items: stretch;
}

.visual-viewport {
background: #0f172a;
border-radius: 16px;
position: relative;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
min-height: 500px;
}

.viewport-image {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.8;
transition: transform 10s ease-in-out;
}

.visual-viewport:hover .viewport-image {
transform: scale(1.05);
}

.viewport-ui {
position: absolute;
inset: 0;
pointer-events: none;
}

.ui-panel {
position: absolute;
background: rgba(15, 23, 42, 0.8);
backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 1rem;
border-radius: 8px;
min-width: 140px;
}

.panel-top-left {
top: 2rem;
left: 2rem;
border-left: 3px solid #3b82f6;
}

.panel-bottom-right {
bottom: 2rem;
right: 2rem;
text-align: right;
border-right: 3px solid #10b981;
}

.ui-label {
display: block;
font-size: 0.75rem;
color: #94a3b8;
margin-bottom: 0.25rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.ui-value {
font-size: 1.125rem;
font-weight: 700;
color: #f8fafc;
font-family: monospace;
}

.scanner-line {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, #3b82f6, transparent);
animation: scan 4s linear infinite;
opacity: 0.5;
}

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

.analytics-insights {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.insight-card {
background: #111827;
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 16px;
padding: 2rem;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.insight-card:hover {
border-color: rgba(59, 130, 246, 0.4);
box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
transform: translateY(-2px);
}

.insight-header {
display: flex;
align-items: center;
gap: 1rem;
}

.insight-icon {
width: 48px;
height: 48px;
background: rgba(59, 130, 246, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #3b82f6;
font-size: 1.25rem;
}

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

.insight-text {
color: #94a3b8;
line-height: 1.6;
margin: 0;
}

.progress-wrapper {
margin-top: auto;
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.progress-label {
font-size: 0.75rem;
text-transform: uppercase;
color: #64748b;
letter-spacing: 0.05em;
display: flex;
justify-content: space-between;
}

.custom-progress {
height: 6px;
background: #1e293b;
border-radius: 3px;
overflow: hidden;
position: relative;
}

.progress-fill {
height: 100%;
background: linear-gradient(90deg, #3b82f6, #06b6d4);
border-radius: 3px;
position: relative;
}

.progress-fill::after {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 5px;
background: #ffffff;
box-shadow: 0 0 10px #ffffff;
opacity: 0.7;
}

.progress-percentage {
font-family: monospace;
font-size: 1rem;
color: #3b82f6;
font-weight: 700;
text-align: right;
}

.insight-list {
display: flex;
flex-direction: column;
gap: 1rem;
}

.list-item {
display: flex;
gap: 1rem;
align-items: flex-start;
padding: 1.25rem;
background: rgba(255, 255, 255, 0.02);
border-radius: 12px;
border: 1px solid transparent;
transition: all 0.2s ease;
}

.list-item:hover {
background: rgba(255, 255, 255, 0.04);
border-color: rgba(255, 255, 255, 0.1);
}

.item-marker {
min-width: 8px;
height: 8px;
background-color: #334155;
border-radius: 50%;
margin-top: 8px;
transition: background-color 0.3s ease;
}

.list-item:hover .item-marker {
background-color: #3b82f6;
box-shadow: 0 0 8px #3b82f6;
}

.item-content {
display: flex;
flex-direction: column;
gap: 0.25rem;
}

.item-title {
font-size: 1rem;
font-weight: 600;
color: #e2e8f0;
margin: 0;
}

.item-desc {
font-size: 0.875rem;
color: #64748b;
margin: 0;
}

@media (max-width: 1024px) {
.analytics-display {
grid-template-columns: 1fr;
}
.visual-viewport {
min-height: 400px;
}
}

/* Block 4 */
.futuristic-contact {
  --primary-glow: #00f2ff;
  --secondary-glow: #7000ff;
  --bg-deep: #050510;
  --surface-dark: #0f1020;
  --text-light: #e0e6ed;
  --text-dim: #94a3b8;
  --border-color: #2a2f45;
  width: 100%;
  padding: 6rem 1rem;
  background: radial-gradient(circle at 50% 0%, #1a1b3a 0%, var(--bg-deep) 60%);
  color: var(--text-light);
  font-family: system-ui, -apple-system, sans-serif;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--surface-dark);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

.contact-visual {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.connection-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.contact-wrapper:hover .connection-image {
  transform: scale(1.05);
}

.visual-overlay-visual {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(5, 5, 16, 0.7);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-pulse {
  position: relative;
  width: 12px;
  height: 12px;
}

.pulse-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #00ff88;
  border-radius: 50%;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #00ff88;
  border-radius: 50%;
  animation: pulse-animation 2s infinite;
  z-index: 1;
}

@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

.status-text {
  display: flex;
  flex-direction: column;
}

.status-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-indicator {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.contact-form-container {
  padding: 2.5rem;
}

.form-header {
  margin-bottom: 2rem;
  text-align: left;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #fff 30%, var(--primary-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-subtitle {
  color: var(--text-dim);
  line-height: 1.6;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.input-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-left: 4px;
}

.input-field-box {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: var(--text-dim);
  z-index: 2;
  transition: color 0.3s ease;
}

.custom-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.custom-input:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-glow);
  box-shadow: 0 0 0 4px rgba(0, 242, 255, 0.1);
}

.custom-input:focus + .input-icon {
  color: var(--primary-glow);
}

.custom-input::placeholder {
  color: rgba(148, 163, 184, 0.4);
}

.submit-btn {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: linear-gradient(90deg, var(--secondary-glow), var(--primary-glow));
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 242, 255, 0.4);
}

.btn-icon-end {
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon-end {
  transform: translateX(4px);
}

.form-footer {
  margin-top: 2rem;
  text-align: center;
}

.encryption-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .contact-visual {
    height: auto;
    min-height: 500px;
  }

  .contact-form-container {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
