* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-cyan: #00d4ff;
    --deep-purple: #1a0b2e;
    --electric-blue: #0f3460;
    --plasma-pink: #e94560;
    --quantum-white: #f5f7fa;
    --shadow-black: #16213e;
    --hologram-gray: #0f4c75;
    --void-dark: #0a0e1a;
}

body {
    font-family: 'Exo 2', sans-serif;
    line-height: 1.7;
    color: var(--quantum-white);
    background: linear-gradient(135deg, var(--void-dark) 0%, var(--deep-purple) 47%, var(--electric-blue) 100%);
    font-weight: 400;
    font-size: 1.1rem;
    overflow-x: hidden;
}

.ContentWrapper {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 23px;
}

.MainNavigation {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(11px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.NavigationBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.BrandIdentity {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.LogoImage {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.MenuToggleInput {
    display: none;
}

.MenuToggleButton {
    display: none;
    cursor: pointer;
    padding: 13px;
    z-index: 2;
}

.HamburgerIcon {
    width: 28px;
    height: 3px;
    background: var(--neon-cyan);
    position: relative;
    transition: all 0.35s ease;
}

.HamburgerIcon:before,
.HamburgerIcon:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--neon-cyan);
    transition: all 0.35s ease;
}

.HamburgerIcon:before {
    top: -9px;
}

.HamburgerIcon:after {
    top: 9px;
}

.NavigationWrapper {
    display: flex;
    align-items: center;
}

.NavigationList {
    display: flex;
    gap: 34px;
    list-style: none;
}

.NavigationItem {
    position: relative;
}

.NavigationLink {
    color: var(--quantum-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

.NavigationLink:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.NavigationLink::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--plasma-pink));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.NavigationLink:hover::after {
    width: 100%;
}

@media screen and (max-width: 890px) {
    .MenuToggleButton {
        display: block;
    }

    .NavigationWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 14, 26, 0.98);
        transition: all 0.4s ease;
        padding-top: 89px;
        backdrop-filter: blur(13px);
    }

    .NavigationList {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .NavigationItem {
        width: 100%;
        text-align: center;
    }

    .NavigationLink {
        display: block;
        padding: 13px 28px;
        font-size: 19px;
        border-radius: 8px;
        background: rgba(0, 212, 255, 0.05);
        margin: 0 34px;
    }

    .MenuToggleInput:checked ~ .NavigationWrapper {
        left: 0;
    }

    .MenuToggleInput:checked ~ .MenuToggleButton .HamburgerIcon {
        background: transparent;
    }

    .MenuToggleInput:checked ~ .MenuToggleButton .HamburgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .MenuToggleInput:checked ~ .MenuToggleButton .HamburgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

.NeonWelcomeGate {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(127deg, var(--void-dark) 0%, var(--deep-purple) 34%, var(--electric-blue) 67%, var(--hologram-gray) 100%);
    overflow: hidden;
}

@keyframes GlowPulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.GateContainer {
    position: relative;
    z-index: 2;
    width: 100%;
}

.WelcomeMatrix {
    padding: 134px 0 89px;
}

.VirtualPresentation {
    max-width: 678px;
    margin-left: 15%;
}

.GateTitle {
    font-family: 'Orbitron', monospace;
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--quantum-white);
    margin-bottom: 28px;
    text-shadow:
            0 0 13px rgba(0, 212, 255, 0.5),
            0 0 21px rgba(0, 212, 255, 0.3),
            0 0 34px rgba(0, 212, 255, 0.2);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.GateDescription {
    font-size: 1.25rem;
    color: rgba(245, 247, 250, 0.85);
    margin-bottom: 42px;
    line-height: 1.6;
    font-weight: 300;
}

.PortalButton {
    display: inline-block;
    padding: 16px 38px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--plasma-pink) 100%);
    color: var(--quantum-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
            0 8px 28px rgba(0, 212, 255, 0.3),
            0 4px 13px rgba(233, 69, 96, 0.2);
    position: relative;
    overflow: hidden;
}

.PortalButton:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
            0 13px 34px rgba(0, 212, 255, 0.4),
            0 8px 21px rgba(233, 69, 96, 0.3);
}

@media (max-width: 640px) {
    .GateTitle {
        font-size: 2.5rem;
    }

    .GateDescription {
        font-size: 1.1rem;
    }

    .WelcomeMatrix {
        padding: 89px 0 55px;
    }
}

.CabinetMuseum {
    padding: 97px 0;
    background: rgba(10, 14, 26, 0.95);
    position: relative;
}

.MuseumHeader {
    text-align: center;
    margin-bottom: 76px;
    position: relative;
    z-index: 2;
}

.ExhibitionTitle {
    font-family: 'Orbitron', monospace;
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--quantum-white);
    margin-bottom: 21px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--plasma-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ExhibitionSubtitle {
    font-size: 1.2rem;
    color: rgba(245, 247, 250, 0.7);
    max-width: 612px;
    margin: 0 auto;
    line-height: 1.5;
}

.VirtualShowcase {
    position: relative;
    z-index: 2;
}

.ShowcaseGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 21px;
    align-items: start;
}

.ExperienceCard {
    background: rgba(15, 52, 96, 0.15);
    border-radius: 13px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(8px);
    position: relative;
    height: 100%;
}

.ExperienceCard:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
            0 21px 55px rgba(0, 212, 255, 0.2),
            0 13px 34px rgba(233, 69, 96, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
}

.PrimaryExperience {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.SecondaryExperience {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.CompactExperience:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.CompactExperience:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.CompactExperience:nth-child(5) {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    gap: 21px;
}

.CompactExperience:nth-child(5) .CardImageContainer {
    height: 100%;
    min-height: 200px;
}

.CompactExperience:nth-child(5) .ExperienceImage {
    height: 100%;
    min-height: 200px;
    object-fit: cover;
}

.CardImageContainer {
    position: relative;
    overflow: hidden;
}

.ExperienceImage {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.CompactExperience .ExperienceImage {
    height: 200px;
}

.ExperienceCard:hover .ExperienceImage {
    transform: scale(1.08);
}

.ExperienceOverlay {
    position: absolute;
    top: 13px;
    left: 13px;
    background: rgba(0, 212, 255, 0.9);
    color: var(--void-dark);
    padding: 6px 13px;
    border-radius: 21px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.ExperienceDetails {
    padding: 23px;
    position: relative;
    z-index: 2;
}

.ExperienceTitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--quantum-white);
    margin-bottom: 13px;
    line-height: 1.3;
}

.CompactExperience .ExperienceTitle {
    font-size: 1.1rem;
}

.ExperienceDescription {
    font-size: 0.95rem;
    color: rgba(245, 247, 250, 0.8);
    line-height: 1.5;
    margin-bottom: 18px;
}

.CompactExperience .ExperienceDescription {
    font-size: 0.9rem;
    margin-bottom: 13px;
}

.SteamPortalLink {
    display: inline-block;
    padding: 11px 21px;
    background: linear-gradient(135deg, var(--plasma-pink) 0%, var(--neon-cyan) 100%);
    color: var(--quantum-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.SteamPortalLink:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 21px rgba(233, 69, 96, 0.4);
}

@media (max-width: 1280px) {
    .ShowcaseGrid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .PrimaryExperience {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .SecondaryExperience {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .CompactExperience:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .CompactExperience:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .CompactExperience:nth-child(5) {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        grid-template-columns: 250px 1fr;
    }
}

@media (max-width: 890px) {
    .ShowcaseGrid {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .ExperienceCard {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
        display: block;
    }

    .CompactExperience:nth-child(5) {
        display: block;
    }

    .ExhibitionTitle {
        font-size: 2.1rem;
    }
}

.VirtualInsights {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--deep-purple) 100%);
    position: relative;
}

.InsightGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.InsightContent {
    padding-right: 34px;
}

.InsightHeading {
    font-family: 'Orbitron', monospace;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--quantum-white);
    margin-bottom: 23px;
    line-height: 1.2;
}

.InsightDescription {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(245, 247, 250, 0.9);
    margin-bottom: 21px;
    font-weight: 500;
}

.InsightText {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(245, 247, 250, 0.8);
    margin-bottom: 17px;
}

.InsightButton {
    display: inline-block;
    margin-top: 26px;
    padding: 14px 32px;
    background: transparent;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.InsightButton:hover {
    background: var(--neon-cyan);
    color: var(--void-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 21px rgba(0, 212, 255, 0.3);
}

.InsightVisual {
    text-align: center;
}

.InsightImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow:
            0 21px 55px rgba(0, 0, 0, 0.3),
            0 13px 34px rgba(0, 212, 255, 0.1);
}

@media (max-width: 890px) {
    .InsightGrid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .InsightContent {
        padding-right: 0;
        text-align: center;
        order: 2;
    }

    .InsightVisual {
        order: 1;
    }

    .InsightHeading {
        font-size: 1.9rem;
    }
}

.SiteFooter {
    background: var(--void-dark);
    position: relative;
    overflow: hidden;
}

.SiteFooter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            linear-gradient(45deg, rgba(0, 212, 255, 0.02) 0%, transparent 55%),
            linear-gradient(-45deg, rgba(233, 69, 96, 0.02) 0%, transparent 55%);
}

.FooterMatrix {
    padding: 89px 0 34px;
    position: relative;
    z-index: 2;
}

.FooterGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 42px;
}

.FooterSection {
    position: relative;
}

.FooterBrand {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.FooterLogo {
    height: 104px;
    width: auto;
    margin-right: 13px;
    filter: brightness(0) invert(1);
}

.FooterTitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--quantum-white);
    margin: 0;
}

.FooterDescription {
    color: rgba(245, 247, 250, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 23px;
}

.ContactDetails {
    margin-top: 21px;
}

.ContactItem {
    color: rgba(245, 247, 250, 0.8);
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.FooterSectionTitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--quantum-white);
    margin-bottom: 21px;
    font-family: 'Orbitron', monospace;
}

.FooterLinkList {
    list-style: none;
}

.FooterLinkList li {
    margin-bottom: 13px;
}

.FooterLink {
    color: rgba(245, 247, 250, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.FooterLink:hover {
    color: var(--neon-cyan);
    padding-left: 8px;
}

.NewsletterText {
    font-size: 0.95rem;
    color: rgba(245, 247, 250, 0.7);
    line-height: 1.5;
    margin-bottom: 18px;
}

.NewsletterForm {
    position: relative;
    margin-bottom: 21px;
}

.NewsletterInput {
    width: 100%;
    height: 47px;
    background: rgba(15, 52, 96, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 0 21px;
    font-size: 0.95rem;
    color: var(--quantum-white);
    transition: all 0.3s ease;
}

.NewsletterInput::placeholder {
    color: rgba(245, 247, 250, 0.5);
}

.NewsletterInput:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 13px rgba(0, 212, 255, 0.3);
}

.NewsletterSubmit {
    position: absolute;
    top: 3px;
    right: 3px;
    height: 41px;
    border: none;
    background: linear-gradient(135deg, var(--plasma-pink) 0%, var(--neon-cyan) 100%);
    color: var(--quantum-white);
    padding: 0 21px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.NewsletterSubmit:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 13px rgba(233, 69, 96, 0.4);
}

.FooterBottom {
    padding-bottom: 28px;
    position: relative;
    z-index: 2;
}

.CopyrightBorder {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    margin-bottom: 21px;
}

.CopyrightText {
    font-size: 0.9rem;
    color: rgba(245, 247, 250, 0.6);
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1280px) {
    .FooterGrid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .CompanyInfo {
        grid-column: 1 / 3;
    }
}

@media (max-width: 640px) {
    .FooterGrid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .CompanyInfo {
        grid-column: 1;
        text-align: center;
    }

    .FooterMatrix {
        padding: 55px 0 21px;
    }
}

/* About Page Styles */
.TechnologyEvolutionMap {
    padding: 134px 0 89px;
    background: linear-gradient(135deg, var(--void-dark) 0%, var(--deep-purple) 100%);
    position: relative;
}

.TechnologyEvolutionMap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 23% 67%, rgba(0, 212, 255, 0.08) 0%, transparent 55%),
            radial-gradient(circle at 78% 23%, rgba(233, 69, 96, 0.06) 0%, transparent 55%);
}

.EvolutionHeader {
    text-align: center;
    margin-bottom: 76px;
    position: relative;
    z-index: 2;
}

.EvolutionTitle {
    font-family: 'Orbitron', monospace;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--quantum-white);
    margin-bottom: 21px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--plasma-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.EvolutionSubtitle {
    font-size: 1.2rem;
    color: rgba(245, 247, 250, 0.7);
    max-width: 678px;
    margin: 0 auto;
    line-height: 1.5;
}

.TimelineGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
    position: relative;
    z-index: 2;
}

.EvolutionPhase {
    text-align: center;
    padding: 34px 23px;
    background: rgba(15, 52, 96, 0.15);
    border-radius: 13px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.EvolutionPhase:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 21px 55px rgba(0, 212, 255, 0.2);
}

.PhaseIcon {
    width: 67px;
    height: 67px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--plasma-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--quantum-white);
    margin: 0 auto 21px;
}

.PhaseTitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--quantum-white);
    margin-bottom: 13px;
}

.PhaseDescription {
    color: rgba(245, 247, 250, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.NostalgiaMemoryBank {
    padding: 89px 0;
    background: rgba(10, 14, 26, 0.95);
    position: relative;
}

.MemoryGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.MemoryHeading {
    font-family: 'Orbitron', monospace;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--quantum-white);
    margin-bottom: 23px;
    line-height: 1.2;
}

.MemoryDescription {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(245, 247, 250, 0.9);
    margin-bottom: 21px;
    font-weight: 500;
}

.MemoryText {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(245, 247, 250, 0.8);
    margin-bottom: 17px;
}

.MemoryImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.3);
}

.VintageHardwareShowcase {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--hologram-gray) 100%);
    position: relative;
}

.ShowcaseHeader {
    text-align: center;
    margin-bottom: 67px;
}

.ShowcaseTitle {
    font-family: 'Orbitron', monospace;
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--quantum-white);
    margin-bottom: 21px;
}

.ShowcaseSubtitle {
    font-size: 1.2rem;
    color: rgba(245, 247, 250, 0.7);
    max-width: 612px;
    margin: 0 auto;
}

.HardwareGallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.HardwareItem {
    background: rgba(15, 52, 96, 0.15);
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.HardwareItem:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 13px 34px rgba(0, 212, 255, 0.2);
}

.HardwareImage {
    width: 100%;
    height: 213px;
    object-fit: cover;
}

.HardwareInfo {
    padding: 23px;
}

.HardwareName {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--quantum-white);
    margin-bottom: 13px;
}

.HardwareDescription {
    color: rgba(245, 247, 250, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.CulturalImpactMatrix {
    padding: 89px 0;
    background: var(--void-dark);
    position: relative;
}

.ImpactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.ImpactHeading {
    font-family: 'Orbitron', monospace;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--quantum-white);
    margin-bottom: 23px;
    line-height: 1.2;
}

.ImpactDescription {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(245, 247, 250, 0.9);
    margin-bottom: 21px;
    font-weight: 500;
}

.ImpactText {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(245, 247, 250, 0.8);
    margin-bottom: 17px;
}

.ImpactImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.3);
}

.ContactFormSection {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--electric-blue) 100%);
    position: relative;
}

.FormContainer {
    max-width: 789px;
    margin: 0 auto;
}

.FormHeader {
    text-align: center;
    margin-bottom: 55px;
}

.FormTitle {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--quantum-white);
    margin-bottom: 21px;
}

.FormSubtitle {
    font-size: 1.1rem;
    color: rgba(245, 247, 250, 0.8);
    line-height: 1.6;
}

.ContactForm {
    background: rgba(15, 52, 96, 0.15);
    padding: 42px;
    border-radius: 13px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(8px);
}

.FormGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
    margin-bottom: 34px;
}

.InputGroup.FullWidth {
    grid-column: 1 / -1;
}

.InputLabel {
    display: block;
    margin-bottom: 8px;
    color: var(--quantum-white);
    font-weight: 500;
    font-size: 0.95rem;
}

.FormInput,
.FormTextarea {
    width: 100%;
    padding: 13px 18px;
    background: rgba(10, 14, 26, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: var(--quantum-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.FormInput:focus,
.FormTextarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 13px rgba(0, 212, 255, 0.3);
}

.FormTextarea {
    resize: vertical;
    min-height: 123px;
}

.SubmitButton {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--plasma-pink) 100%);
    color: var(--quantum-white);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.SubmitButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 21px rgba(0, 212, 255, 0.4);
}

.ThankYouHero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 134px 0 89px;
    background: linear-gradient(135deg, var(--void-dark) 0%, var(--deep-purple) 100%);
    position: relative;
}

.ThankYouHero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.12) 0%, transparent 67%),
            radial-gradient(circle at 23% 78%, rgba(233, 69, 96, 0.08) 0%, transparent 55%);
}

.SuccessContainer {
    text-align: center;
    position: relative;
    z-index: 2;
}

.SuccessIcon {
    margin-bottom: 34px;
}

.CheckmarkCircle {
    width: 89px;
    height: 89px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--plasma-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: SuccessPulse 2s ease-in-out infinite;
}

@keyframes SuccessPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 21px rgba(0, 212, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 34px rgba(0, 212, 255, 0.6); }
}

.CheckmarkAnimation {
    font-size: 2.3rem;
    color: var(--quantum-white);
    font-weight: 700;
}

.ThankYouTitle {
    font-family: 'Orbitron', monospace;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--quantum-white);
    margin-bottom: 23px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--plasma-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ThankYouDescription {
    font-size: 1.2rem;
    color: rgba(245, 247, 250, 0.8);
    max-width: 689px;
    margin: 0 auto 42px;
    line-height: 1.6;
}

.ActionButtons {
    display: flex;
    gap: 23px;
    justify-content: center;
    flex-wrap: wrap;
}

.PrimaryAction,
.SecondaryAction {
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: all 0.4s ease;
    display: inline-block;
}

.PrimaryAction {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--plasma-pink) 100%);
    color: var(--quantum-white);
}

.PrimaryAction:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 21px rgba(0, 212, 255, 0.4);
}

.SecondaryAction {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}

.SecondaryAction:hover {
    background: var(--neon-cyan);
    color: var(--void-dark);
    transform: translateY(-3px);
}

.NextStepsGuide {
    padding: 89px 0;
    background: rgba(10, 14, 26, 0.95);
}

.GuideHeader {
    text-align: center;
    margin-bottom: 67px;
}

.GuideTitle {
    font-family: 'Orbitron', monospace;
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--quantum-white);
    margin-bottom: 21px;
}

.GuideSubtitle {
    font-size: 1.2rem;
    color: rgba(245, 247, 250, 0.7);
    max-width: 612px;
    margin: 0 auto;
}

.StepsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.StepCard {
    background: rgba(15, 52, 96, 0.15);
    padding: 34px 23px;
    border-radius: 13px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(8px);
    text-align: center;
    transition: all 0.4s ease;
}

.StepCard:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 13px 34px rgba(0, 212, 255, 0.2);
}

.StepNumber {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--plasma-pink) 0%, var(--neon-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--quantum-white);
    margin: 0 auto 18px;
}

.StepTitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--quantum-white);
    margin-bottom: 13px;
}

.StepDescription {
    color: rgba(245, 247, 250, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.ExploreSuggestions {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--deep-purple) 100%);
}

.SuggestionsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.SuggestionHeading {
    font-family: 'Orbitron', monospace;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--quantum-white);
    margin-bottom: 23px;
    line-height: 1.2;
}

.SuggestionDescription {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(245, 247, 250, 0.9);
    margin-bottom: 21px;
    font-weight: 500;
}

.SuggestionText {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(245, 247, 250, 0.8);
    margin-bottom: 17px;
}

.ExploreButton {
    display: inline-block;
    margin-top: 26px;
    padding: 14px 32px;
    background: transparent;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.ExploreButton:hover {
    background: var(--neon-cyan);
    color: var(--void-dark);
    transform: translateY(-3px);
}

.SuggestionImage {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1280px) {
    .TimelineGrid,
    .HardwareGallery,
    .StepsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .MemoryGrid,
    .ImpactGrid,
    .SuggestionsGrid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .FormGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 890px) {
    .TimelineGrid,
    .HardwareGallery,
    .StepsGrid {
        grid-template-columns: 1fr;
    }

    .EvolutionTitle,
    .ThankYouTitle {
        font-size: 2.3rem;
    }

    .ActionButtons {
        flex-direction: column;
        align-items: center;
    }

    .PrimaryAction,
    .SecondaryAction {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

.SimplePage {
    padding: 134px 0 89px;
    background: var(--void-dark);
    min-height: 100vh;
}

.PageContent {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.PageTitle {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--quantum-white);
    margin-bottom: 42px;
    text-align: center;
}

.SectionTitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--quantum-white);
    margin: 34px 0 18px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 8px;
}

.SubsectionTitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--neon-cyan);
    margin: 23px 0 13px 0;
}

.PageText {
    color: rgba(245, 247, 250, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 18px;
}

@media (max-width: 890px) {
    .PageTitle {
        font-size: 2rem;
    }
    
    .SectionTitle {
        font-size: 1.3rem;
    }
    
    .SimplePage {
        padding: 89px 0 55px;
    }
}