
/* Block 1 */
.hero-visual-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
  background-color: #0f172a;
}

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-visual-section:hover .hero-visual-image {
  transform: scale(1.03);
}

.hero-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(37, 99, 235, 0.4) 100%);
  z-index: 2;
  backdrop-filter: blur(2px);
}

.hero-visual-content {
  position: relative;
  z-index: 3;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-visual-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, #ffffff, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-visual-text {
  font-size: 1.25rem;
  color: #e2e8f0;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.7;
  font-weight: 300;
}

.hero-visual-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #2563eb;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual-button:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
  color: #ffffff;
}

.hero-visual-button .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.hero-visual-button:hover .btn-icon {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .hero-visual-title {
    font-size: 2.8rem;
  }
  .hero-visual-section {
    min-height: 75vh;
  }
}

@media (max-width: 768px) {
  .hero-visual-title {
    font-size: 2.2rem;
  }
  .hero-visual-text {
    font-size: 1.1rem;
  }
  .hero-visual-section {
    min-height: auto;
    padding: 6rem 0;
  }
  .hero-visual-button {
    width: 100%;
  }
}

/* Block 2 */
.futuristic-feature-block {
padding: 8rem 5%;
background-color: #050508;
background-image: 
radial-gradient(circle at 15% 50%, rgba(56, 189, 248, 0.08) 0%, transparent 25%),
radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 25%);
position: relative;
overflow: hidden;
}
.futuristic-feature-block::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.grid-layout {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: minmax(240px, auto);
gap: 1.5rem;
max-width: 1400px;
margin: 0 auto;
}
@media (max-width: 992px) {
.grid-layout {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 576px) {
.grid-layout {
grid-template-columns: 1fr;
}
}
.grid-item-large {
grid-column: span 2;
grid-row: span 2;
}
.grid-item-tall {
grid-row: span 2;
}
.grid-item-wide {
grid-column: span 2;
}
.card-glass {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 24px;
padding: 2rem;
display: flex;
flex-direction: column;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
height: 100%;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.card-glass:hover {
background: rgba(255, 255, 255, 0.04);
border-color: rgba(56, 189, 248, 0.3);
transform: translateY(-5px);
box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}
.card-badge {
display: inline-flex;
align-items: center;
padding: 0.5rem 1rem;
background: rgba(56, 189, 248, 0.1);
color: #38bdf8;
border-radius: 50px;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
margin-bottom: 1.5rem;
width: fit-content;
}
.card-content {
flex: 1;
z-index: 2;
}
.card-title {
font-size: 2.5rem;
font-weight: 700;
color: #fff;
margin-bottom: 1rem;
line-height: 1.1;
letter-spacing: -0.02em;
background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.card-desc {
color: #94a3b8;
font-size: 1rem;
line-height: 1.6;
margin-bottom: 2rem;
max-width: 90%;
}
.card-link-wrapper {
margin-top: auto;
}
.card-link {
color: #38bdf8;
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: gap 0.3s ease;
}
.card-link:hover {
gap: 1rem;
}
.card-visual {
position: relative;
margin-top: 2rem;
height: 200px;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.card-visual img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.card-glass:hover .card-visual img {
transform: scale(1.05);
}
.card-vertical {
justify-content: space-between;
padding: 0;
overflow: hidden;
position: relative;
}
.card-visual-top {
height: 60%;
width: 100%;
overflow: hidden;
}
.card-visual-top img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.card-vertical:hover .card-visual-top img {
transform: scale(1.1);
}
.card-content-bottom {
padding: 1.5rem;
background: linear-gradient(to top, rgba(5,5,8,1) 0%, rgba(5,5,8,0.8) 100%);
height: 40%;
display: flex;
flex-direction: column;
justify-content: center;
}
.card-subtitle {
font-size: 1.25rem;
color: #fff;
margin-bottom: 0.5rem;
}
.card-text-small {
color: #94a3b8;
font-size: 0.9rem;
line-height: 1.4;
}
.content-row {
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
}
.text-block {
flex: 1;
padding-right: 1rem;
}
.icon-block {
font-size: 2.5rem;
color: rgba(139, 92, 246, 0.4);
transition: color 0.3s ease;
}
.card-glass:hover .icon-block {
color: #8b5cf6;
}
.card-simple {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
gap: 1rem;
}
.icon-circle {
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: #38bdf8;
border: 1px solid rgba(255,255,255,0.1);
margin-bottom: 0.5rem;
}
.card-heading {
color: #fff;
font-size: 1.1rem;
margin: 0;
}
.card-meta {
color: #64748b;
font-size: 0.8rem;
margin: 0;
text-transform: uppercase;
letter-spacing: 0.05em;
}
@media (max-width: 768px) {
.card-title {
font-size: 1.8rem;
}
.grid-item-large, .grid-item-tall, .grid-item-wide {
grid-column: span 1;
grid-row: auto;
}
}

/* Block 3 */
.immersive-analytics-section {
padding: 6rem 0;
background: #0a0e17;
color: #ffffff;
position: relative;
overflow: hidden;
}

.section-header {
margin-bottom: 4rem;
text-align: left;
max-width: 800px;
}

.overline-tag {
display: inline-block;
padding: 0.4rem 1rem;
background: rgba(56, 189, 248, 0.1);
color: #38bdf8;
border: 1px solid rgba(56, 189, 248, 0.3);
border-radius: 50px;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.15em;
margin-bottom: 1.5rem;
font-weight: 700;
}

.section-title {
font-size: 3rem;
font-weight: 800;
margin-bottom: 1rem;
background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
line-height: 1.1;
}

.section-lead {
font-size: 1.25rem;
color: #94a3b8;
max-width: 600px;
line-height: 1.6;
}

.analytics-grid {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: auto auto;
gap: 1.5rem;
}

.analytics-card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 1.5rem;
padding: 2rem;
display: flex;
flex-direction: column;
transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
position: relative;
overflow: hidden;
}

.analytics-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
border-color: rgba(56, 189, 248, 0.3);
}

.card-primary {
grid-column: span 7;
}

.card-secondary {
grid-column: span 5;
}

.card-tertiary {
grid-column: span 5;
grid-row: span 1;
}

.analytics-info-panel {
grid-column: span 7;
background: #111827;
border-radius: 1.5rem;
padding: 2.5rem;
display: flex;
flex-direction: column;
justify-content: space-between;
border: 1px solid #1f2937;
}

.card-image-wrapper {
width: 100%;
height: 200px;
margin-bottom: 2rem;
border-radius: 1rem;
overflow: hidden;
}

.card-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}

.analytics-card:hover .card-image-wrapper img {
transform: scale(1.05);
}

.card-heading {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
color: #f8fafc;
}

.card-text {
color: #94a3b8;
margin-bottom: 2rem;
font-size: 1rem;
line-height: 1.6;
}

.card-action {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: #38bdf8;
text-decoration: none;
font-weight: 600;
margin-top: auto;
transition: gap 0.3s ease;
}

.card-action:hover {
gap: 0.8rem;
color: #7dd3fc;
}

.card-secondary .card-icon-box {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #6366f1, #8b5cf6);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
font-size: 1.5rem;
color: white;
box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.feature-list {
list-style: none;
padding: 0;
margin-bottom: 2rem;
}

.feature-list li {
display: flex;
align-items: center;
gap: 0.75rem;
color: #cbd5e1;
margin-bottom: 0.75rem;
font-size: 0.95rem;
}

.feature-list li i {
color: #10b981;
}

.card-tertiary {
position: relative;
z-index: 1;
}

.card-visual-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.4;
}

.card-visual-layer img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(100%) contrast(120%);
}

.card-content-inner {
position: relative;
z-index: 2;
background: rgba(10, 14, 23, 0.85);
height: 100%;
border-radius: 1rem;
padding: 1.5rem;
display: flex;
flex-direction: column;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.05);
}

.data-stat-row {
margin-top: auto;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
align-items: baseline;
gap: 1rem;
}

.stat-value {
font-size: 2.5rem;
font-weight: 800;
color: #22d3ee;
line-height: 1;
}

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

.panel-title {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 2rem;
color: #e2e8f0;
display: flex;
align-items: center;
gap: 0.5rem;
}

.panel-title::before {
content: '';
width: 8px;
height: 8px;
background: #10b981;
border-radius: 50%;
display: inline-block;
box-shadow: 0 0 10px #10b981;
}

.progress-group {
margin-bottom: 2rem;
}

.progress-label {
display: block;
font-size: 0.875rem;
color: #94a3b8;
margin-bottom: 0.75rem;
display: flex;
justify-content: space-between;
}

.progress-value {
font-family: monospace;
color: #38bdf8;
}

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

.progress-fill {
height: 100%;
border-radius: 3px;
background: #38bdf8;
width: 0;
animation: loadBar 2s ease-out forwards;
}

.fill-1 {
width: 75%;
background: linear-gradient(90deg, #38bdf8, #818cf8);
}

.fill-2 {
width: 42%;
background: linear-gradient(90deg, #f472b6, #fb7185);
}

@keyframes loadBar {
from { width: 0; }
}

.panel-footer {
padding-top: 1.5rem;
border-top: 1px solid #1f2937;
}

.text-link {
color: #ffffff;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: color 0.3s ease;
}

.text-link:hover {
color: #38bdf8;
}

@media (max-width: 992px) {
.card-primary, .card-secondary, .card-tertiary, .analytics-info-panel {
grid-column: span 12;
}
.section-title {
font-size: 2.25rem;
}
}

/* Block 4 */
.future-contact-zone {
position: relative;
padding: 120px 0;
overflow: hidden;
background-color: #0b0c15;
color: #e0e6ed;
}
.zone-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
pointer-events: none;
}
.orb {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.4;
}
.orb-1 {
top: -10%;
right: -5%;
width: 400px;
height: 400px;
background: radial-gradient(circle, #4361ee 0%, rgba(67, 97, 238, 0) 70%);
animation: floatOrb 10s ease-in-out infinite alternate;
}
.orb-2 {
bottom: -10%;
left: -5%;
width: 350px;
height: 350px;
background: radial-gradient(circle, #7209b7 0%, rgba(114, 9, 183, 0) 70%);
animation: floatOrb 12s ease-in-out infinite alternate-reverse;
}
@keyframes floatOrb {
0% { transform: translate(0, 0); }
100% { transform: translate(-30px, 50px); }
}
.contact-grid-layout {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.contact-intro {
padding-right: 20px;
}
.intro-accent {
display: inline-block;
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
color: #4cc9f0;
margin-bottom: 24px;
border-bottom: 2px solid #4cc9f0;
padding-bottom: 4px;
}
.intro-title {
font-size: 3rem;
font-weight: 800;
line-height: 1.1;
margin-bottom: 24px;
background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.intro-text {
font-size: 1.125rem;
line-height: 1.6;
color: #94a3b8;
margin-bottom: 40px;
}
.connection-stats {
display: flex;
gap: 24px;
}
.stat-item {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.stat-item i {
font-size: 1.5rem;
color: #4cc9f0;
margin-bottom: 8px;
}
.stat-label {
font-size: 0.875rem;
font-weight: 600;
color: #cbd5e1;
}
.form-wrapper {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
padding: 40px;
backdrop-filter: blur(20px);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.tech-form {
display: flex;
flex-direction: column;
gap: 24px;
}
.form-group {
position: relative;
}
.input-cyber {
width: 100%;
background: rgba(15, 23, 42, 0.6);
border: 1px solid #334155;
border-radius: 12px;
padding: 16px 16px 16px 16px;
color: #fff;
font-size: 1rem;
outline: none;
transition: all 0.3s ease;
appearance: none;
}
.input-cyber:focus {
border-color: #4361ee;
background: rgba(15, 23, 42, 0.9);
box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.15);
}
.input-cyber::placeholder {
color: transparent;
}
.floating-label label {
position: absolute;
left: 16px;
top: 16px;
color: #94a3b8;
font-size: 1rem;
pointer-events: none;
transition: all 0.3s ease;
transform-origin: left top;
}
.input-cyber:focus + label,
.input-cyber:not(:placeholder-shown) + label {
transform: translateY(-28px) scale(0.85);
color: #4cc9f0;
background-color: #0b0c15;
padding: 0 6px;
border-radius: 4px;
}
.input-border {
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, #4361ee, #4cc9f0);
transition: width 0.4s ease;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
}
.input-cyber:focus ~ .input-border {
width: 100%;
}
.submit-btn {
position: relative;
margin-top: 16px;
background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
color: white;
border: none;
padding: 18px 32px;
border-radius: 12px;
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
transition: all 0.3s ease;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}
.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px -10px rgba(67, 97, 238, 0.6);
}
.submit-btn:active {
transform: translateY(0);
}
.btn-icon {
transition: transform 0.3s ease;
}
.submit-btn:hover .btn-icon {
transform: translateX(4px);
}
.btn-glitch {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
transform: translateX(-100%);
transition: transform 0.4s;
}
.submit-btn:hover .btn-glitch {
transform: translateX(100%);
}
@media (max-width: 991px) {
.contact-grid-layout {
grid-template-columns: 1fr;
gap: 60px;
}
.intro-title {
font-size: 2.5rem;
}
.form-wrapper {
padding: 30px 20px;
}
}
