
/* Block 1 */
.hero-futuristic {
position: relative;
width: 100%;
min-height: 90vh;
display: flex;
align-items: center;
background-color: #0f172a;
overflow: hidden;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

.hero-content-wrapper {
max-width: 650px;
animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
opacity: 0;
transform: translateY(30px);
}

.hero-badge {
display: inline-flex;
align-items: center;
padding: 0.5rem 1.25rem;
margin-bottom: 1.5rem;
background: rgba(13, 202, 240, 0.1);
border: 1px solid rgba(13, 202, 240, 0.3);
border-radius: 9999px;
color: #0dcaf0;
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
backdrop-filter: blur(4px);
}

.hero-title {
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-text {
font-size: 1.125rem;
line-height: 1.7;
color: #94a3b8;
margin-bottom: 2.5rem;
max-width: 500px;
}

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

.btn-primary-modern {
display: inline-flex;
justify-content: center;
align-items: center;
padding: 1rem 2.5rem;
background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
color: #ffffff;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
border-radius: 12px;
transition: all 0.3s ease;
box-shadow: 0 10px 25px -5px rgba(13, 110, 253, 0.4);
}

.btn-primary-modern:hover {
transform: translateY(-2px);
box-shadow: 0 15px 30px -5px rgba(13, 110, 253, 0.5);
background: linear-gradient(135deg, #3b8bfd 0%, #0d6efd 100%);
}

.btn-secondary-modern {
display: inline-flex;
align-items: center;
gap: 0.75rem;
padding: 1rem 2rem;
background: rgba(255, 255, 255, 0.05);
color: #ffffff;
text-decoration: none;
font-weight: 500;
font-size: 1rem;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
backdrop-filter: blur(8px);
}

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

.btn-icon {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
background: #ffffff;
color: #0f172a;
border-radius: 50%;
font-size: 0.75rem;
transition: transform 0.3s ease;
}

.btn-secondary-modern:hover .btn-icon {
transform: scale(1.1);
}

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

.hero-image {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.6;
filter: grayscale(20%) contrast(110%);
transition: transform 10s ease;
}

.hero-futuristic:hover .hero-image {
transform: scale(1.05);
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, #0f172a 0%, rgba(15, 23, 42, 0.85) 40%, rgba(15, 23, 42, 0.4) 100%);
}

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

@media (max-width: 991px) {
.hero-title {
font-size: 2.5rem;
}

.hero-container {
padding: 0 1.5rem;
}

.hero-overlay {
background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, #0f172a 100%);
}

.hero-image {
opacity: 0.4;
}
}

/* Block 2 */
.future-logistics-core {
--core-bg: #0b0e14;
--card-bg: rgba(255, 255, 255, 0.03);
--card-border: rgba(255, 255, 255, 0.1);
--accent-primary: #00f2ff;
--accent-secondary: #7000ff;
--text-main: #ffffff;
--text-muted: #94a3b8;
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
color: var(--text-main);
padding: 6rem 0;
background-color: var(--core-bg);
background-image: 
radial-gradient(circle at 15% 50%, rgba(112, 0, 255, 0.08), transparent 25%),
radial-gradient(circle at 85% 30%, rgba(0, 242, 255, 0.05), transparent 25%);
overflow: hidden;
}

.core-container {
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
}

.core-header {
text-align: center;
margin-bottom: 4rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.core-label {
display: inline-flex;
align-items: center;
padding: 0.5rem 1rem;
background: rgba(0, 242, 255, 0.1);
border: 1px solid rgba(0, 242, 255, 0.2);
border-radius: 100px;
color: var(--accent-primary);
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
margin-bottom: 1.5rem;
box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

.core-title {
font-size: clamp(2rem, 5vw, 3rem);
font-weight: 800;
line-height: 1.1;
margin-bottom: 1rem;
background: linear-gradient(135deg, #fff 30%, var(--text-muted) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.core-subtitle {
color: var(--text-muted);
font-size: 1.125rem;
line-height: 1.6;
}

.tech-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
}

.tech-card {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 1.5rem;
padding: 1.5rem;
display: flex;
flex-direction: column;
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.27), border-color 0.3s ease, box-shadow 0.3s ease;
backdrop-filter: blur(10px);
overflow: hidden;
height: 100%;
}

.tech-card:hover {
transform: translateY(-8px);
border-color: rgba(0, 242, 255, 0.3);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 242, 255, 0.1);
}

.card-visual {
width: 100%;
height: 200px;
border-radius: 1rem;
overflow: hidden;
margin-bottom: 1.5rem;
position: relative;
}

.card-visual img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
filter: grayscale(40%) contrast(110%);
}

.tech-card:hover .card-visual img {
transform: scale(1.05);
filter: grayscale(0%) contrast(100%);
}

.visual-accent {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, var(--core-bg) 0%, transparent 100%);
pointer-events: none;
}

.card-content {
flex: 1;
display: flex;
flex-direction: column;
}

.card-icon {
width: 48px;
height: 48px;
border-radius: 12px;
background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
display: flex;
align-items: center;
justify-content: center;
color: var(--accent-primary);
font-size: 1.25rem;
margin-bottom: 1rem;
border: 1px solid rgba(255,255,255,0.05);
}

.card-title {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: var(--text-main);
}

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

.core-footer {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 3rem;
padding-top: 3rem;
border-top: 1px solid var(--card-border);
}

.stat-item {
text-align: center;
}

.stat-number {
display: block;
font-size: 2.5rem;
font-weight: 800;
background: linear-gradient(180deg, #fff, var(--text-muted));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 0.25rem;
font-variant-numeric: tabular-nums;
}

.stat-label {
font-size: 0.875rem;
color: var(--accent-primary);
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: 600;
}

@media (max-width: 768px) {
.core-footer {
gap: 2rem;
}
.stat-number {
font-size: 2rem;
}
}

/* Block 3 */
.global-connect-mesh {
position: relative;
width: 100%;
padding: 6rem 0;
background-color: #050505;
background-image: 
radial-gradient(circle at 15% 50%, rgba(20, 80, 255, 0.08) 0%, transparent 40%),
radial-gradient(circle at 85% 30%, rgba(0, 255, 200, 0.05) 0%, transparent 40%);
overflow: hidden;
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
color: #ffffff;
}

.mesh-container {
max-width: 1280px;
margin: 0 auto;
padding: 0 2rem;
position: relative;
z-index: 2;
}

.mesh-header {
text-align: center;
margin-bottom: 5rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.section-tag {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.5rem 1.25rem;
margin-bottom: 1.5rem;
border: 1px solid rgba(0, 255, 200, 0.3);
background: rgba(0, 255, 200, 0.05);
border-radius: 100px;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.15em;
color: #00ffc8;
box-shadow: 0 0 15px rgba(0, 255, 200, 0.1);
}

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

.section-desc {
font-size: 1.15rem;
line-height: 1.6;
color: #94a3b8;
}

.mesh-visual-wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-bottom: 5rem;
position: relative;
}

.orb-container {
position: relative;
width: 320px;
height: 320px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 3rem;
}

.network-orb {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
opacity: 0.9;
mix-blend-mode: screen;
filter: contrast(1.2) brightness(1.1);
}

.orb-ring {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
pointer-events: none;
}

.ring-1 {
width: 400px;
height: 400px;
border-color: rgba(0, 255, 200, 0.15);
animation: pulse-ring 6s infinite ease-in-out;
}

.ring-2 {
width: 500px;
height: 500px;
border-color: rgba(59, 130, 246, 0.1);
border-left-color: transparent;
border-right-color: transparent;
animation: rotate-ring 15s infinite linear;
}

.ring-3 {
width: 600px;
height: 600px;
border: 1px dashed rgba(255, 255, 255, 0.08);
animation: rotate-ring-reverse 25s infinite linear;
}

@keyframes pulse-ring {
0%, 100% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.5; }
50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

@keyframes rotate-ring {
from { transform: translate(-50%, -50%) rotate(0deg); }
to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-ring-reverse {
from { transform: translate(-50%, -50%) rotate(360deg); }
to { transform: translate(-50%, -50%) rotate(0deg); }
}

.mesh-stats-grid {
display: flex;
gap: 2rem;
flex-wrap: wrap;
justify-content: center;
width: 100%;
}

.stat-card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.08);
backdrop-filter: blur(10px);
padding: 1.5rem 2.5rem;
border-radius: 1rem;
text-align: center;
min-width: 180px;
transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.06);
border-color: rgba(0, 255, 200, 0.3);
}

.stat-val {
font-size: 2.5rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 0.5rem;
letter-spacing: -1px;
}

.stat-txt {
font-size: 0.9rem;
color: #94a3b8;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.mesh-content-flow {
display: flex;
flex-direction: column;
gap: 2rem;
}

@media (min-width: 992px) {
.mesh-content-flow {
flex-direction: row;
align-items: center;
gap: 4rem;
}
}

.flow-block {
flex: 1;
padding: 2rem;
background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 1.5rem;
transition: all 0.4s ease;
}

.flow-block:hover {
border-color: rgba(59, 130, 246, 0.3);
box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.15);
}

.flow-icon-wrapper {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
font-size: 1.5rem;
color: #3b82f6;
border: 1px solid rgba(59, 130, 246, 0.2);
box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.flow-block:hover .flow-icon-wrapper {
background: #3b82f6;
color: #ffffff;
box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.flow-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: #f8fafc;
}

.flow-text {
color: #94a3b8;
font-size: 1rem;
line-height: 1.7;
}

.flow-divider {
width: 100%;
height: 1px;
background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
}

@media (min-width: 992px) {
.flow-divider {
width: 1px;
height: 100px;
background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
}
}

/* Block 4 */
.neo-form-section {
--primary-hue: 230;
--surface-color: #ffffff;
--bg-color: #f4f7fa;
--text-main: #1a1f2c;
--text-muted: #64748b;
--accent-color: hsl(var(--primary-hue), 90%, 60%);
--accent-glow: hsla(var(--primary-hue), 90%, 60%, 0.3);
border-top: 1px solid rgba(0,0,0,0.05);
padding: 6rem 1rem;
background: var(--bg-color);
position: relative;
overflow: hidden;
}

.neo-form-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 50%);
z-index: 0;
pointer-events: none;
}

.neo-form-wrapper {
max-width: 1100px;
margin: 0 auto;
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 4rem;
align-items: center;
}

.neo-form-info {
display: flex;
flex-direction: column;
gap: 2rem;
}

.neo-info-title {
font-size: 2.5rem;
line-height: 1.1;
font-weight: 800;
color: var(--text-main);
letter-spacing: -0.03em;
margin: 0;
}

.neo-info-desc {
font-size: 1.125rem;
line-height: 1.6;
color: var(--text-muted);
margin: 0;
}

.neo-info-features {
display: flex;
flex-direction: column;
gap: 1.25rem;
margin-top: 1rem;
}

.feature-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem;
background: rgba(255,255,255,0.5);
border-radius: 1rem;
border: 1px solid rgba(255,255,255,0.8);
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
transition: transform 0.3s ease;
}

.feature-item:hover {
transform: translateX(8px);
background: #fff;
}

.feature-icon {
width: 40px;
height: 40px;
background: var(--accent-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
box-shadow: 0 0 15px var(--accent-glow);
}

.feature-text {
font-weight: 600;
color: var(--text-main);
font-size: 0.95rem;
}

.neo-form-container {
position: relative;
background: var(--surface-color);
padding: 3rem;
border-radius: 2rem;
box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.5) inset;
overflow: hidden;
}

.decorative-shape {
position: absolute;
border-radius: 50%;
filter: blur(60px);
z-index: 0;
opacity: 0.6;
}

.shape-1 {
top: -50px;
right: -50px;
width: 200px;
height: 200px;
background: hsla(280, 80%, 70%, 0.2);
}

.shape-2 {
bottom: -50px;
left: -50px;
width: 250px;
height: 250px;
background: var(--accent-glow);
}

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

.input-group-modern {
display: flex;
flex-direction: column;
gap: 0.5rem;
position: relative;
}

.input-label {
font-size: 0.85rem;
font-weight: 600;
color: var(--text-main);
margin-left: 0.25rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.input-field-wrapper {
position: relative;
}

.input-field {
width: 100%;
padding: 1rem 1.25rem;
font-size: 1rem;
color: var(--text-main);
background: #f8fafc;
border: 2px solid transparent;
border-radius: 0.75rem;
transition: all 0.3s ease;
outline: none;
box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.input-field:focus {
background: #fff;
border-color: var(--accent-color);
box-shadow: 0 0 0 4px var(--accent-glow), 0 4px 12px rgba(0,0,0,0.05);
}

.input-highlight {
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: var(--accent-color);
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
transform: translateX(-50%);
border-radius: 2px;
}

.input-field:focus ~ .input-highlight {
width: 80%;
}

.submit-btn {
margin-top: 1rem;
padding: 1.125rem 2rem;
background: var(--text-main);
color: #fff;
border: none;
border-radius: 0.85rem;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
transition: all 0.3s ease;
box-shadow: 0 10px 20px -5px rgba(26, 31, 44, 0.3);
position: relative;
overflow: hidden;
}

.submit-btn::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
transform: translateX(-100%);
transition: transform 0.5s;
}

.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 15px 30px -5px rgba(26, 31, 44, 0.4);
}

.submit-btn:hover::before {
transform: translateX(100%);
}

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

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

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

.neo-info-title {
font-size: 2rem;
}

.neo-form-container {
padding: 2rem;
}
}
