
/* Block 1 */
.hero-section {
position: relative;
width: 100%;
min-height: 85vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
margin: 0;
padding: 0;
background-color: #050505;
}
.hero-container {
position: relative;
width: 100%;
height: 100%;
max-width: 1440px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}
.hero-background-image {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: brightness(0.7) contrast(1.1);
transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-section:hover .hero-background-image {
transform: scale(1.03);
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 20, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
z-index: 1;
pointer-events: none;
}
.hero-content-wrapper {
position: relative;
z-index: 2;
width: 100%;
max-width: 800px;
padding: 2rem;
text-align: left;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.hero-title {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
font-size: clamp(2.5rem, 5vw, 4.5rem);
font-weight: 800;
color: #ffffff;
line-height: 1.1;
margin-bottom: 1.5rem;
letter-spacing: -0.02em;
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
opacity: 0;
transform: translateY(30px);
animation: fadeUp 0.8s ease-out forwards 0.2s;
}
.hero-description {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
font-size: clamp(1rem, 1.5vw, 1.25rem);
font-weight: 400;
color: #e0e0e0;
line-height: 1.6;
margin-bottom: 2.5rem;
max-width: 600px;
opacity: 0;
transform: translateY(30px);
animation: fadeUp 0.8s ease-out forwards 0.4s;
}
.hero-action-area {
opacity: 0;
transform: translateY(30px);
animation: fadeUp 0.8s ease-out forwards 0.6s;
}
.hero-cta-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 16px 32px;
background-color: #ffffff;
color: #000000;
text-decoration: none;
font-size: 1.1rem;
font-weight: 600;
border-radius: 50px;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
border: 2px solid transparent;
}
.hero-cta-btn:hover {
background-color: transparent;
color: #ffffff;
border-color: #ffffff;
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.hero-icon {
transition: transform 0.3s ease;
}
.hero-cta-btn:hover .hero-icon {
transform: translateX(6px);
}
@keyframes fadeUp {
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 768px) {
.hero-content-wrapper {
align-items: center;
text-align: center;
padding: 1.5rem;
}
.hero-description {
max-width: 100%;
}
}

/* Block 2 */
.feature-grid-section {
    padding: 5rem 0;
    background-color: #0b0d17;
    color: #f0f0f0;
    position: relative;
    overflow: hidden
    }
.feature-grid-section::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -5%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0
    }
.feature-grid-section::after {
    content: "";
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0
    }
.feature-grid-section .container {
    position: relative;
    z-index: 1
    }
.section-header {
    text-align: center;
    margin-bottom: 4rem
    }
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -0.05rem
    }
.section-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto
    }
.feature-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px)
    }
.feature-card:hover {
    transform: translatey(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(139, 92, 246, 0.4)
    }
.card-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative
    }
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
    }
.feature-card:hover .card-img {
    transform: scale(1.08)
    }
.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column
    }
.card-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #818cf8;
    margin-bottom: 0.75rem;
    background: rgba(129, 140, 248, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    width: fit-content
    }
.card-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease
    }
.feature-card:hover .card-heading {
    color: #a5b4fc
    }
.card-text {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1
    }
.card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease
    }
.card-link:hover {
    color: #818cf8;
    transform: translatex(4px)
    }
.promo-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 3rem;
    position: relative;
    overflow: hidden
    }
.promo-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.03) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    opacity: 0.3
    }
.promo-content {
    flex: 1;
    position: relative;
    z-index: 2
    }
.promo-visual {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center
    }
.promo-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem
    }
.promo-desc {
    color: #c7d2fe;
    margin-bottom: 2rem;
    font-size: 1.05rem
    }
.promo-form .form-control {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 3rem 0 0 3rem
    }
.promo-form .form-control:focus {
    background: rgba(15, 23, 42, 0.8);
    border-color: #6366f1;
    color: #fff;
    box-shadow: none
    }
.promo-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4)
    }
.btn-subscribe {
    background: #6366f1;
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 0 2rem;
    border-radius: 0 3rem 3rem 0;
    transition: background 0.3s ease
    }
.btn-subscribe:hover {
    background: #4f46e5
    }
.promo-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3)
    }
@media (max-width: 991px) {
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem
        }
    .promo-form {
        max-width: 400px;
        margin: 0 auto
        }
    .promo-img {
        max-width: 200px
        }
    }

/* Block 3 */
.immersive-showcase {
      --neon-blue: #00f3ff;
      --neon-purple: #bc13fe;
      --glass-bg: rgba(255, 255, 255, 0.03);
      --glass-border: rgba(255, 255, 255, 0.1);
      padding: 6rem 0;
      background-color: #0b0c15;
      color: #ffffff;
      overflow: hidden;
    }

    .showcase-header-wrapper {
      max-width: 800px;
      margin: 0 auto 4rem;
      text-align: center;
    }

    .showcase-label-block {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem 1rem;
      background: rgba(0, 243, 255, 0.1);
      border: 1px solid rgba(0, 243, 255, 0.3);
      border-radius: 50px;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(5px);
    }

    .label-indicator {
      width: 8px;
      height: 8px;
      background-color: var(--neon-blue);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--neon-blue);
      animation: pulse 2s infinite;
    }

    .label-text {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--neon-blue);
      font-weight: 600;
    }

    .showcase-title {
      font-size: 3.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #fff 30%, #a5a5a5 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1rem;
      line-height: 1.1;
    }

    .showcase-description {
      font-size: 1.25rem;
      color: #a0a0b0;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
    }

    .holo-layout {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 2rem;
      max-width: 1400px;
      margin: 0 auto;
      align-items: start;
    }

    .holo-main-stage {
      position: relative;
    }

    .image-frame {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--glass-border);
      background: var(--glass-bg);
    }

    .image-frame img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
    }

    .image-frame:hover img {
      transform: scale(1.03);
    }

    .frame-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 40%);
      pointer-events: none;
    }

    .floating-tag {
      position: absolute;
      top: 2rem;
      right: 2rem;
      padding: 0.75rem 1.5rem;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      color: #fff;
    }

    .holo-sidebar {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .glass-panel {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 1.5rem;
      backdrop-filter: blur(10px);
      transition: border-color 0.3s ease, transform 0.3s ease;
    }

    .glass-panel:hover {
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-5px);
    }

    .metric-card {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .metric-icon-wrapper {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    .metric-value {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
      color: #fff;
    }

    .metric-label {
      font-size: 0.9rem;
      color: #a0a0b0;
      margin: 0;
    }

    .connectivity-diagram {
      text-align: center;
    }

    .diag-title {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #a0a0b0;
      margin-bottom: 1.5rem;
    }

    .diag-nodes {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
      margin-bottom: 1.5rem;
    }

    .node {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #333;
      border: 2px solid #555;
      z-index: 2;
    }

    .node.active {
      background: var(--neon-blue);
      border-color: var(--neon-blue);
      box-shadow: 0 0 15px var(--neon-blue);
    }

    .node.secure {
      background: var(--neon-purple);
      border-color: var(--neon-purple);
      box-shadow: 0 0 15px var(--neon-purple);
    }

    .line {
      width: 50px;
      height: 2px;
      background: #333;
    }

    .diag-legend {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      font-size: 0.8rem;
      color: #888;
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--neon-blue);
    }

    .dot.sec {
      background: var(--neon-purple);
    }

    .carousel-strip {
      margin-top: 4rem;
      position: relative;
    }

    .strip-container {
      overflow: hidden;
      width: 100%;
      mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .strip-track {
      display: flex;
      gap: 1.5rem;
      width: max-content;
      animation: scroll 30s linear infinite;
    }

    .strip-track:hover {
      animation-play-state: paused;
    }

    .strip-item {
      position: relative;
      width: 280px;
      height: 350px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--glass-border);
      flex-shrink: 0;
      cursor: pointer;
    }

    .strip-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      filter: grayscale(80%);
    }

    .strip-item:hover img {
      transform: scale(1.1);
      filter: grayscale(0%);
    }

    .item-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }

    .strip-item:hover .item-overlay {
      transform: translateY(0);
    }

    .item-overlay span {
      color: #fff;
      font-weight: 600;
      font-size: 1.1rem;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

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

    @media (max-width: 992px) {
      .holo-layout {
        grid-template-columns: 1fr;
      }
      .showcase-title {
        font-size: 2.5rem;
      }
      .strip-item {
        width: 220px;
        height: 280px;
      }
    }

/* Block 4 */
.contact-block {
padding: 80px 0;
background-color: #0b0c10;
position: relative;
overflow: hidden;
}
.contact-block::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #45a29e, #66fcf1, #45a29e);
}
.contact-wrapper {
max-width: 1140px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 60px;
}
.contact-header-box {
margin-bottom: 40px;
}
.contact-heading {
font-size: 2.5rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 12px;
letter-spacing: -1px;
}
.contact-subtext {
font-size: 1rem;
color: #c5c6c7;
line-height: 1.6;
}
.connection-list {
display: flex;
flex-direction: column;
gap: 24px;
margin-bottom: 40px;
}
.connection-item {
display: flex;
align-items: center;
gap: 20px;
padding: 20px;
background: rgba(31, 40, 51, 0.5);
border: 1px solid #1f2833;
border-radius: 12px;
transition: border-color 0.3s ease, transform 0.3s ease;
}
.connection-item:hover {
border-color: #66fcf1;
transform: translateY(-2px);
}
.item-icon-shell {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #1f2833 0%, #0b0c10 100%);
border: 1px solid #45a29e;
border-radius: 50%;
color: #66fcf1;
font-size: 1.2rem;
flex-shrink: 0;
}
.item-content {
display: flex;
flex-direction: column;
}
.item-label {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 1px;
color: #45a29e;
margin-bottom: 4px;
}
.item-value {
font-size: 1rem;
font-weight: 600;
color: #ffffff;
}
.secure-badge-wrapper {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
background: rgba(102, 252, 241, 0.05);
border-radius: 50px;
align-self: flex-start;
}
.secure-indicator {
width: 8px;
height: 8px;
background-color: #66fcf1;
border-radius: 50%;
box-shadow: 0 0 10px #66fcf1;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 1; box-shadow: 0 0 0 0 rgba(102, 252, 241, 0.7); }
70% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(102, 252, 241, 0); }
100% { opacity: 1; box-shadow: 0 0 0 0 rgba(102, 252, 241, 0); }
}
.secure-text {
font-size: 0.85rem;
color: #c5c6c7;
}
.form-panel {
background: #1f2833;
padding: 40px;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
border: 1px solid rgba(102, 252, 241, 0.1);
}
.data-input-form {
display: flex;
flex-direction: column;
gap: 24px;
}
.input-field-group {
display: flex;
flex-direction: column;
gap: 8px;
}
.input-label {
font-size: 0.9rem;
font-weight: 600;
color: #c5c6c7;
margin-left: 4px;
}
.cyber-input {
background: #0b0c10;
border: 2px solid #2b3542;
color: #ffffff;
padding: 16px;
border-radius: 8px;
font-size: 1rem;
font-family: inherit;
outline: none;
transition: all 0.3s ease;
}
.cyber-input::placeholder {
color: #5a6675;
}
.cyber-input:focus {
border-color: #66fcf1;
box-shadow: 0 0 15px rgba(102, 252, 241, 0.15);
}
.cyber-submit-btn {
background: #66fcf1;
color: #0b0c10;
border: none;
padding: 18px 32px;
border-radius: 8px;
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
transition: all 0.3s ease;
margin-top: 10px;
}
.cyber-submit-btn:hover {
background: #45a29e;
color: #ffffff;
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(102, 252, 241, 0.2);
}
.btn-icon {
transition: transform 0.3s ease;
}
.cyber-submit-btn:hover .btn-icon {
transform: translateX(4px);
}
@media (max-width: 992px) {
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}
.contact-heading {
font-size: 2rem;
}
.form-panel {
padding: 30px;
}
}
